diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..97c46e781e413e4fe0a9928c6e2504b8c5a33bd3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +App\MauiApp1\.vs diff --git a/App/MauiApp1/App.xaml b/App/MauiApp1/App.xaml new file mode 100644 index 0000000000000000000000000000000000000000..8fb5f38c687051aacbbf7b6eb8577e7ac5d1e59c --- /dev/null +++ b/App/MauiApp1/App.xaml @@ -0,0 +1,14 @@ +<?xml version = "1.0" encoding = "UTF-8" ?> +<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" + xmlns:local="clr-namespace:MauiApp1" + x:Class="MauiApp1.App"> + <Application.Resources> + <ResourceDictionary> + <ResourceDictionary.MergedDictionaries> + <ResourceDictionary Source="Resources/Styles/Colors.xaml" /> + <ResourceDictionary Source="Resources/Styles/Styles.xaml" /> + </ResourceDictionary.MergedDictionaries> + </ResourceDictionary> + </Application.Resources> +</Application> diff --git a/App/MauiApp1/App.xaml.cs b/App/MauiApp1/App.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..c0bb69d214cf5ca0d25e10f4da5d27554d614496 --- /dev/null +++ b/App/MauiApp1/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MauiApp1 +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/App/MauiApp1/AppShell.xaml b/App/MauiApp1/AppShell.xaml new file mode 100644 index 0000000000000000000000000000000000000000..5dd865e428bf7af417ec37600d9b507e27f7b083 --- /dev/null +++ b/App/MauiApp1/AppShell.xaml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<Shell + x:Class="MauiApp1.AppShell" + xmlns="http://schemas.microsoft.com/dotnet/2021/maui" + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" + xmlns:local="clr-namespace:MauiApp1" + Shell.FlyoutBehavior="Disabled" + Title="MauiApp1"> + + <ShellContent + Title="Home" + ContentTemplate="{DataTemplate local:MainPage}" + Route="MainPage" /> + +</Shell> diff --git a/App/MauiApp1/AppShell.xaml.cs b/App/MauiApp1/AppShell.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..0f7e0cfdda4ea9124479ae2ffa453afe2f88adfb --- /dev/null +++ b/App/MauiApp1/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MauiApp1 +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/App/MauiApp1/MainPage.xaml b/App/MauiApp1/MainPage.xaml new file mode 100644 index 0000000000000000000000000000000000000000..4ff41e1537bb0e950dd1ad9c06c6543a64d7c4ae --- /dev/null +++ b/App/MauiApp1/MainPage.xaml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8" ?> +<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" + x:Class="MauiApp1.MainPage"> + + <ScrollView> + <VerticalStackLayout + Padding="30,0" + Spacing="25"> + <Image + Source="dotnet_bot.png" + HeightRequest="185" + Aspect="AspectFit" + SemanticProperties.Description="dot net bot in a race car number eight" /> + + <Label + Text="Hello, World!" + Style="{StaticResource Headline}" + SemanticProperties.HeadingLevel="Level1" /> + + <Label + Text="Welcome to .NET Multi-platform App UI" + Style="{StaticResource SubHeadline}" + SemanticProperties.HeadingLevel="Level2" + SemanticProperties.Description="Welcome to dot net Multi platform App U I" /> + + <Button + x:Name="CounterBtn" + Text="Click me" + SemanticProperties.Hint="Counts the number of times you click" + Clicked="OnCounterClicked" + HorizontalOptions="Fill" /> + </VerticalStackLayout> + </ScrollView> + +</ContentPage> diff --git a/App/MauiApp1/MainPage.xaml.cs b/App/MauiApp1/MainPage.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..644aaf24d6cb43834892fd3fd3346f5195308885 --- /dev/null +++ b/App/MauiApp1/MainPage.xaml.cs @@ -0,0 +1,25 @@ +namespace MauiApp1 +{ + public partial class MainPage : ContentPage + { + int count = 0; + + public MainPage() + { + InitializeComponent(); + } + + private void OnCounterClicked(object sender, EventArgs e) + { + count++; + + if (count == 1) + CounterBtn.Text = $"Clicked {count} time"; + else + CounterBtn.Text = $"Clicked {count} times"; + + SemanticScreenReader.Announce(CounterBtn.Text); + } + } + +} diff --git a/App/MauiApp1/MauiApp1.csproj b/App/MauiApp1/MauiApp1.csproj new file mode 100644 index 0000000000000000000000000000000000000000..bace5918fe8206bd981b572c89057594dcbb20ac --- /dev/null +++ b/App/MauiApp1/MauiApp1.csproj @@ -0,0 +1,65 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> + <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> + <!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> --> + + <!-- Note for MacCatalyst: + The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64. + When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>. + The Mac App Store will NOT accept apps with ONLY maccatalyst-arm64 indicated; + either BOTH runtimes must be indicated or ONLY macatalyst-x64. --> + <!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> --> + + <OutputType>Exe</OutputType> + <RootNamespace>MauiApp1</RootNamespace> + <UseMaui>true</UseMaui> + <SingleProject>true</SingleProject> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + + <!-- Display name --> + <ApplicationTitle>MauiApp1</ApplicationTitle> + + <!-- App Identifier --> + <ApplicationId>com.companyname.mauiapp1</ApplicationId> + + <!-- Versions --> + <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> + <ApplicationVersion>1</ApplicationVersion> + + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> + <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> + </PropertyGroup> + + <ItemGroup> + <!-- App Icon --> + <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> + + <!-- Splash Screen --> + <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> + + <!-- Images --> + <MauiImage Include="Resources\Images\*" /> + <MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="300,185" /> + + <!-- Custom Fonts --> + <MauiFont Include="Resources\Fonts\*" /> + + <!-- Raw Assets (also remove the "Resources\Raw" prefix) --> + <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> + </ItemGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> + <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" /> + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> + </ItemGroup> + +</Project> diff --git a/App/MauiApp1/MauiApp1.csproj.user b/App/MauiApp1/MauiApp1.csproj.user new file mode 100644 index 0000000000000000000000000000000000000000..891593c40fbabc2c3ac75f076c8a68f92d52c74e --- /dev/null +++ b/App/MauiApp1/MauiApp1.csproj.user @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen> + <ActiveDebugFramework>net8.0-windows10.0.19041.0</ActiveDebugFramework> + <ActiveDebugProfile>Windows Machine</ActiveDebugProfile> + </PropertyGroup> + <ItemGroup> + <None Update="App.xaml"> + <SubType>Designer</SubType> + </None> + <None Update="AppShell.xaml"> + <SubType>Designer</SubType> + </None> + <None Update="MainPage.xaml"> + <SubType>Designer</SubType> + </None> + <None Update="Platforms\Windows\App.xaml"> + <SubType>Designer</SubType> + </None> + <None Update="Platforms\Windows\Package.appxmanifest"> + <SubType>Designer</SubType> + </None> + <None Update="Resources\Styles\Colors.xaml"> + <SubType>Designer</SubType> + </None> + <None Update="Resources\Styles\Styles.xaml"> + <SubType>Designer</SubType> + </None> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/App/MauiApp1/MauiApp1.sln b/App/MauiApp1/MauiApp1.sln new file mode 100644 index 0000000000000000000000000000000000000000..efbfd7556c44b0e6db06d2d06997a9b357575b54 --- /dev/null +++ b/App/MauiApp1/MauiApp1.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MauiApp1", "MauiApp1.csproj", "{07394ED7-7E6F-4E79-916F-1F729CE93F9C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Release|Any CPU.Build.0 = Release|Any CPU + {07394ED7-7E6F-4E79-916F-1F729CE93F9C}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {281030E4-87E1-4DB7-965E-3482BE607DAE} + EndGlobalSection +EndGlobal diff --git a/App/MauiApp1/MauiProgram.cs b/App/MauiApp1/MauiProgram.cs new file mode 100644 index 0000000000000000000000000000000000000000..1c5db5a5db0a5b20f2ad4737b4ddbdd98c346e73 --- /dev/null +++ b/App/MauiApp1/MauiProgram.cs @@ -0,0 +1,25 @@ +using Microsoft.Extensions.Logging; + +namespace MauiApp1 +{ + public static class MauiProgram + { + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder + .UseMauiApp<App>() + .ConfigureFonts(fonts => + { + fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); + fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); + }); + +#if DEBUG + builder.Logging.AddDebug(); +#endif + + return builder.Build(); + } + } +} diff --git a/App/MauiApp1/Platforms/Android/AndroidManifest.xml b/App/MauiApp1/Platforms/Android/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9937ad77d515322ba687ee6b7508b5d191cd959 --- /dev/null +++ b/App/MauiApp1/Platforms/Android/AndroidManifest.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> + <application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true"></application> + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> + <uses-permission android:name="android.permission.INTERNET" /> +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/Platforms/Android/MainActivity.cs b/App/MauiApp1/Platforms/Android/MainActivity.cs new file mode 100644 index 0000000000000000000000000000000000000000..9f289be0b3c678037887bd960afdf718a6b58dbc --- /dev/null +++ b/App/MauiApp1/Platforms/Android/MainActivity.cs @@ -0,0 +1,11 @@ +using Android.App; +using Android.Content.PM; +using Android.OS; + +namespace MauiApp1 +{ + [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] + public class MainActivity : MauiAppCompatActivity + { + } +} diff --git a/App/MauiApp1/Platforms/Android/MainApplication.cs b/App/MauiApp1/Platforms/Android/MainApplication.cs new file mode 100644 index 0000000000000000000000000000000000000000..8547160bad1a6a6fd16af359b7178aec9ad85a5f --- /dev/null +++ b/App/MauiApp1/Platforms/Android/MainApplication.cs @@ -0,0 +1,16 @@ +using Android.App; +using Android.Runtime; + +namespace MauiApp1 +{ + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/App/MauiApp1/Platforms/Android/Resources/values/colors.xml b/App/MauiApp1/Platforms/Android/Resources/values/colors.xml new file mode 100644 index 0000000000000000000000000000000000000000..c04d7492abf86f02e1b299625efd6f344af01e88 --- /dev/null +++ b/App/MauiApp1/Platforms/Android/Resources/values/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="colorPrimary">#512BD4</color> + <color name="colorPrimaryDark">#2B0B98</color> + <color name="colorAccent">#2B0B98</color> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/Platforms/MacCatalyst/AppDelegate.cs b/App/MauiApp1/Platforms/MacCatalyst/AppDelegate.cs new file mode 100644 index 0000000000000000000000000000000000000000..9f49fadd097669df387734371f3a38b09d257d7a --- /dev/null +++ b/App/MauiApp1/Platforms/MacCatalyst/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace MauiApp1 +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/App/MauiApp1/Platforms/MacCatalyst/Entitlements.plist b/App/MauiApp1/Platforms/MacCatalyst/Entitlements.plist new file mode 100644 index 0000000000000000000000000000000000000000..de4adc94a9c9ed733679f565e2a4f1ab47c32555 --- /dev/null +++ b/App/MauiApp1/Platforms/MacCatalyst/Entitlements.plist @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> + <!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.--> + <dict> + <!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. --> + <key>com.apple.security.app-sandbox</key> + <true/> + <!-- When App Sandbox is enabled, this value is required to open outgoing network connections. --> + <key>com.apple.security.network.client</key> + <true/> + </dict> +</plist> + diff --git a/App/MauiApp1/Platforms/MacCatalyst/Info.plist b/App/MauiApp1/Platforms/MacCatalyst/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..72689771518af8ec02f4ade026db1016cf964e3c --- /dev/null +++ b/App/MauiApp1/Platforms/MacCatalyst/Info.plist @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <!-- The Mac App Store requires you specify if the app uses encryption. --> + <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption --> + <!-- <key>ITSAppUsesNonExemptEncryption</key> --> + <!-- Please indicate <true/> or <false/> here. --> + + <!-- Specify the category for your app here. --> + <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype --> + <!-- <key>LSApplicationCategoryType</key> --> + <!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> --> + <key>UIDeviceFamily</key> + <array> + <integer>2</integer> + </array> + <key>UIRequiredDeviceCapabilities</key> + <array> + <string>arm64</string> + </array> + <key>UISupportedInterfaceOrientations</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>UISupportedInterfaceOrientations~ipad</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationPortraitUpsideDown</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>XSAppIconAssets</key> + <string>Assets.xcassets/appicon.appiconset</string> +</dict> +</plist> diff --git a/App/MauiApp1/Platforms/MacCatalyst/Program.cs b/App/MauiApp1/Platforms/MacCatalyst/Program.cs new file mode 100644 index 0000000000000000000000000000000000000000..c13a69b78b47a3b08b66a658de2f40f1bfcef5ec --- /dev/null +++ b/App/MauiApp1/Platforms/MacCatalyst/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace MauiApp1 +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} diff --git a/App/MauiApp1/Platforms/Tizen/Main.cs b/App/MauiApp1/Platforms/Tizen/Main.cs new file mode 100644 index 0000000000000000000000000000000000000000..bf38d3bece86557cbb628402e1079c8bcdff7dce --- /dev/null +++ b/App/MauiApp1/Platforms/Tizen/Main.cs @@ -0,0 +1,17 @@ +using Microsoft.Maui; +using Microsoft.Maui.Hosting; +using System; + +namespace MauiApp1 +{ + internal class Program : MauiApplication + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/App/MauiApp1/Platforms/Tizen/tizen-manifest.xml b/App/MauiApp1/Platforms/Tizen/tizen-manifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..16035f2e504d60d35dfc09e16598bc79f84ac71d --- /dev/null +++ b/App/MauiApp1/Platforms/Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="8" xmlns="http://tizen.org/ns/packages"> + <profile name="common" /> + <ui-application appid="maui-application-id-placeholder" exec="MauiApp1.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single"> + <label>maui-application-title-placeholder</label> + <icon>maui-appicon-placeholder</icon> + <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" /> + </ui-application> + <shortcut-list /> + <privileges> + <privilege>http://tizen.org/privilege/internet</privilege> + </privileges> + <dependencies /> + <provides-appdefined-privileges /> +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/Platforms/Windows/App.xaml b/App/MauiApp1/Platforms/Windows/App.xaml new file mode 100644 index 0000000000000000000000000000000000000000..4cf22441af14ccebdc888f7e1352480c2421336d --- /dev/null +++ b/App/MauiApp1/Platforms/Windows/App.xaml @@ -0,0 +1,8 @@ +<maui:MauiWinUIApplication + x:Class="MauiApp1.WinUI.App" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:maui="using:Microsoft.Maui" + xmlns:local="using:MauiApp1.WinUI"> + +</maui:MauiWinUIApplication> diff --git a/App/MauiApp1/Platforms/Windows/App.xaml.cs b/App/MauiApp1/Platforms/Windows/App.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..16ead9ba4c238e5b29f711068d2642cef5bc4d9f --- /dev/null +++ b/App/MauiApp1/Platforms/Windows/App.xaml.cs @@ -0,0 +1,25 @@ +using Microsoft.UI.Xaml; + +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace MauiApp1.WinUI +{ + /// <summary> + /// Provides application-specific behavior to supplement the default Application class. + /// </summary> + public partial class App : MauiWinUIApplication + { + /// <summary> + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// </summary> + public App() + { + this.InitializeComponent(); + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } + +} diff --git a/App/MauiApp1/Platforms/Windows/Package.appxmanifest b/App/MauiApp1/Platforms/Windows/Package.appxmanifest new file mode 100644 index 0000000000000000000000000000000000000000..f8f54e81fbef27d872713c8c2dcfacef882b03d6 --- /dev/null +++ b/App/MauiApp1/Platforms/Windows/Package.appxmanifest @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<Package + xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" + xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" + xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" + xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" + IgnorableNamespaces="uap rescap"> + + <Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" /> + + <mp:PhoneIdentity PhoneProductId="7A546F83-5F6A-4C27-8A30-C3E3AD3E4BC1" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> + + <Properties> + <DisplayName>$placeholder$</DisplayName> + <PublisherDisplayName>User Name</PublisherDisplayName> + <Logo>$placeholder$.png</Logo> + </Properties> + + <Dependencies> + <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> + <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> + </Dependencies> + + <Resources> + <Resource Language="x-generate" /> + </Resources> + + <Applications> + <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$"> + <uap:VisualElements + DisplayName="$placeholder$" + Description="$placeholder$" + Square150x150Logo="$placeholder$.png" + Square44x44Logo="$placeholder$.png" + BackgroundColor="transparent"> + <uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" /> + <uap:SplashScreen Image="$placeholder$.png" /> + </uap:VisualElements> + </Application> + </Applications> + + <Capabilities> + <rescap:Capability Name="runFullTrust" /> + </Capabilities> + +</Package> diff --git a/App/MauiApp1/Platforms/Windows/app.manifest b/App/MauiApp1/Platforms/Windows/app.manifest new file mode 100644 index 0000000000000000000000000000000000000000..2da12c4ce094490d14368a998d87e267145cf23f --- /dev/null +++ b/App/MauiApp1/Platforms/Windows/app.manifest @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"> + <assemblyIdentity version="1.0.0.0" name="MauiApp1.WinUI.app"/> + + <application xmlns="urn:schemas-microsoft-com:asm.v3"> + <windowsSettings> + <!-- The combination of below two tags have the following effect: + 1) Per-Monitor for >= Windows 10 Anniversary Update + 2) System < Windows 10 Anniversary Update + --> + <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> + <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness> + </windowsSettings> + </application> +</assembly> diff --git a/App/MauiApp1/Platforms/iOS/AppDelegate.cs b/App/MauiApp1/Platforms/iOS/AppDelegate.cs new file mode 100644 index 0000000000000000000000000000000000000000..9f49fadd097669df387734371f3a38b09d257d7a --- /dev/null +++ b/App/MauiApp1/Platforms/iOS/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace MauiApp1 +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/App/MauiApp1/Platforms/iOS/Info.plist b/App/MauiApp1/Platforms/iOS/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..0004a4fdee5d5bd9dac769b3e6a2e17931938ac3 --- /dev/null +++ b/App/MauiApp1/Platforms/iOS/Info.plist @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>LSRequiresIPhoneOS</key> + <true/> + <key>UIDeviceFamily</key> + <array> + <integer>1</integer> + <integer>2</integer> + </array> + <key>UIRequiredDeviceCapabilities</key> + <array> + <string>arm64</string> + </array> + <key>UISupportedInterfaceOrientations</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>UISupportedInterfaceOrientations~ipad</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationPortraitUpsideDown</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>XSAppIconAssets</key> + <string>Assets.xcassets/appicon.appiconset</string> +</dict> +</plist> diff --git a/App/MauiApp1/Platforms/iOS/Program.cs b/App/MauiApp1/Platforms/iOS/Program.cs new file mode 100644 index 0000000000000000000000000000000000000000..c13a69b78b47a3b08b66a658de2f40f1bfcef5ec --- /dev/null +++ b/App/MauiApp1/Platforms/iOS/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace MauiApp1 +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} diff --git a/App/MauiApp1/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/App/MauiApp1/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000000000000000000000000000000000000..24ab3b4334cbaacb6dd58070ef0c0255f0a2a37e --- /dev/null +++ b/App/MauiApp1/Platforms/iOS/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +This is the minimum required version of the Apple Privacy Manifest for .NET MAUI apps. +The contents below are needed because of APIs that are used in the .NET framework and .NET MAUI SDK. + +You are responsible for adding extra entries as needed for your application. + +More information: https://aka.ms/maui-privacy-manifest +--> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>NSPrivacyAccessedAPITypes</key> + <array> + <dict> + <key>NSPrivacyAccessedAPIType</key> + <string>NSPrivacyAccessedAPICategoryFileTimestamp</string> + <key>NSPrivacyAccessedAPITypeReasons</key> + <array> + <string>C617.1</string> + </array> + </dict> + <dict> + <key>NSPrivacyAccessedAPIType</key> + <string>NSPrivacyAccessedAPICategorySystemBootTime</string> + <key>NSPrivacyAccessedAPITypeReasons</key> + <array> + <string>35F9.1</string> + </array> + </dict> + <dict> + <key>NSPrivacyAccessedAPIType</key> + <string>NSPrivacyAccessedAPICategoryDiskSpace</string> + <key>NSPrivacyAccessedAPITypeReasons</key> + <array> + <string>E174.1</string> + </array> + </dict> + <!-- + The entry below is only needed when you're using the Preferences API in your app. + <dict> + <key>NSPrivacyAccessedAPIType</key> + <string>NSPrivacyAccessedAPICategoryUserDefaults</string> + <key>NSPrivacyAccessedAPITypeReasons</key> + <array> + <string>CA92.1</string> + </array> + </dict> --> + </array> +</dict> +</plist> diff --git a/App/MauiApp1/Properties/launchSettings.json b/App/MauiApp1/Properties/launchSettings.json new file mode 100644 index 0000000000000000000000000000000000000000..edf8aadcc83be92d0a7b46c125b10c0e40794fba --- /dev/null +++ b/App/MauiApp1/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Windows Machine": { + "commandName": "MsixPackage", + "nativeDebugging": false + } + } +} \ No newline at end of file diff --git a/App/MauiApp1/Resources/AppIcon/appicon.svg b/App/MauiApp1/Resources/AppIcon/appicon.svg new file mode 100644 index 0000000000000000000000000000000000000000..9d63b6513a1ce21f50b73c50848461b52441e718 --- /dev/null +++ b/App/MauiApp1/Resources/AppIcon/appicon.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <rect x="0" y="0" width="456" height="456" fill="#512BD4" /> +</svg> \ No newline at end of file diff --git a/App/MauiApp1/Resources/AppIcon/appiconfg.svg b/App/MauiApp1/Resources/AppIcon/appiconfg.svg new file mode 100644 index 0000000000000000000000000000000000000000..21dfb25f187b2ff04d3b5a6f1913fe971f36b34b --- /dev/null +++ b/App/MauiApp1/Resources/AppIcon/appiconfg.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"> + <path d="m 105.50037,281.60863 c -2.70293,0 -5.00091,-0.90042 -6.893127,-2.70209 -1.892214,-1.84778 -2.837901,-4.04181 -2.837901,-6.58209 0,-2.58722 0.945687,-4.80389 2.837901,-6.65167 1.892217,-1.84778 4.190197,-2.77167 6.893127,-2.77167 2.74819,0 5.06798,0.92389 6.96019,2.77167 1.93749,1.84778 2.90581,4.06445 2.90581,6.65167 0,2.54028 -0.96832,4.73431 -2.90581,6.58209 -1.89221,1.80167 -4.212,2.70209 -6.96019,2.70209 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="M 213.56111,280.08446 H 195.99044 L 149.69953,207.0544 c -1.17121,-1.84778 -2.14037,-3.76515 -2.90581,-5.75126 h -0.40578 c 0.36051,2.12528 0.54076,6.67515 0.54076,13.6496 v 65.13172 h -15.54349 v -99.36009 h 18.71925 l 44.7374,71.29798 c 1.89222,2.95695 3.1087,4.98917 3.64945,6.09751 h 0.26996 c -0.45021,-2.6325 -0.67573,-7.09015 -0.67573,-13.37293 v -64.02256 h 15.47557 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="m 289.25134,280.08446 h -54.40052 v -99.36009 h 52.23835 v 13.99669 h -36.15411 v 28.13085 h 33.31621 v 13.9271 h -33.31621 v 29.37835 h 38.31628 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="M 366.56466,194.72106 H 338.7222 v 85.3634 h -16.08423 v -85.3634 h -27.77455 v -13.99669 h 71.70124 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> +</svg> \ No newline at end of file diff --git a/App/MauiApp1/Resources/Fonts/OpenSans-Regular.ttf b/App/MauiApp1/Resources/Fonts/OpenSans-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ba487fed57907cdfe053acc3ce6c087734c301cf Binary files /dev/null and b/App/MauiApp1/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/App/MauiApp1/Resources/Fonts/OpenSans-Semibold.ttf b/App/MauiApp1/Resources/Fonts/OpenSans-Semibold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8fe2c596152b0b5fed469c3081e03245a2d588e4 Binary files /dev/null and b/App/MauiApp1/Resources/Fonts/OpenSans-Semibold.ttf differ diff --git a/App/MauiApp1/Resources/Images/dotnet_bot.png b/App/MauiApp1/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..f93ce025a8aadac29138413514bef90c11d892d9 Binary files /dev/null and b/App/MauiApp1/Resources/Images/dotnet_bot.png differ diff --git a/App/MauiApp1/Resources/Raw/AboutAssets.txt b/App/MauiApp1/Resources/Raw/AboutAssets.txt new file mode 100644 index 0000000000000000000000000000000000000000..89dc758d6e0d8d5153cc9cfd5a0429af3e70fe59 --- /dev/null +++ b/App/MauiApp1/Resources/Raw/AboutAssets.txt @@ -0,0 +1,15 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories). Deployment of the asset to your application +is automatically handled by the following `MauiAsset` Build Action within your `.csproj`. + + <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> + +These files will be deployed with your package and will be accessible using Essentials: + + async Task LoadMauiAsset() + { + using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt"); + using var reader = new StreamReader(stream); + + var contents = reader.ReadToEnd(); + } diff --git a/App/MauiApp1/Resources/Splash/splash.svg b/App/MauiApp1/Resources/Splash/splash.svg new file mode 100644 index 0000000000000000000000000000000000000000..21dfb25f187b2ff04d3b5a6f1913fe971f36b34b --- /dev/null +++ b/App/MauiApp1/Resources/Splash/splash.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"> + <path d="m 105.50037,281.60863 c -2.70293,0 -5.00091,-0.90042 -6.893127,-2.70209 -1.892214,-1.84778 -2.837901,-4.04181 -2.837901,-6.58209 0,-2.58722 0.945687,-4.80389 2.837901,-6.65167 1.892217,-1.84778 4.190197,-2.77167 6.893127,-2.77167 2.74819,0 5.06798,0.92389 6.96019,2.77167 1.93749,1.84778 2.90581,4.06445 2.90581,6.65167 0,2.54028 -0.96832,4.73431 -2.90581,6.58209 -1.89221,1.80167 -4.212,2.70209 -6.96019,2.70209 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="M 213.56111,280.08446 H 195.99044 L 149.69953,207.0544 c -1.17121,-1.84778 -2.14037,-3.76515 -2.90581,-5.75126 h -0.40578 c 0.36051,2.12528 0.54076,6.67515 0.54076,13.6496 v 65.13172 h -15.54349 v -99.36009 h 18.71925 l 44.7374,71.29798 c 1.89222,2.95695 3.1087,4.98917 3.64945,6.09751 h 0.26996 c -0.45021,-2.6325 -0.67573,-7.09015 -0.67573,-13.37293 v -64.02256 h 15.47557 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="m 289.25134,280.08446 h -54.40052 v -99.36009 h 52.23835 v 13.99669 h -36.15411 v 28.13085 h 33.31621 v 13.9271 h -33.31621 v 29.37835 h 38.31628 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> + <path d="M 366.56466,194.72106 H 338.7222 v 85.3634 h -16.08423 v -85.3634 h -27.77455 v -13.99669 h 71.70124 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" /> +</svg> \ No newline at end of file diff --git a/App/MauiApp1/Resources/Styles/Colors.xaml b/App/MauiApp1/Resources/Styles/Colors.xaml new file mode 100644 index 0000000000000000000000000000000000000000..30307a5ddc3b7f2894a389630562db7f3adfe125 --- /dev/null +++ b/App/MauiApp1/Resources/Styles/Colors.xaml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<?xaml-comp compile="true" ?> +<ResourceDictionary + xmlns="http://schemas.microsoft.com/dotnet/2021/maui" + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> + + <!-- Note: For Android please see also Platforms\Android\Resources\values\colors.xml --> + + <Color x:Key="Primary">#512BD4</Color> + <Color x:Key="PrimaryDark">#ac99ea</Color> + <Color x:Key="PrimaryDarkText">#242424</Color> + <Color x:Key="Secondary">#DFD8F7</Color> + <Color x:Key="SecondaryDarkText">#9880e5</Color> + <Color x:Key="Tertiary">#2B0B98</Color> + + <Color x:Key="White">White</Color> + <Color x:Key="Black">Black</Color> + <Color x:Key="Magenta">#D600AA</Color> + <Color x:Key="MidnightBlue">#190649</Color> + <Color x:Key="OffBlack">#1f1f1f</Color> + + <Color x:Key="Gray100">#E1E1E1</Color> + <Color x:Key="Gray200">#C8C8C8</Color> + <Color x:Key="Gray300">#ACACAC</Color> + <Color x:Key="Gray400">#919191</Color> + <Color x:Key="Gray500">#6E6E6E</Color> + <Color x:Key="Gray600">#404040</Color> + <Color x:Key="Gray900">#212121</Color> + <Color x:Key="Gray950">#141414</Color> + + <SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource Primary}"/> + <SolidColorBrush x:Key="SecondaryBrush" Color="{StaticResource Secondary}"/> + <SolidColorBrush x:Key="TertiaryBrush" Color="{StaticResource Tertiary}"/> + <SolidColorBrush x:Key="WhiteBrush" Color="{StaticResource White}"/> + <SolidColorBrush x:Key="BlackBrush" Color="{StaticResource Black}"/> + + <SolidColorBrush x:Key="Gray100Brush" Color="{StaticResource Gray100}"/> + <SolidColorBrush x:Key="Gray200Brush" Color="{StaticResource Gray200}"/> + <SolidColorBrush x:Key="Gray300Brush" Color="{StaticResource Gray300}"/> + <SolidColorBrush x:Key="Gray400Brush" Color="{StaticResource Gray400}"/> + <SolidColorBrush x:Key="Gray500Brush" Color="{StaticResource Gray500}"/> + <SolidColorBrush x:Key="Gray600Brush" Color="{StaticResource Gray600}"/> + <SolidColorBrush x:Key="Gray900Brush" Color="{StaticResource Gray900}"/> + <SolidColorBrush x:Key="Gray950Brush" Color="{StaticResource Gray950}"/> +</ResourceDictionary> \ No newline at end of file diff --git a/App/MauiApp1/Resources/Styles/Styles.xaml b/App/MauiApp1/Resources/Styles/Styles.xaml new file mode 100644 index 0000000000000000000000000000000000000000..6641e3aed4eaf55df7a0ae0d0f25bca8dca6ce2b --- /dev/null +++ b/App/MauiApp1/Resources/Styles/Styles.xaml @@ -0,0 +1,427 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<?xaml-comp compile="true" ?> +<ResourceDictionary + xmlns="http://schemas.microsoft.com/dotnet/2021/maui" + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> + + <Style TargetType="ActivityIndicator"> + <Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + </Style> + + <Style TargetType="IndicatorView"> + <Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/> + <Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/> + </Style> + + <Style TargetType="Border"> + <Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> + <Setter Property="StrokeShape" Value="Rectangle"/> + <Setter Property="StrokeThickness" Value="1"/> + </Style> + + <Style TargetType="BoxView"> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" /> + </Style> + + <Style TargetType="Button"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource PrimaryDarkText}}" /> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14"/> + <Setter Property="BorderWidth" Value="0"/> + <Setter Property="CornerRadius" Value="8"/> + <Setter Property="Padding" Value="14,10"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" /> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + <VisualState x:Name="PointerOver" /> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="CheckBox"> + <Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="DatePicker"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Editor"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14" /> + <Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Entry"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14" /> + <Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Frame"> + <Setter Property="HasShadow" Value="False" /> + <Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> + <Setter Property="CornerRadius" Value="8" /> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> + </Style> + + <Style TargetType="ImageButton"> + <Setter Property="Opacity" Value="1" /> + <Setter Property="BorderColor" Value="Transparent"/> + <Setter Property="BorderWidth" Value="0"/> + <Setter Property="CornerRadius" Value="0"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="Opacity" Value="0.5" /> + </VisualState.Setters> + </VisualState> + <VisualState x:Name="PointerOver" /> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Label"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular" /> + <Setter Property="FontSize" Value="14" /> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Span"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> + </Style> + + <Style TargetType="Label" x:Key="Headline"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" /> + <Setter Property="FontSize" Value="32" /> + <Setter Property="HorizontalOptions" Value="Center" /> + <Setter Property="HorizontalTextAlignment" Value="Center" /> + </Style> + + <Style TargetType="Label" x:Key="SubHeadline"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" /> + <Setter Property="FontSize" Value="24" /> + <Setter Property="HorizontalOptions" Value="Center" /> + <Setter Property="HorizontalTextAlignment" Value="Center" /> + </Style> + + <Style TargetType="ListView"> + <Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> + <Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> + </Style> + + <Style TargetType="Picker"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> + <Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + <Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="ProgressBar"> + <Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="RadioButton"> + <Setter Property="BackgroundColor" Value="Transparent"/> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="RefreshView"> + <Setter Property="RefreshColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> + </Style> + + <Style TargetType="SearchBar"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> + <Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" /> + <Setter Property="CancelButtonColor" Value="{StaticResource Gray500}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular" /> + <Setter Property="FontSize" Value="14" /> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + <Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="SearchHandler"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> + <Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" /> + <Setter Property="BackgroundColor" Value="Transparent" /> + <Setter Property="FontFamily" Value="OpenSansRegular" /> + <Setter Property="FontSize" Value="14" /> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + <Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Shadow"> + <Setter Property="Radius" Value="15" /> + <Setter Property="Opacity" Value="0.5" /> + <Setter Property="Brush" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" /> + <Setter Property="Offset" Value="10,10" /> + </Style> + + <Style TargetType="Slider"> + <Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + <Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" /> + <Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> + <Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> + <Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="SwipeItem"> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> + </Style> + + <Style TargetType="Switch"> + <Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + <Setter Property="ThumbColor" Value="{StaticResource White}" /> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + <Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + <VisualState x:Name="On"> + <VisualState.Setters> + <Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Secondary}, Dark={StaticResource Gray200}}" /> + <Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> + </VisualState.Setters> + </VisualState> + <VisualState x:Name="Off"> + <VisualState.Setters> + <Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="TimePicker"> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> + <Setter Property="BackgroundColor" Value="Transparent"/> + <Setter Property="FontFamily" Value="OpenSansRegular"/> + <Setter Property="FontSize" Value="14"/> + <Setter Property="MinimumHeightRequest" Value="44"/> + <Setter Property="MinimumWidthRequest" Value="44"/> + <Setter Property="VisualStateManager.VisualStateGroups"> + <VisualStateGroupList> + <VisualStateGroup x:Name="CommonStates"> + <VisualState x:Name="Normal" /> + <VisualState x:Name="Disabled"> + <VisualState.Setters> + <Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" /> + </VisualState.Setters> + </VisualState> + </VisualStateGroup> + </VisualStateGroupList> + </Setter> + </Style> + + <Style TargetType="Page" ApplyToDerivedTypes="True"> + <Setter Property="Padding" Value="0"/> + <Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" /> + </Style> + + <Style TargetType="Shell" ApplyToDerivedTypes="True"> + <Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" /> + <Setter Property="Shell.ForegroundColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" /> + <Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" /> + <Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> + <Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" /> + <Setter Property="Shell.NavBarHasShadow" Value="False" /> + <Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> + <Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" /> + <Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" /> + <Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> + </Style> + + <Style TargetType="NavigationPage"> + <Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" /> + <Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" /> + <Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" /> + </Style> + + <Style TargetType="TabbedPage"> + <Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" /> + <Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" /> + <Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> + <Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" /> + </Style> + +</ResourceDictionary> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/App/MauiApp1/obj/Debug/net8.0-android/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfo.cs b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..be6d97ec62dcd71f82f299643d0049ef968a8d0c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+969d6a7f31d81055e4853d25850ad360ee1857d7")] +[assembly: System.Reflection.AssemblyProductAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Android34.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Android21.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfoInputs.cache b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..924e171ea2ad0e4765a0733faa04e71f580aef9e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5ec0ac23d53da96ce7a5ca1cfd929940377a4ad45b4fcc4ba8729ed6cb9b91d4 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..d79c0979f63265b73f1e27f90ab5c018e12be6f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,47 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net8.0-android +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MauiApp1 +build_property.ProjectDir = D:\Github\robobin\App\MauiApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = + +[D:/Github/robobin/App/MauiApp1/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/Github/robobin/App/MauiApp1/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/Github/robobin/App/MauiApp1/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GlobalUsings.g.cs b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GlobalUsings.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..a599ed65279f356053591ddfa39b49b98e6cf05b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// <auto-generated/> +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.assets.cache b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..8925f71572050812772d5474bd74c02048aefb85 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.assets.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.csproj.AssemblyReference.cache b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..65246e15641a8afffdb8a20d49561faa0a6d71c3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/MauiApp1.csproj.AssemblyReference.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd4c8462a1a62772674210199ff60b9b7b0203cf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/R.txt @@ -0,0 +1,7093 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 +int anim design_bottom_sheet_slide_in 0x7f010018 +int anim design_bottom_sheet_slide_out 0x7f010019 +int anim design_snackbar_in 0x7f01001a +int anim design_snackbar_out 0x7f01001b +int anim enterfromleft 0x7f01001c +int anim enterfromright 0x7f01001d +int anim exittoleft 0x7f01001e +int anim exittoright 0x7f01001f +int anim fragment_fast_out_extra_slow_in 0x7f010020 +int anim linear_indeterminate_line1_head_interpolator 0x7f010021 +int anim linear_indeterminate_line1_tail_interpolator 0x7f010022 +int anim linear_indeterminate_line2_head_interpolator 0x7f010023 +int anim linear_indeterminate_line2_tail_interpolator 0x7f010024 +int anim m3_bottom_sheet_slide_in 0x7f010025 +int anim m3_bottom_sheet_slide_out 0x7f010026 +int anim m3_motion_fade_enter 0x7f010027 +int anim m3_motion_fade_exit 0x7f010028 +int anim m3_side_sheet_slide_in 0x7f010029 +int anim m3_side_sheet_slide_out 0x7f01002a +int anim mtrl_bottom_sheet_slide_in 0x7f01002b +int anim mtrl_bottom_sheet_slide_out 0x7f01002c +int anim mtrl_card_lowers_interpolator 0x7f01002d +int anim nav_default_enter_anim 0x7f01002e +int anim nav_default_exit_anim 0x7f01002f +int anim nav_default_pop_enter_anim 0x7f010030 +int anim nav_default_pop_exit_anim 0x7f010031 +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator fragment_close_enter 0x7f020003 +int animator fragment_close_exit 0x7f020004 +int animator fragment_fade_enter 0x7f020005 +int animator fragment_fade_exit 0x7f020006 +int animator fragment_open_enter 0x7f020007 +int animator fragment_open_exit 0x7f020008 +int animator m3_appbar_state_list_animator 0x7f020009 +int animator m3_btn_elevated_btn_state_list_anim 0x7f02000a +int animator m3_btn_state_list_anim 0x7f02000b +int animator m3_card_elevated_state_list_anim 0x7f02000c +int animator m3_card_state_list_anim 0x7f02000d +int animator m3_chip_state_list_anim 0x7f02000e +int animator m3_elevated_chip_state_list_anim 0x7f02000f +int animator m3_extended_fab_change_size_collapse_motion_spec 0x7f020010 +int animator m3_extended_fab_change_size_expand_motion_spec 0x7f020011 +int animator m3_extended_fab_hide_motion_spec 0x7f020012 +int animator m3_extended_fab_show_motion_spec 0x7f020013 +int animator m3_extended_fab_state_list_animator 0x7f020014 +int animator mtrl_btn_state_list_anim 0x7f020015 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020016 +int animator mtrl_card_state_list_anim 0x7f020017 +int animator mtrl_chip_state_list_anim 0x7f020018 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020019 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02001a +int animator mtrl_extended_fab_hide_motion_spec 0x7f02001b +int animator mtrl_extended_fab_show_motion_spec 0x7f02001c +int animator mtrl_extended_fab_state_list_animator 0x7f02001d +int animator mtrl_fab_hide_motion_spec 0x7f02001e +int animator mtrl_fab_show_motion_spec 0x7f02001f +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020020 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020021 +int animator nav_default_enter_anim 0x7f020022 +int animator nav_default_exit_anim 0x7f020023 +int animator nav_default_pop_enter_anim 0x7f020024 +int animator nav_default_pop_exit_anim 0x7f020025 +int attr SharedValue 0x7f030000 +int attr SharedValueId 0x7f030001 +int attr action 0x7f030002 +int attr actionBarDivider 0x7f030003 +int attr actionBarItemBackground 0x7f030004 +int attr actionBarPopupTheme 0x7f030005 +int attr actionBarSize 0x7f030006 +int attr actionBarSplitStyle 0x7f030007 +int attr actionBarStyle 0x7f030008 +int attr actionBarTabBarStyle 0x7f030009 +int attr actionBarTabStyle 0x7f03000a +int attr actionBarTabTextStyle 0x7f03000b +int attr actionBarTheme 0x7f03000c +int attr actionBarWidgetTheme 0x7f03000d +int attr actionButtonStyle 0x7f03000e +int attr actionDropDownStyle 0x7f03000f +int attr actionLayout 0x7f030010 +int attr actionMenuTextAppearance 0x7f030011 +int attr actionMenuTextColor 0x7f030012 +int attr actionModeBackground 0x7f030013 +int attr actionModeCloseButtonStyle 0x7f030014 +int attr actionModeCloseContentDescription 0x7f030015 +int attr actionModeCloseDrawable 0x7f030016 +int attr actionModeCopyDrawable 0x7f030017 +int attr actionModeCutDrawable 0x7f030018 +int attr actionModeFindDrawable 0x7f030019 +int attr actionModePasteDrawable 0x7f03001a +int attr actionModePopupWindowStyle 0x7f03001b +int attr actionModeSelectAllDrawable 0x7f03001c +int attr actionModeShareDrawable 0x7f03001d +int attr actionModeSplitBackground 0x7f03001e +int attr actionModeStyle 0x7f03001f +int attr actionModeTheme 0x7f030020 +int attr actionModeWebSearchDrawable 0x7f030021 +int attr actionOverflowButtonStyle 0x7f030022 +int attr actionOverflowMenuStyle 0x7f030023 +int attr actionProviderClass 0x7f030024 +int attr actionTextColorAlpha 0x7f030025 +int attr actionViewClass 0x7f030026 +int attr activityAction 0x7f030027 +int attr activityChooserViewStyle 0x7f030028 +int attr activityName 0x7f030029 +int attr addElevationShadow 0x7f03002a +int attr alertDialogButtonGroupStyle 0x7f03002b +int attr alertDialogCenterButtons 0x7f03002c +int attr alertDialogStyle 0x7f03002d +int attr alertDialogTheme 0x7f03002e +int attr allowStacking 0x7f03002f +int attr alpha 0x7f030030 +int attr alphabeticModifiers 0x7f030031 +int attr altSrc 0x7f030032 +int attr alwaysExpand 0x7f030033 +int attr animateCircleAngleTo 0x7f030034 +int attr animateRelativeTo 0x7f030035 +int attr animationBackgroundColor 0x7f030036 +int attr animationMode 0x7f030037 +int attr appBarLayoutStyle 0x7f030038 +int attr applyMotionScene 0x7f030039 +int attr arcMode 0x7f03003a +int attr argType 0x7f03003b +int attr arrowHeadLength 0x7f03003c +int attr arrowShaftLength 0x7f03003d +int attr attributeName 0x7f03003e +int attr autoCompleteMode 0x7f03003f +int attr autoCompleteTextViewStyle 0x7f030040 +int attr autoSizeMaxTextSize 0x7f030041 +int attr autoSizeMinTextSize 0x7f030042 +int attr autoSizePresetSizes 0x7f030043 +int attr autoSizeStepGranularity 0x7f030044 +int attr autoSizeTextType 0x7f030045 +int attr autoTransition 0x7f030046 +int attr background 0x7f030047 +int attr backgroundColor 0x7f030048 +int attr backgroundInsetBottom 0x7f030049 +int attr backgroundInsetEnd 0x7f03004a +int attr backgroundInsetStart 0x7f03004b +int attr backgroundInsetTop 0x7f03004c +int attr backgroundOverlayColorAlpha 0x7f03004d +int attr backgroundSplit 0x7f03004e +int attr backgroundStacked 0x7f03004f +int attr backgroundTint 0x7f030050 +int attr backgroundTintMode 0x7f030051 +int attr badgeGravity 0x7f030052 +int attr badgeHeight 0x7f030053 +int attr badgeRadius 0x7f030054 +int attr badgeShapeAppearance 0x7f030055 +int attr badgeShapeAppearanceOverlay 0x7f030056 +int attr badgeStyle 0x7f030057 +int attr badgeTextAppearance 0x7f030058 +int attr badgeTextColor 0x7f030059 +int attr badgeWidePadding 0x7f03005a +int attr badgeWidth 0x7f03005b +int attr badgeWithTextHeight 0x7f03005c +int attr badgeWithTextRadius 0x7f03005d +int attr badgeWithTextShapeAppearance 0x7f03005e +int attr badgeWithTextShapeAppearanceOverlay 0x7f03005f +int attr badgeWithTextWidth 0x7f030060 +int attr barLength 0x7f030061 +int attr barrierAllowsGoneWidgets 0x7f030062 +int attr barrierDirection 0x7f030063 +int attr barrierMargin 0x7f030064 +int attr behavior_autoHide 0x7f030065 +int attr behavior_autoShrink 0x7f030066 +int attr behavior_draggable 0x7f030067 +int attr behavior_expandedOffset 0x7f030068 +int attr behavior_fitToContents 0x7f030069 +int attr behavior_halfExpandedRatio 0x7f03006a +int attr behavior_hideable 0x7f03006b +int attr behavior_overlapTop 0x7f03006c +int attr behavior_peekHeight 0x7f03006d +int attr behavior_saveFlags 0x7f03006e +int attr behavior_significantVelocityThreshold 0x7f03006f +int attr behavior_skipCollapsed 0x7f030070 +int attr blendSrc 0x7f030071 +int attr borderRound 0x7f030072 +int attr borderRoundPercent 0x7f030073 +int attr borderWidth 0x7f030074 +int attr borderlessButtonStyle 0x7f030075 +int attr bottomAppBarStyle 0x7f030076 +int attr bottomInsetScrimEnabled 0x7f030077 +int attr bottomNavigationStyle 0x7f030078 +int attr bottomNavigationViewStyle 0x7f030079 +int attr bottomSheetDialogTheme 0x7f03007a +int attr bottomSheetDragHandleStyle 0x7f03007b +int attr bottomSheetStyle 0x7f03007c +int attr boxBackgroundColor 0x7f03007d +int attr boxBackgroundMode 0x7f03007e +int attr boxCollapsedPaddingTop 0x7f03007f +int attr boxCornerRadiusBottomEnd 0x7f030080 +int attr boxCornerRadiusBottomStart 0x7f030081 +int attr boxCornerRadiusTopEnd 0x7f030082 +int attr boxCornerRadiusTopStart 0x7f030083 +int attr boxStrokeColor 0x7f030084 +int attr boxStrokeErrorColor 0x7f030085 +int attr boxStrokeWidth 0x7f030086 +int attr boxStrokeWidthFocused 0x7f030087 +int attr brightness 0x7f030088 +int attr buttonBarButtonStyle 0x7f030089 +int attr buttonBarNegativeButtonStyle 0x7f03008a +int attr buttonBarNeutralButtonStyle 0x7f03008b +int attr buttonBarPositiveButtonStyle 0x7f03008c +int attr buttonBarStyle 0x7f03008d +int attr buttonCompat 0x7f03008e +int attr buttonGravity 0x7f03008f +int attr buttonIcon 0x7f030090 +int attr buttonIconDimen 0x7f030091 +int attr buttonIconTint 0x7f030092 +int attr buttonIconTintMode 0x7f030093 +int attr buttonPanelSideLayout 0x7f030094 +int attr buttonStyle 0x7f030095 +int attr buttonStyleSmall 0x7f030096 +int attr buttonTint 0x7f030097 +int attr buttonTintMode 0x7f030098 +int attr cardBackgroundColor 0x7f030099 +int attr cardCornerRadius 0x7f03009a +int attr cardElevation 0x7f03009b +int attr cardForegroundColor 0x7f03009c +int attr cardMaxElevation 0x7f03009d +int attr cardPreventCornerOverlap 0x7f03009e +int attr cardUseCompatPadding 0x7f03009f +int attr cardViewStyle 0x7f0300a0 +int attr carousel_backwardTransition 0x7f0300a1 +int attr carousel_emptyViewsBehavior 0x7f0300a2 +int attr carousel_firstView 0x7f0300a3 +int attr carousel_forwardTransition 0x7f0300a4 +int attr carousel_infinite 0x7f0300a5 +int attr carousel_nextState 0x7f0300a6 +int attr carousel_previousState 0x7f0300a7 +int attr carousel_touchUpMode 0x7f0300a8 +int attr carousel_touchUp_dampeningFactor 0x7f0300a9 +int attr carousel_touchUp_velocityThreshold 0x7f0300aa +int attr centerIfNoTextEnabled 0x7f0300ab +int attr chainUseRtl 0x7f0300ac +int attr checkMarkCompat 0x7f0300ad +int attr checkMarkTint 0x7f0300ae +int attr checkMarkTintMode 0x7f0300af +int attr checkboxStyle 0x7f0300b0 +int attr checkedButton 0x7f0300b1 +int attr checkedChip 0x7f0300b2 +int attr checkedIcon 0x7f0300b3 +int attr checkedIconEnabled 0x7f0300b4 +int attr checkedIconGravity 0x7f0300b5 +int attr checkedIconMargin 0x7f0300b6 +int attr checkedIconSize 0x7f0300b7 +int attr checkedIconTint 0x7f0300b8 +int attr checkedIconVisible 0x7f0300b9 +int attr checkedState 0x7f0300ba +int attr checkedTextViewStyle 0x7f0300bb +int attr chipBackgroundColor 0x7f0300bc +int attr chipCornerRadius 0x7f0300bd +int attr chipEndPadding 0x7f0300be +int attr chipGroupStyle 0x7f0300bf +int attr chipIcon 0x7f0300c0 +int attr chipIconEnabled 0x7f0300c1 +int attr chipIconSize 0x7f0300c2 +int attr chipIconTint 0x7f0300c3 +int attr chipIconVisible 0x7f0300c4 +int attr chipMinHeight 0x7f0300c5 +int attr chipMinTouchTargetSize 0x7f0300c6 +int attr chipSpacing 0x7f0300c7 +int attr chipSpacingHorizontal 0x7f0300c8 +int attr chipSpacingVertical 0x7f0300c9 +int attr chipStandaloneStyle 0x7f0300ca +int attr chipStartPadding 0x7f0300cb +int attr chipStrokeColor 0x7f0300cc +int attr chipStrokeWidth 0x7f0300cd +int attr chipStyle 0x7f0300ce +int attr chipSurfaceColor 0x7f0300cf +int attr circleRadius 0x7f0300d0 +int attr circularProgressIndicatorStyle 0x7f0300d1 +int attr circularflow_angles 0x7f0300d2 +int attr circularflow_defaultAngle 0x7f0300d3 +int attr circularflow_defaultRadius 0x7f0300d4 +int attr circularflow_radiusInDP 0x7f0300d5 +int attr circularflow_viewCenter 0x7f0300d6 +int attr clearTop 0x7f0300d7 +int attr clearsTag 0x7f0300d8 +int attr clickAction 0x7f0300d9 +int attr clockFaceBackgroundColor 0x7f0300da +int attr clockHandColor 0x7f0300db +int attr clockIcon 0x7f0300dc +int attr clockNumberTextColor 0x7f0300dd +int attr closeIcon 0x7f0300de +int attr closeIconEnabled 0x7f0300df +int attr closeIconEndPadding 0x7f0300e0 +int attr closeIconSize 0x7f0300e1 +int attr closeIconStartPadding 0x7f0300e2 +int attr closeIconTint 0x7f0300e3 +int attr closeIconVisible 0x7f0300e4 +int attr closeItemLayout 0x7f0300e5 +int attr collapseContentDescription 0x7f0300e6 +int attr collapseIcon 0x7f0300e7 +int attr collapsedSize 0x7f0300e8 +int attr collapsedTitleGravity 0x7f0300e9 +int attr collapsedTitleTextAppearance 0x7f0300ea +int attr collapsedTitleTextColor 0x7f0300eb +int attr collapsingToolbarLayoutLargeSize 0x7f0300ec +int attr collapsingToolbarLayoutLargeStyle 0x7f0300ed +int attr collapsingToolbarLayoutMediumSize 0x7f0300ee +int attr collapsingToolbarLayoutMediumStyle 0x7f0300ef +int attr collapsingToolbarLayoutStyle 0x7f0300f0 +int attr collectionViewStyle 0x7f0300f1 +int attr color 0x7f0300f2 +int attr colorAccent 0x7f0300f3 +int attr colorBackgroundFloating 0x7f0300f4 +int attr colorButtonNormal 0x7f0300f5 +int attr colorContainer 0x7f0300f6 +int attr colorControlActivated 0x7f0300f7 +int attr colorControlHighlight 0x7f0300f8 +int attr colorControlNormal 0x7f0300f9 +int attr colorError 0x7f0300fa +int attr colorErrorContainer 0x7f0300fb +int attr colorOnBackground 0x7f0300fc +int attr colorOnContainer 0x7f0300fd +int attr colorOnContainerUnchecked 0x7f0300fe +int attr colorOnError 0x7f0300ff +int attr colorOnErrorContainer 0x7f030100 +int attr colorOnPrimary 0x7f030101 +int attr colorOnPrimaryContainer 0x7f030102 +int attr colorOnPrimaryFixed 0x7f030103 +int attr colorOnPrimaryFixedVariant 0x7f030104 +int attr colorOnPrimarySurface 0x7f030105 +int attr colorOnSecondary 0x7f030106 +int attr colorOnSecondaryContainer 0x7f030107 +int attr colorOnSecondaryFixed 0x7f030108 +int attr colorOnSecondaryFixedVariant 0x7f030109 +int attr colorOnSurface 0x7f03010a +int attr colorOnSurfaceInverse 0x7f03010b +int attr colorOnSurfaceVariant 0x7f03010c +int attr colorOnTertiary 0x7f03010d +int attr colorOnTertiaryContainer 0x7f03010e +int attr colorOnTertiaryFixed 0x7f03010f +int attr colorOnTertiaryFixedVariant 0x7f030110 +int attr colorOutline 0x7f030111 +int attr colorOutlineVariant 0x7f030112 +int attr colorPrimary 0x7f030113 +int attr colorPrimaryContainer 0x7f030114 +int attr colorPrimaryDark 0x7f030115 +int attr colorPrimaryFixed 0x7f030116 +int attr colorPrimaryFixedDim 0x7f030117 +int attr colorPrimaryInverse 0x7f030118 +int attr colorPrimarySurface 0x7f030119 +int attr colorPrimaryVariant 0x7f03011a +int attr colorSecondary 0x7f03011b +int attr colorSecondaryContainer 0x7f03011c +int attr colorSecondaryFixed 0x7f03011d +int attr colorSecondaryFixedDim 0x7f03011e +int attr colorSecondaryVariant 0x7f03011f +int attr colorSurface 0x7f030120 +int attr colorSurfaceBright 0x7f030121 +int attr colorSurfaceContainer 0x7f030122 +int attr colorSurfaceContainerHigh 0x7f030123 +int attr colorSurfaceContainerHighest 0x7f030124 +int attr colorSurfaceContainerLow 0x7f030125 +int attr colorSurfaceContainerLowest 0x7f030126 +int attr colorSurfaceDim 0x7f030127 +int attr colorSurfaceInverse 0x7f030128 +int attr colorSurfaceVariant 0x7f030129 +int attr colorSwitchThumbNormal 0x7f03012a +int attr colorTertiary 0x7f03012b +int attr colorTertiaryContainer 0x7f03012c +int attr colorTertiaryFixed 0x7f03012d +int attr colorTertiaryFixedDim 0x7f03012e +int attr commitIcon 0x7f03012f +int attr compatShadowEnabled 0x7f030130 +int attr constraintRotate 0x7f030131 +int attr constraintSet 0x7f030132 +int attr constraintSetEnd 0x7f030133 +int attr constraintSetStart 0x7f030134 +int attr constraint_referenced_ids 0x7f030135 +int attr constraint_referenced_tags 0x7f030136 +int attr constraints 0x7f030137 +int attr content 0x7f030138 +int attr contentDescription 0x7f030139 +int attr contentInsetEnd 0x7f03013a +int attr contentInsetEndWithActions 0x7f03013b +int attr contentInsetLeft 0x7f03013c +int attr contentInsetRight 0x7f03013d +int attr contentInsetStart 0x7f03013e +int attr contentInsetStartWithNavigation 0x7f03013f +int attr contentPadding 0x7f030140 +int attr contentPaddingBottom 0x7f030141 +int attr contentPaddingEnd 0x7f030142 +int attr contentPaddingLeft 0x7f030143 +int attr contentPaddingRight 0x7f030144 +int attr contentPaddingStart 0x7f030145 +int attr contentPaddingTop 0x7f030146 +int attr contentScrim 0x7f030147 +int attr contrast 0x7f030148 +int attr controlBackground 0x7f030149 +int attr coordinatorLayoutStyle 0x7f03014a +int attr coplanarSiblingViewId 0x7f03014b +int attr cornerFamily 0x7f03014c +int attr cornerFamilyBottomLeft 0x7f03014d +int attr cornerFamilyBottomRight 0x7f03014e +int attr cornerFamilyTopLeft 0x7f03014f +int attr cornerFamilyTopRight 0x7f030150 +int attr cornerRadius 0x7f030151 +int attr cornerSize 0x7f030152 +int attr cornerSizeBottomLeft 0x7f030153 +int attr cornerSizeBottomRight 0x7f030154 +int attr cornerSizeTopLeft 0x7f030155 +int attr cornerSizeTopRight 0x7f030156 +int attr counterEnabled 0x7f030157 +int attr counterMaxLength 0x7f030158 +int attr counterOverflowTextAppearance 0x7f030159 +int attr counterOverflowTextColor 0x7f03015a +int attr counterTextAppearance 0x7f03015b +int attr counterTextColor 0x7f03015c +int attr crossfade 0x7f03015d +int attr currentState 0x7f03015e +int attr curveFit 0x7f03015f +int attr customBoolean 0x7f030160 +int attr customColorDrawableValue 0x7f030161 +int attr customColorValue 0x7f030162 +int attr customDimension 0x7f030163 +int attr customFloatValue 0x7f030164 +int attr customIntegerValue 0x7f030165 +int attr customNavigationLayout 0x7f030166 +int attr customPixelDimension 0x7f030167 +int attr customReference 0x7f030168 +int attr customStringValue 0x7f030169 +int attr data 0x7f03016a +int attr dataPattern 0x7f03016b +int attr dayInvalidStyle 0x7f03016c +int attr daySelectedStyle 0x7f03016d +int attr dayStyle 0x7f03016e +int attr dayTodayStyle 0x7f03016f +int attr defaultDuration 0x7f030170 +int attr defaultMarginsEnabled 0x7f030171 +int attr defaultNavHost 0x7f030172 +int attr defaultQueryHint 0x7f030173 +int attr defaultScrollFlagsEnabled 0x7f030174 +int attr defaultState 0x7f030175 +int attr deltaPolarAngle 0x7f030176 +int attr deltaPolarRadius 0x7f030177 +int attr deriveConstraintsFrom 0x7f030178 +int attr destination 0x7f030179 +int attr dialogCornerRadius 0x7f03017a +int attr dialogPreferredPadding 0x7f03017b +int attr dialogTheme 0x7f03017c +int attr displayOptions 0x7f03017d +int attr divider 0x7f03017e +int attr dividerColor 0x7f03017f +int attr dividerHorizontal 0x7f030180 +int attr dividerInsetEnd 0x7f030181 +int attr dividerInsetStart 0x7f030182 +int attr dividerPadding 0x7f030183 +int attr dividerThickness 0x7f030184 +int attr dividerVertical 0x7f030185 +int attr dragDirection 0x7f030186 +int attr dragScale 0x7f030187 +int attr dragThreshold 0x7f030188 +int attr drawPath 0x7f030189 +int attr drawableBottomCompat 0x7f03018a +int attr drawableEndCompat 0x7f03018b +int attr drawableLeftCompat 0x7f03018c +int attr drawableRightCompat 0x7f03018d +int attr drawableSize 0x7f03018e +int attr drawableStartCompat 0x7f03018f +int attr drawableTint 0x7f030190 +int attr drawableTintMode 0x7f030191 +int attr drawableTopCompat 0x7f030192 +int attr drawerArrowStyle 0x7f030193 +int attr drawerLayoutCornerSize 0x7f030194 +int attr drawerLayoutStyle 0x7f030195 +int attr dropDownListViewStyle 0x7f030196 +int attr dropdownListPreferredItemHeight 0x7f030197 +int attr duration 0x7f030198 +int attr dynamicColorThemeOverlay 0x7f030199 +int attr editTextBackground 0x7f03019a +int attr editTextColor 0x7f03019b +int attr editTextStyle 0x7f03019c +int attr elevation 0x7f03019d +int attr elevationOverlayAccentColor 0x7f03019e +int attr elevationOverlayColor 0x7f03019f +int attr elevationOverlayEnabled 0x7f0301a0 +int attr emojiCompatEnabled 0x7f0301a1 +int attr enableEdgeToEdge 0x7f0301a2 +int attr endIconCheckable 0x7f0301a3 +int attr endIconContentDescription 0x7f0301a4 +int attr endIconDrawable 0x7f0301a5 +int attr endIconMinSize 0x7f0301a6 +int attr endIconMode 0x7f0301a7 +int attr endIconScaleType 0x7f0301a8 +int attr endIconTint 0x7f0301a9 +int attr endIconTintMode 0x7f0301aa +int attr enforceMaterialTheme 0x7f0301ab +int attr enforceTextAppearance 0x7f0301ac +int attr ensureMinTouchTargetSize 0x7f0301ad +int attr enterAnim 0x7f0301ae +int attr errorAccessibilityLabel 0x7f0301af +int attr errorAccessibilityLiveRegion 0x7f0301b0 +int attr errorContentDescription 0x7f0301b1 +int attr errorEnabled 0x7f0301b2 +int attr errorIconDrawable 0x7f0301b3 +int attr errorIconTint 0x7f0301b4 +int attr errorIconTintMode 0x7f0301b5 +int attr errorShown 0x7f0301b6 +int attr errorTextAppearance 0x7f0301b7 +int attr errorTextColor 0x7f0301b8 +int attr exitAnim 0x7f0301b9 +int attr expandActivityOverflowButtonDrawable 0x7f0301ba +int attr expanded 0x7f0301bb +int attr expandedHintEnabled 0x7f0301bc +int attr expandedTitleGravity 0x7f0301bd +int attr expandedTitleMargin 0x7f0301be +int attr expandedTitleMarginBottom 0x7f0301bf +int attr expandedTitleMarginEnd 0x7f0301c0 +int attr expandedTitleMarginStart 0x7f0301c1 +int attr expandedTitleMarginTop 0x7f0301c2 +int attr expandedTitleTextAppearance 0x7f0301c3 +int attr expandedTitleTextColor 0x7f0301c4 +int attr extendMotionSpec 0x7f0301c5 +int attr extendStrategy 0x7f0301c6 +int attr extendedFloatingActionButtonPrimaryStyle 0x7f0301c7 +int attr extendedFloatingActionButtonSecondaryStyle 0x7f0301c8 +int attr extendedFloatingActionButtonStyle 0x7f0301c9 +int attr extendedFloatingActionButtonSurfaceStyle 0x7f0301ca +int attr extendedFloatingActionButtonTertiaryStyle 0x7f0301cb +int attr extraMultilineHeightEnabled 0x7f0301cc +int attr fabAlignmentMode 0x7f0301cd +int attr fabAlignmentModeEndMargin 0x7f0301ce +int attr fabAnchorMode 0x7f0301cf +int attr fabAnimationMode 0x7f0301d0 +int attr fabCradleMargin 0x7f0301d1 +int attr fabCradleRoundedCornerRadius 0x7f0301d2 +int attr fabCradleVerticalOffset 0x7f0301d3 +int attr fabCustomSize 0x7f0301d4 +int attr fabSize 0x7f0301d5 +int attr fastScrollEnabled 0x7f0301d6 +int attr fastScrollHorizontalThumbDrawable 0x7f0301d7 +int attr fastScrollHorizontalTrackDrawable 0x7f0301d8 +int attr fastScrollVerticalThumbDrawable 0x7f0301d9 +int attr fastScrollVerticalTrackDrawable 0x7f0301da +int attr finishPrimaryWithPlaceholder 0x7f0301db +int attr finishPrimaryWithSecondary 0x7f0301dc +int attr finishSecondaryWithPrimary 0x7f0301dd +int attr firstBaselineToTopHeight 0x7f0301de +int attr floatingActionButtonLargePrimaryStyle 0x7f0301df +int attr floatingActionButtonLargeSecondaryStyle 0x7f0301e0 +int attr floatingActionButtonLargeStyle 0x7f0301e1 +int attr floatingActionButtonLargeSurfaceStyle 0x7f0301e2 +int attr floatingActionButtonLargeTertiaryStyle 0x7f0301e3 +int attr floatingActionButtonPrimaryStyle 0x7f0301e4 +int attr floatingActionButtonSecondaryStyle 0x7f0301e5 +int attr floatingActionButtonSmallPrimaryStyle 0x7f0301e6 +int attr floatingActionButtonSmallSecondaryStyle 0x7f0301e7 +int attr floatingActionButtonSmallStyle 0x7f0301e8 +int attr floatingActionButtonSmallSurfaceStyle 0x7f0301e9 +int attr floatingActionButtonSmallTertiaryStyle 0x7f0301ea +int attr floatingActionButtonStyle 0x7f0301eb +int attr floatingActionButtonSurfaceStyle 0x7f0301ec +int attr floatingActionButtonTertiaryStyle 0x7f0301ed +int attr flow_firstHorizontalBias 0x7f0301ee +int attr flow_firstHorizontalStyle 0x7f0301ef +int attr flow_firstVerticalBias 0x7f0301f0 +int attr flow_firstVerticalStyle 0x7f0301f1 +int attr flow_horizontalAlign 0x7f0301f2 +int attr flow_horizontalBias 0x7f0301f3 +int attr flow_horizontalGap 0x7f0301f4 +int attr flow_horizontalStyle 0x7f0301f5 +int attr flow_lastHorizontalBias 0x7f0301f6 +int attr flow_lastHorizontalStyle 0x7f0301f7 +int attr flow_lastVerticalBias 0x7f0301f8 +int attr flow_lastVerticalStyle 0x7f0301f9 +int attr flow_maxElementsWrap 0x7f0301fa +int attr flow_padding 0x7f0301fb +int attr flow_verticalAlign 0x7f0301fc +int attr flow_verticalBias 0x7f0301fd +int attr flow_verticalGap 0x7f0301fe +int attr flow_verticalStyle 0x7f0301ff +int attr flow_wrapMode 0x7f030200 +int attr font 0x7f030201 +int attr fontFamily 0x7f030202 +int attr fontProviderAuthority 0x7f030203 +int attr fontProviderCerts 0x7f030204 +int attr fontProviderFetchStrategy 0x7f030205 +int attr fontProviderFetchTimeout 0x7f030206 +int attr fontProviderPackage 0x7f030207 +int attr fontProviderQuery 0x7f030208 +int attr fontProviderSystemFontFamily 0x7f030209 +int attr fontStyle 0x7f03020a +int attr fontVariationSettings 0x7f03020b +int attr fontWeight 0x7f03020c +int attr forceApplySystemWindowInsetTop 0x7f03020d +int attr forceDefaultNavigationOnClickListener 0x7f03020e +int attr foregroundInsidePadding 0x7f03020f +int attr framePosition 0x7f030210 +int attr gapBetweenBars 0x7f030211 +int attr gestureInsetBottomIgnored 0x7f030212 +int attr goIcon 0x7f030213 +int attr graph 0x7f030214 +int attr guidelineUseRtl 0x7f030215 +int attr haloColor 0x7f030216 +int attr haloRadius 0x7f030217 +int attr headerLayout 0x7f030218 +int attr height 0x7f030219 +int attr helperText 0x7f03021a +int attr helperTextEnabled 0x7f03021b +int attr helperTextTextAppearance 0x7f03021c +int attr helperTextTextColor 0x7f03021d +int attr hideAnimationBehavior 0x7f03021e +int attr hideMotionSpec 0x7f03021f +int attr hideNavigationIcon 0x7f030220 +int attr hideOnContentScroll 0x7f030221 +int attr hideOnScroll 0x7f030222 +int attr hintAnimationEnabled 0x7f030223 +int attr hintEnabled 0x7f030224 +int attr hintTextAppearance 0x7f030225 +int attr hintTextColor 0x7f030226 +int attr homeAsUpIndicator 0x7f030227 +int attr homeLayout 0x7f030228 +int attr horizontalOffset 0x7f030229 +int attr horizontalOffsetWithText 0x7f03022a +int attr hoveredFocusedTranslationZ 0x7f03022b +int attr icon 0x7f03022c +int attr iconEndPadding 0x7f03022d +int attr iconGravity 0x7f03022e +int attr iconPadding 0x7f03022f +int attr iconSize 0x7f030230 +int attr iconStartPadding 0x7f030231 +int attr iconTint 0x7f030232 +int attr iconTintMode 0x7f030233 +int attr iconifiedByDefault 0x7f030234 +int attr ifTagNotSet 0x7f030235 +int attr ifTagSet 0x7f030236 +int attr imageButtonStyle 0x7f030237 +int attr imagePanX 0x7f030238 +int attr imagePanY 0x7f030239 +int attr imageRotate 0x7f03023a +int attr imageZoom 0x7f03023b +int attr indeterminateAnimationType 0x7f03023c +int attr indeterminateProgressStyle 0x7f03023d +int attr indicatorColor 0x7f03023e +int attr indicatorDirectionCircular 0x7f03023f +int attr indicatorDirectionLinear 0x7f030240 +int attr indicatorInset 0x7f030241 +int attr indicatorSize 0x7f030242 +int attr initialActivityCount 0x7f030243 +int attr insetForeground 0x7f030244 +int attr isLightTheme 0x7f030245 +int attr isMaterial3DynamicColorApplied 0x7f030246 +int attr isMaterial3Theme 0x7f030247 +int attr isMaterialTheme 0x7f030248 +int attr itemActiveIndicatorStyle 0x7f030249 +int attr itemBackground 0x7f03024a +int attr itemFillColor 0x7f03024b +int attr itemHorizontalPadding 0x7f03024c +int attr itemHorizontalTranslationEnabled 0x7f03024d +int attr itemIconPadding 0x7f03024e +int attr itemIconSize 0x7f03024f +int attr itemIconTint 0x7f030250 +int attr itemMaxLines 0x7f030251 +int attr itemMinHeight 0x7f030252 +int attr itemPadding 0x7f030253 +int attr itemPaddingBottom 0x7f030254 +int attr itemPaddingTop 0x7f030255 +int attr itemRippleColor 0x7f030256 +int attr itemShapeAppearance 0x7f030257 +int attr itemShapeAppearanceOverlay 0x7f030258 +int attr itemShapeFillColor 0x7f030259 +int attr itemShapeInsetBottom 0x7f03025a +int attr itemShapeInsetEnd 0x7f03025b +int attr itemShapeInsetStart 0x7f03025c +int attr itemShapeInsetTop 0x7f03025d +int attr itemSpacing 0x7f03025e +int attr itemStrokeColor 0x7f03025f +int attr itemStrokeWidth 0x7f030260 +int attr itemTextAppearance 0x7f030261 +int attr itemTextAppearanceActive 0x7f030262 +int attr itemTextAppearanceInactive 0x7f030263 +int attr itemTextColor 0x7f030264 +int attr itemVerticalPadding 0x7f030265 +int attr keyPositionType 0x7f030266 +int attr keyboardIcon 0x7f030267 +int attr keylines 0x7f030268 +int attr lStar 0x7f030269 +int attr labelBehavior 0x7f03026a +int attr labelStyle 0x7f03026b +int attr labelVisibilityMode 0x7f03026c +int attr lastBaselineToBottomHeight 0x7f03026d +int attr lastItemDecorated 0x7f03026e +int attr launchSingleTop 0x7f03026f +int attr layout 0x7f030270 +int attr layoutDescription 0x7f030271 +int attr layoutDuringTransition 0x7f030272 +int attr layoutManager 0x7f030273 +int attr layout_anchor 0x7f030274 +int attr layout_anchorGravity 0x7f030275 +int attr layout_behavior 0x7f030276 +int attr layout_collapseMode 0x7f030277 +int attr layout_collapseParallaxMultiplier 0x7f030278 +int attr layout_constrainedHeight 0x7f030279 +int attr layout_constrainedWidth 0x7f03027a +int attr layout_constraintBaseline_creator 0x7f03027b +int attr layout_constraintBaseline_toBaselineOf 0x7f03027c +int attr layout_constraintBaseline_toBottomOf 0x7f03027d +int attr layout_constraintBaseline_toTopOf 0x7f03027e +int attr layout_constraintBottom_creator 0x7f03027f +int attr layout_constraintBottom_toBottomOf 0x7f030280 +int attr layout_constraintBottom_toTopOf 0x7f030281 +int attr layout_constraintCircle 0x7f030282 +int attr layout_constraintCircleAngle 0x7f030283 +int attr layout_constraintCircleRadius 0x7f030284 +int attr layout_constraintDimensionRatio 0x7f030285 +int attr layout_constraintEnd_toEndOf 0x7f030286 +int attr layout_constraintEnd_toStartOf 0x7f030287 +int attr layout_constraintGuide_begin 0x7f030288 +int attr layout_constraintGuide_end 0x7f030289 +int attr layout_constraintGuide_percent 0x7f03028a +int attr layout_constraintHeight 0x7f03028b +int attr layout_constraintHeight_default 0x7f03028c +int attr layout_constraintHeight_max 0x7f03028d +int attr layout_constraintHeight_min 0x7f03028e +int attr layout_constraintHeight_percent 0x7f03028f +int attr layout_constraintHorizontal_bias 0x7f030290 +int attr layout_constraintHorizontal_chainStyle 0x7f030291 +int attr layout_constraintHorizontal_weight 0x7f030292 +int attr layout_constraintLeft_creator 0x7f030293 +int attr layout_constraintLeft_toLeftOf 0x7f030294 +int attr layout_constraintLeft_toRightOf 0x7f030295 +int attr layout_constraintRight_creator 0x7f030296 +int attr layout_constraintRight_toLeftOf 0x7f030297 +int attr layout_constraintRight_toRightOf 0x7f030298 +int attr layout_constraintStart_toEndOf 0x7f030299 +int attr layout_constraintStart_toStartOf 0x7f03029a +int attr layout_constraintTag 0x7f03029b +int attr layout_constraintTop_creator 0x7f03029c +int attr layout_constraintTop_toBottomOf 0x7f03029d +int attr layout_constraintTop_toTopOf 0x7f03029e +int attr layout_constraintVertical_bias 0x7f03029f +int attr layout_constraintVertical_chainStyle 0x7f0302a0 +int attr layout_constraintVertical_weight 0x7f0302a1 +int attr layout_constraintWidth 0x7f0302a2 +int attr layout_constraintWidth_default 0x7f0302a3 +int attr layout_constraintWidth_max 0x7f0302a4 +int attr layout_constraintWidth_min 0x7f0302a5 +int attr layout_constraintWidth_percent 0x7f0302a6 +int attr layout_dodgeInsetEdges 0x7f0302a7 +int attr layout_editor_absoluteX 0x7f0302a8 +int attr layout_editor_absoluteY 0x7f0302a9 +int attr layout_goneMarginBaseline 0x7f0302aa +int attr layout_goneMarginBottom 0x7f0302ab +int attr layout_goneMarginEnd 0x7f0302ac +int attr layout_goneMarginLeft 0x7f0302ad +int attr layout_goneMarginRight 0x7f0302ae +int attr layout_goneMarginStart 0x7f0302af +int attr layout_goneMarginTop 0x7f0302b0 +int attr layout_insetEdge 0x7f0302b1 +int attr layout_keyline 0x7f0302b2 +int attr layout_marginBaseline 0x7f0302b3 +int attr layout_optimizationLevel 0x7f0302b4 +int attr layout_scrollEffect 0x7f0302b5 +int attr layout_scrollFlags 0x7f0302b6 +int attr layout_scrollInterpolator 0x7f0302b7 +int attr layout_wrapBehaviorInParent 0x7f0302b8 +int attr liftOnScroll 0x7f0302b9 +int attr liftOnScrollColor 0x7f0302ba +int attr liftOnScrollTargetViewId 0x7f0302bb +int attr limitBoundsTo 0x7f0302bc +int attr lineHeight 0x7f0302bd +int attr lineSpacing 0x7f0302be +int attr linearProgressIndicatorStyle 0x7f0302bf +int attr listChoiceBackgroundIndicator 0x7f0302c0 +int attr listChoiceIndicatorMultipleAnimated 0x7f0302c1 +int attr listChoiceIndicatorSingleAnimated 0x7f0302c2 +int attr listDividerAlertDialog 0x7f0302c3 +int attr listItemLayout 0x7f0302c4 +int attr listLayout 0x7f0302c5 +int attr listMenuViewStyle 0x7f0302c6 +int attr listPopupWindowStyle 0x7f0302c7 +int attr listPreferredItemHeight 0x7f0302c8 +int attr listPreferredItemHeightLarge 0x7f0302c9 +int attr listPreferredItemHeightSmall 0x7f0302ca +int attr listPreferredItemPaddingEnd 0x7f0302cb +int attr listPreferredItemPaddingLeft 0x7f0302cc +int attr listPreferredItemPaddingRight 0x7f0302cd +int attr listPreferredItemPaddingStart 0x7f0302ce +int attr logo 0x7f0302cf +int attr logoAdjustViewBounds 0x7f0302d0 +int attr logoDescription 0x7f0302d1 +int attr logoScaleType 0x7f0302d2 +int attr marginHorizontal 0x7f0302d3 +int attr marginLeftSystemWindowInsets 0x7f0302d4 +int attr marginRightSystemWindowInsets 0x7f0302d5 +int attr marginTopSystemWindowInsets 0x7f0302d6 +int attr materialAlertDialogBodyTextStyle 0x7f0302d7 +int attr materialAlertDialogButtonSpacerVisibility 0x7f0302d8 +int attr materialAlertDialogTheme 0x7f0302d9 +int attr materialAlertDialogTitleIconStyle 0x7f0302da +int attr materialAlertDialogTitlePanelStyle 0x7f0302db +int attr materialAlertDialogTitleTextStyle 0x7f0302dc +int attr materialButtonOutlinedStyle 0x7f0302dd +int attr materialButtonStyle 0x7f0302de +int attr materialButtonToggleGroupStyle 0x7f0302df +int attr materialCalendarDay 0x7f0302e0 +int attr materialCalendarDayOfWeekLabel 0x7f0302e1 +int attr materialCalendarFullscreenTheme 0x7f0302e2 +int attr materialCalendarHeaderCancelButton 0x7f0302e3 +int attr materialCalendarHeaderConfirmButton 0x7f0302e4 +int attr materialCalendarHeaderDivider 0x7f0302e5 +int attr materialCalendarHeaderLayout 0x7f0302e6 +int attr materialCalendarHeaderSelection 0x7f0302e7 +int attr materialCalendarHeaderTitle 0x7f0302e8 +int attr materialCalendarHeaderToggleButton 0x7f0302e9 +int attr materialCalendarMonth 0x7f0302ea +int attr materialCalendarMonthNavigationButton 0x7f0302eb +int attr materialCalendarStyle 0x7f0302ec +int attr materialCalendarTheme 0x7f0302ed +int attr materialCalendarYearNavigationButton 0x7f0302ee +int attr materialCardViewElevatedStyle 0x7f0302ef +int attr materialCardViewFilledStyle 0x7f0302f0 +int attr materialCardViewOutlinedStyle 0x7f0302f1 +int attr materialCardViewStyle 0x7f0302f2 +int attr materialCircleRadius 0x7f0302f3 +int attr materialClockStyle 0x7f0302f4 +int attr materialDisplayDividerStyle 0x7f0302f5 +int attr materialIconButtonFilledStyle 0x7f0302f6 +int attr materialIconButtonFilledTonalStyle 0x7f0302f7 +int attr materialIconButtonOutlinedStyle 0x7f0302f8 +int attr materialIconButtonStyle 0x7f0302f9 +int attr materialSearchBarStyle 0x7f0302fa +int attr materialSearchViewPrefixStyle 0x7f0302fb +int attr materialSearchViewStyle 0x7f0302fc +int attr materialThemeOverlay 0x7f0302fd +int attr materialTimePickerStyle 0x7f0302fe +int attr materialTimePickerTheme 0x7f0302ff +int attr materialTimePickerTitleStyle 0x7f030300 +int attr maui_splash 0x7f030301 +int attr maxAcceleration 0x7f030302 +int attr maxActionInlineWidth 0x7f030303 +int attr maxButtonHeight 0x7f030304 +int attr maxCharacterCount 0x7f030305 +int attr maxHeight 0x7f030306 +int attr maxImageSize 0x7f030307 +int attr maxLines 0x7f030308 +int attr maxVelocity 0x7f030309 +int attr maxWidth 0x7f03030a +int attr measureWithLargestChild 0x7f03030b +int attr menu 0x7f03030c +int attr menuAlignmentMode 0x7f03030d +int attr menuGravity 0x7f03030e +int attr methodName 0x7f03030f +int attr mimeType 0x7f030310 +int attr minHeight 0x7f030311 +int attr minHideDelay 0x7f030312 +int attr minSeparation 0x7f030313 +int attr minTouchTargetSize 0x7f030314 +int attr minWidth 0x7f030315 +int attr mock_diagonalsColor 0x7f030316 +int attr mock_label 0x7f030317 +int attr mock_labelBackgroundColor 0x7f030318 +int attr mock_labelColor 0x7f030319 +int attr mock_showDiagonals 0x7f03031a +int attr mock_showLabel 0x7f03031b +int attr motionDebug 0x7f03031c +int attr motionDurationExtraLong1 0x7f03031d +int attr motionDurationExtraLong2 0x7f03031e +int attr motionDurationExtraLong3 0x7f03031f +int attr motionDurationExtraLong4 0x7f030320 +int attr motionDurationLong1 0x7f030321 +int attr motionDurationLong2 0x7f030322 +int attr motionDurationLong3 0x7f030323 +int attr motionDurationLong4 0x7f030324 +int attr motionDurationMedium1 0x7f030325 +int attr motionDurationMedium2 0x7f030326 +int attr motionDurationMedium3 0x7f030327 +int attr motionDurationMedium4 0x7f030328 +int attr motionDurationShort1 0x7f030329 +int attr motionDurationShort2 0x7f03032a +int attr motionDurationShort3 0x7f03032b +int attr motionDurationShort4 0x7f03032c +int attr motionEasingAccelerated 0x7f03032d +int attr motionEasingDecelerated 0x7f03032e +int attr motionEasingEmphasized 0x7f03032f +int attr motionEasingEmphasizedAccelerateInterpolator 0x7f030330 +int attr motionEasingEmphasizedDecelerateInterpolator 0x7f030331 +int attr motionEasingEmphasizedInterpolator 0x7f030332 +int attr motionEasingLinear 0x7f030333 +int attr motionEasingLinearInterpolator 0x7f030334 +int attr motionEasingStandard 0x7f030335 +int attr motionEasingStandardAccelerateInterpolator 0x7f030336 +int attr motionEasingStandardDecelerateInterpolator 0x7f030337 +int attr motionEasingStandardInterpolator 0x7f030338 +int attr motionEffect_alpha 0x7f030339 +int attr motionEffect_end 0x7f03033a +int attr motionEffect_move 0x7f03033b +int attr motionEffect_start 0x7f03033c +int attr motionEffect_strict 0x7f03033d +int attr motionEffect_translationX 0x7f03033e +int attr motionEffect_translationY 0x7f03033f +int attr motionEffect_viewTransition 0x7f030340 +int attr motionInterpolator 0x7f030341 +int attr motionPath 0x7f030342 +int attr motionPathRotate 0x7f030343 +int attr motionProgress 0x7f030344 +int attr motionStagger 0x7f030345 +int attr motionTarget 0x7f030346 +int attr motion_postLayoutCollision 0x7f030347 +int attr motion_triggerOnCollision 0x7f030348 +int attr moveWhenScrollAtTop 0x7f030349 +int attr multiChoiceItemLayout 0x7f03034a +int attr navGraph 0x7f03034b +int attr navigationContentDescription 0x7f03034c +int attr navigationIcon 0x7f03034d +int attr navigationIconTint 0x7f03034e +int attr navigationMode 0x7f03034f +int attr navigationRailStyle 0x7f030350 +int attr navigationViewStyle 0x7f030351 +int attr nestedScrollFlags 0x7f030352 +int attr nestedScrollViewStyle 0x7f030353 +int attr nestedScrollable 0x7f030354 +int attr nullable 0x7f030355 +int attr number 0x7f030356 +int attr numericModifiers 0x7f030357 +int attr offsetAlignmentMode 0x7f030358 +int attr onCross 0x7f030359 +int attr onHide 0x7f03035a +int attr onNegativeCross 0x7f03035b +int attr onPositiveCross 0x7f03035c +int attr onShow 0x7f03035d +int attr onStateTransition 0x7f03035e +int attr onTouchUp 0x7f03035f +int attr overlapAnchor 0x7f030360 +int attr overlay 0x7f030361 +int attr paddingBottomNoButtons 0x7f030362 +int attr paddingBottomSystemWindowInsets 0x7f030363 +int attr paddingEnd 0x7f030364 +int attr paddingLeftSystemWindowInsets 0x7f030365 +int attr paddingRightSystemWindowInsets 0x7f030366 +int attr paddingStart 0x7f030367 +int attr paddingTopNoTitle 0x7f030368 +int attr paddingTopSystemWindowInsets 0x7f030369 +int attr panelBackground 0x7f03036a +int attr panelMenuListTheme 0x7f03036b +int attr panelMenuListWidth 0x7f03036c +int attr passwordToggleContentDescription 0x7f03036d +int attr passwordToggleDrawable 0x7f03036e +int attr passwordToggleEnabled 0x7f03036f +int attr passwordToggleTint 0x7f030370 +int attr passwordToggleTintMode 0x7f030371 +int attr pathMotionArc 0x7f030372 +int attr path_percent 0x7f030373 +int attr percentHeight 0x7f030374 +int attr percentWidth 0x7f030375 +int attr percentX 0x7f030376 +int attr percentY 0x7f030377 +int attr perpendicularPath_percent 0x7f030378 +int attr pivotAnchor 0x7f030379 +int attr placeholderActivityName 0x7f03037a +int attr placeholderText 0x7f03037b +int attr placeholderTextAppearance 0x7f03037c +int attr placeholderTextColor 0x7f03037d +int attr placeholder_emptyVisibility 0x7f03037e +int attr polarRelativeTo 0x7f03037f +int attr popEnterAnim 0x7f030380 +int attr popExitAnim 0x7f030381 +int attr popUpTo 0x7f030382 +int attr popUpToInclusive 0x7f030383 +int attr popUpToSaveState 0x7f030384 +int attr popupMenuBackground 0x7f030385 +int attr popupMenuStyle 0x7f030386 +int attr popupTheme 0x7f030387 +int attr popupWindowStyle 0x7f030388 +int attr prefixText 0x7f030389 +int attr prefixTextAppearance 0x7f03038a +int attr prefixTextColor 0x7f03038b +int attr preserveIconSpacing 0x7f03038c +int attr pressedTranslationZ 0x7f03038d +int attr primaryActivityName 0x7f03038e +int attr progressBarPadding 0x7f03038f +int attr progressBarStyle 0x7f030390 +int attr quantizeMotionInterpolator 0x7f030391 +int attr quantizeMotionPhase 0x7f030392 +int attr quantizeMotionSteps 0x7f030393 +int attr queryBackground 0x7f030394 +int attr queryHint 0x7f030395 +int attr queryPatterns 0x7f030396 +int attr radioButtonStyle 0x7f030397 +int attr rangeFillColor 0x7f030398 +int attr ratingBarStyle 0x7f030399 +int attr ratingBarStyleIndicator 0x7f03039a +int attr ratingBarStyleSmall 0x7f03039b +int attr reactiveGuide_animateChange 0x7f03039c +int attr reactiveGuide_applyToAllConstraintSets 0x7f03039d +int attr reactiveGuide_applyToConstraintSet 0x7f03039e +int attr reactiveGuide_valueId 0x7f03039f +int attr recyclerViewStyle 0x7f0303a0 +int attr region_heightLessThan 0x7f0303a1 +int attr region_heightMoreThan 0x7f0303a2 +int attr region_widthLessThan 0x7f0303a3 +int attr region_widthMoreThan 0x7f0303a4 +int attr removeEmbeddedFabElevation 0x7f0303a5 +int attr restoreState 0x7f0303a6 +int attr reverseLayout 0x7f0303a7 +int attr rippleColor 0x7f0303a8 +int attr rotationCenterId 0x7f0303a9 +int attr round 0x7f0303aa +int attr roundPercent 0x7f0303ab +int attr route 0x7f0303ac +int attr saturation 0x7f0303ad +int attr scaleFromTextSize 0x7f0303ae +int attr scrimAnimationDuration 0x7f0303af +int attr scrimBackground 0x7f0303b0 +int attr scrimVisibleHeightTrigger 0x7f0303b1 +int attr scrollViewStyle 0x7f0303b2 +int attr searchHintIcon 0x7f0303b3 +int attr searchIcon 0x7f0303b4 +int attr searchViewStyle 0x7f0303b5 +int attr secondaryActivityAction 0x7f0303b6 +int attr secondaryActivityName 0x7f0303b7 +int attr seekBarStyle 0x7f0303b8 +int attr selectableItemBackground 0x7f0303b9 +int attr selectableItemBackgroundBorderless 0x7f0303ba +int attr selectionRequired 0x7f0303bb +int attr selectorSize 0x7f0303bc +int attr setsTag 0x7f0303bd +int attr shapeAppearance 0x7f0303be +int attr shapeAppearanceCornerExtraLarge 0x7f0303bf +int attr shapeAppearanceCornerExtraSmall 0x7f0303c0 +int attr shapeAppearanceCornerLarge 0x7f0303c1 +int attr shapeAppearanceCornerMedium 0x7f0303c2 +int attr shapeAppearanceCornerSmall 0x7f0303c3 +int attr shapeAppearanceLargeComponent 0x7f0303c4 +int attr shapeAppearanceMediumComponent 0x7f0303c5 +int attr shapeAppearanceOverlay 0x7f0303c6 +int attr shapeAppearanceSmallComponent 0x7f0303c7 +int attr shapeCornerFamily 0x7f0303c8 +int attr shortcutMatchRequired 0x7f0303c9 +int attr shouldRemoveExpandedCorners 0x7f0303ca +int attr showAnimationBehavior 0x7f0303cb +int attr showAsAction 0x7f0303cc +int attr showDelay 0x7f0303cd +int attr showDividers 0x7f0303ce +int attr showMotionSpec 0x7f0303cf +int attr showPaths 0x7f0303d0 +int attr showText 0x7f0303d1 +int attr showTitle 0x7f0303d2 +int attr shrinkMotionSpec 0x7f0303d3 +int attr sideSheetDialogTheme 0x7f0303d4 +int attr sideSheetModalStyle 0x7f0303d5 +int attr simpleItemLayout 0x7f0303d6 +int attr simpleItemSelectedColor 0x7f0303d7 +int attr simpleItemSelectedRippleColor 0x7f0303d8 +int attr simpleItems 0x7f0303d9 +int attr singleChoiceItemLayout 0x7f0303da +int attr singleLine 0x7f0303db +int attr singleSelection 0x7f0303dc +int attr sizePercent 0x7f0303dd +int attr sliderStyle 0x7f0303de +int attr snackbarButtonStyle 0x7f0303df +int attr snackbarStyle 0x7f0303e0 +int attr snackbarTextViewStyle 0x7f0303e1 +int attr spanCount 0x7f0303e2 +int attr spinBars 0x7f0303e3 +int attr spinnerDropDownItemStyle 0x7f0303e4 +int attr spinnerStyle 0x7f0303e5 +int attr splitLayoutDirection 0x7f0303e6 +int attr splitMaxAspectRatioInLandscape 0x7f0303e7 +int attr splitMaxAspectRatioInPortrait 0x7f0303e8 +int attr splitMinHeightDp 0x7f0303e9 +int attr splitMinSmallestWidthDp 0x7f0303ea +int attr splitMinWidthDp 0x7f0303eb +int attr splitRatio 0x7f0303ec +int attr splitTrack 0x7f0303ed +int attr springBoundary 0x7f0303ee +int attr springDamping 0x7f0303ef +int attr springMass 0x7f0303f0 +int attr springStiffness 0x7f0303f1 +int attr springStopThreshold 0x7f0303f2 +int attr srcCompat 0x7f0303f3 +int attr stackFromEnd 0x7f0303f4 +int attr staggered 0x7f0303f5 +int attr startDestination 0x7f0303f6 +int attr startIconCheckable 0x7f0303f7 +int attr startIconContentDescription 0x7f0303f8 +int attr startIconDrawable 0x7f0303f9 +int attr startIconMinSize 0x7f0303fa +int attr startIconScaleType 0x7f0303fb +int attr startIconTint 0x7f0303fc +int attr startIconTintMode 0x7f0303fd +int attr state_above_anchor 0x7f0303fe +int attr state_collapsed 0x7f0303ff +int attr state_collapsible 0x7f030400 +int attr state_dragged 0x7f030401 +int attr state_error 0x7f030402 +int attr state_indeterminate 0x7f030403 +int attr state_liftable 0x7f030404 +int attr state_lifted 0x7f030405 +int attr state_with_icon 0x7f030406 +int attr statusBarBackground 0x7f030407 +int attr statusBarForeground 0x7f030408 +int attr statusBarScrim 0x7f030409 +int attr stickyPlaceholder 0x7f03040a +int attr strokeColor 0x7f03040b +int attr strokeWidth 0x7f03040c +int attr subMenuArrow 0x7f03040d +int attr subheaderColor 0x7f03040e +int attr subheaderInsetEnd 0x7f03040f +int attr subheaderInsetStart 0x7f030410 +int attr subheaderTextAppearance 0x7f030411 +int attr submitBackground 0x7f030412 +int attr subtitle 0x7f030413 +int attr subtitleCentered 0x7f030414 +int attr subtitleTextAppearance 0x7f030415 +int attr subtitleTextColor 0x7f030416 +int attr subtitleTextStyle 0x7f030417 +int attr suffixText 0x7f030418 +int attr suffixTextAppearance 0x7f030419 +int attr suffixTextColor 0x7f03041a +int attr suggestionRowLayout 0x7f03041b +int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f03041c +int attr switchMinWidth 0x7f03041d +int attr switchPadding 0x7f03041e +int attr switchStyle 0x7f03041f +int attr switchTextAppearance 0x7f030420 +int attr tabBackground 0x7f030421 +int attr tabContentStart 0x7f030422 +int attr tabGravity 0x7f030423 +int attr tabIconTint 0x7f030424 +int attr tabIconTintMode 0x7f030425 +int attr tabIndicator 0x7f030426 +int attr tabIndicatorAnimationDuration 0x7f030427 +int attr tabIndicatorAnimationMode 0x7f030428 +int attr tabIndicatorColor 0x7f030429 +int attr tabIndicatorFullWidth 0x7f03042a +int attr tabIndicatorGravity 0x7f03042b +int attr tabIndicatorHeight 0x7f03042c +int attr tabInlineLabel 0x7f03042d +int attr tabMaxWidth 0x7f03042e +int attr tabMinWidth 0x7f03042f +int attr tabMode 0x7f030430 +int attr tabPadding 0x7f030431 +int attr tabPaddingBottom 0x7f030432 +int attr tabPaddingEnd 0x7f030433 +int attr tabPaddingStart 0x7f030434 +int attr tabPaddingTop 0x7f030435 +int attr tabRippleColor 0x7f030436 +int attr tabSecondaryStyle 0x7f030437 +int attr tabSelectedTextAppearance 0x7f030438 +int attr tabSelectedTextColor 0x7f030439 +int attr tabStyle 0x7f03043a +int attr tabTextAppearance 0x7f03043b +int attr tabTextColor 0x7f03043c +int attr tabUnboundedRipple 0x7f03043d +int attr tag 0x7f03043e +int attr targetId 0x7f03043f +int attr targetPackage 0x7f030440 +int attr telltales_tailColor 0x7f030441 +int attr telltales_tailScale 0x7f030442 +int attr telltales_velocityMode 0x7f030443 +int attr textAllCaps 0x7f030444 +int attr textAppearanceBody1 0x7f030445 +int attr textAppearanceBody2 0x7f030446 +int attr textAppearanceBodyLarge 0x7f030447 +int attr textAppearanceBodyMedium 0x7f030448 +int attr textAppearanceBodySmall 0x7f030449 +int attr textAppearanceButton 0x7f03044a +int attr textAppearanceCaption 0x7f03044b +int attr textAppearanceDisplayLarge 0x7f03044c +int attr textAppearanceDisplayMedium 0x7f03044d +int attr textAppearanceDisplaySmall 0x7f03044e +int attr textAppearanceHeadline1 0x7f03044f +int attr textAppearanceHeadline2 0x7f030450 +int attr textAppearanceHeadline3 0x7f030451 +int attr textAppearanceHeadline4 0x7f030452 +int attr textAppearanceHeadline5 0x7f030453 +int attr textAppearanceHeadline6 0x7f030454 +int attr textAppearanceHeadlineLarge 0x7f030455 +int attr textAppearanceHeadlineMedium 0x7f030456 +int attr textAppearanceHeadlineSmall 0x7f030457 +int attr textAppearanceLabelLarge 0x7f030458 +int attr textAppearanceLabelMedium 0x7f030459 +int attr textAppearanceLabelSmall 0x7f03045a +int attr textAppearanceLargePopupMenu 0x7f03045b +int attr textAppearanceLineHeightEnabled 0x7f03045c +int attr textAppearanceListItem 0x7f03045d +int attr textAppearanceListItemSecondary 0x7f03045e +int attr textAppearanceListItemSmall 0x7f03045f +int attr textAppearanceOverline 0x7f030460 +int attr textAppearancePopupMenuHeader 0x7f030461 +int attr textAppearanceSearchResultSubtitle 0x7f030462 +int attr textAppearanceSearchResultTitle 0x7f030463 +int attr textAppearanceSmallPopupMenu 0x7f030464 +int attr textAppearanceSubtitle1 0x7f030465 +int attr textAppearanceSubtitle2 0x7f030466 +int attr textAppearanceTitleLarge 0x7f030467 +int attr textAppearanceTitleMedium 0x7f030468 +int attr textAppearanceTitleSmall 0x7f030469 +int attr textBackground 0x7f03046a +int attr textBackgroundPanX 0x7f03046b +int attr textBackgroundPanY 0x7f03046c +int attr textBackgroundRotate 0x7f03046d +int attr textBackgroundZoom 0x7f03046e +int attr textColorAlertDialogListItem 0x7f03046f +int attr textColorSearchUrl 0x7f030470 +int attr textEndPadding 0x7f030471 +int attr textFillColor 0x7f030472 +int attr textInputFilledDenseStyle 0x7f030473 +int attr textInputFilledExposedDropdownMenuStyle 0x7f030474 +int attr textInputFilledStyle 0x7f030475 +int attr textInputLayoutFocusedRectEnabled 0x7f030476 +int attr textInputOutlinedDenseStyle 0x7f030477 +int attr textInputOutlinedExposedDropdownMenuStyle 0x7f030478 +int attr textInputOutlinedStyle 0x7f030479 +int attr textInputStyle 0x7f03047a +int attr textLocale 0x7f03047b +int attr textOutlineColor 0x7f03047c +int attr textOutlineThickness 0x7f03047d +int attr textPanX 0x7f03047e +int attr textPanY 0x7f03047f +int attr textStartPadding 0x7f030480 +int attr textureBlurFactor 0x7f030481 +int attr textureEffect 0x7f030482 +int attr textureHeight 0x7f030483 +int attr textureWidth 0x7f030484 +int attr theme 0x7f030485 +int attr thickness 0x7f030486 +int attr thumbColor 0x7f030487 +int attr thumbElevation 0x7f030488 +int attr thumbIcon 0x7f030489 +int attr thumbIconTint 0x7f03048a +int attr thumbIconTintMode 0x7f03048b +int attr thumbRadius 0x7f03048c +int attr thumbStrokeColor 0x7f03048d +int attr thumbStrokeWidth 0x7f03048e +int attr thumbTextPadding 0x7f03048f +int attr thumbTint 0x7f030490 +int attr thumbTintMode 0x7f030491 +int attr tickColor 0x7f030492 +int attr tickColorActive 0x7f030493 +int attr tickColorInactive 0x7f030494 +int attr tickMark 0x7f030495 +int attr tickMarkTint 0x7f030496 +int attr tickMarkTintMode 0x7f030497 +int attr tickRadiusActive 0x7f030498 +int attr tickRadiusInactive 0x7f030499 +int attr tickVisible 0x7f03049a +int attr tint 0x7f03049b +int attr tintMode 0x7f03049c +int attr tintNavigationIcon 0x7f03049d +int attr title 0x7f03049e +int attr titleCentered 0x7f03049f +int attr titleCollapseMode 0x7f0304a0 +int attr titleEnabled 0x7f0304a1 +int attr titleMargin 0x7f0304a2 +int attr titleMarginBottom 0x7f0304a3 +int attr titleMarginEnd 0x7f0304a4 +int attr titleMarginStart 0x7f0304a5 +int attr titleMarginTop 0x7f0304a6 +int attr titleMargins 0x7f0304a7 +int attr titlePositionInterpolator 0x7f0304a8 +int attr titleTextAppearance 0x7f0304a9 +int attr titleTextColor 0x7f0304aa +int attr titleTextEllipsize 0x7f0304ab +int attr titleTextStyle 0x7f0304ac +int attr toggleCheckedStateOnClick 0x7f0304ad +int attr toolbarId 0x7f0304ae +int attr toolbarNavigationButtonStyle 0x7f0304af +int attr toolbarStyle 0x7f0304b0 +int attr toolbarSurfaceStyle 0x7f0304b1 +int attr tooltipForegroundColor 0x7f0304b2 +int attr tooltipFrameBackground 0x7f0304b3 +int attr tooltipStyle 0x7f0304b4 +int attr tooltipText 0x7f0304b5 +int attr topInsetScrimEnabled 0x7f0304b6 +int attr touchAnchorId 0x7f0304b7 +int attr touchAnchorSide 0x7f0304b8 +int attr touchRegionId 0x7f0304b9 +int attr track 0x7f0304ba +int attr trackColor 0x7f0304bb +int attr trackColorActive 0x7f0304bc +int attr trackColorInactive 0x7f0304bd +int attr trackCornerRadius 0x7f0304be +int attr trackDecoration 0x7f0304bf +int attr trackDecorationTint 0x7f0304c0 +int attr trackDecorationTintMode 0x7f0304c1 +int attr trackHeight 0x7f0304c2 +int attr trackThickness 0x7f0304c3 +int attr trackTint 0x7f0304c4 +int attr trackTintMode 0x7f0304c5 +int attr transformPivotTarget 0x7f0304c6 +int attr transitionDisable 0x7f0304c7 +int attr transitionEasing 0x7f0304c8 +int attr transitionFlags 0x7f0304c9 +int attr transitionPathRotate 0x7f0304ca +int attr transitionShapeAppearance 0x7f0304cb +int attr triggerId 0x7f0304cc +int attr triggerReceiver 0x7f0304cd +int attr triggerSlack 0x7f0304ce +int attr ttcIndex 0x7f0304cf +int attr upDuration 0x7f0304d0 +int attr uri 0x7f0304d1 +int attr useCompatPadding 0x7f0304d2 +int attr useMaterialThemeColors 0x7f0304d3 +int attr values 0x7f0304d4 +int attr verticalOffset 0x7f0304d5 +int attr verticalOffsetWithText 0x7f0304d6 +int attr viewInflaterClass 0x7f0304d7 +int attr viewTransitionMode 0x7f0304d8 +int attr viewTransitionOnCross 0x7f0304d9 +int attr viewTransitionOnNegativeCross 0x7f0304da +int attr viewTransitionOnPositiveCross 0x7f0304db +int attr visibilityMode 0x7f0304dc +int attr voiceIcon 0x7f0304dd +int attr warmth 0x7f0304de +int attr waveDecay 0x7f0304df +int attr waveOffset 0x7f0304e0 +int attr wavePeriod 0x7f0304e1 +int attr wavePhase 0x7f0304e2 +int attr waveShape 0x7f0304e3 +int attr waveVariesBy 0x7f0304e4 +int attr windowActionBar 0x7f0304e5 +int attr windowActionBarOverlay 0x7f0304e6 +int attr windowActionModeOverlay 0x7f0304e7 +int attr windowFixedHeightMajor 0x7f0304e8 +int attr windowFixedHeightMinor 0x7f0304e9 +int attr windowFixedWidthMajor 0x7f0304ea +int attr windowFixedWidthMinor 0x7f0304eb +int attr windowMinWidthMajor 0x7f0304ec +int attr windowMinWidthMinor 0x7f0304ed +int attr windowNoTitle 0x7f0304ee +int attr yearSelectedStyle 0x7f0304ef +int attr yearStyle 0x7f0304f0 +int attr yearTodayStyle 0x7f0304f1 +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_config_actionMenuItemAllCaps 0x7f040001 +int bool mtrl_btn_textappearance_all_caps 0x7f040002 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_decor_view_status_guard 0x7f050005 +int color abc_decor_view_status_guard_light 0x7f050006 +int color abc_hint_foreground_material_dark 0x7f050007 +int color abc_hint_foreground_material_light 0x7f050008 +int color abc_primary_text_disable_only_material_dark 0x7f050009 +int color abc_primary_text_disable_only_material_light 0x7f05000a +int color abc_primary_text_material_dark 0x7f05000b +int color abc_primary_text_material_light 0x7f05000c +int color abc_search_url_text 0x7f05000d +int color abc_search_url_text_normal 0x7f05000e +int color abc_search_url_text_pressed 0x7f05000f +int color abc_search_url_text_selected 0x7f050010 +int color abc_secondary_text_material_dark 0x7f050011 +int color abc_secondary_text_material_light 0x7f050012 +int color abc_tint_btn_checkable 0x7f050013 +int color abc_tint_default 0x7f050014 +int color abc_tint_edittext 0x7f050015 +int color abc_tint_seek_thumb 0x7f050016 +int color abc_tint_spinner 0x7f050017 +int color abc_tint_switch_track 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color androidx_core_ripple_material_light 0x7f05001b +int color androidx_core_secondary_text_default_material_light 0x7f05001c +int color background_floating_material_dark 0x7f05001d +int color background_floating_material_light 0x7f05001e +int color background_material_dark 0x7f05001f +int color background_material_light 0x7f050020 +int color bright_foreground_disabled_material_dark 0x7f050021 +int color bright_foreground_disabled_material_light 0x7f050022 +int color bright_foreground_inverse_material_dark 0x7f050023 +int color bright_foreground_inverse_material_light 0x7f050024 +int color bright_foreground_material_dark 0x7f050025 +int color bright_foreground_material_light 0x7f050026 +int color browser_actions_bg_grey 0x7f050027 +int color browser_actions_divider_color 0x7f050028 +int color browser_actions_text_color 0x7f050029 +int color browser_actions_title_color 0x7f05002a +int color button_material_dark 0x7f05002b +int color button_material_light 0x7f05002c +int color call_notification_answer_color 0x7f05002d +int color call_notification_decline_color 0x7f05002e +int color cardview_dark_background 0x7f05002f +int color cardview_light_background 0x7f050030 +int color cardview_shadow_end_color 0x7f050031 +int color cardview_shadow_start_color 0x7f050032 +int color colorAccent 0x7f050033 +int color colorActionMenuTextColor 0x7f050034 +int color colorPrimary 0x7f050035 +int color colorPrimaryDark 0x7f050036 +int color design_bottom_navigation_shadow_color 0x7f050037 +int color design_box_stroke_color 0x7f050038 +int color design_dark_default_color_background 0x7f050039 +int color design_dark_default_color_error 0x7f05003a +int color design_dark_default_color_on_background 0x7f05003b +int color design_dark_default_color_on_error 0x7f05003c +int color design_dark_default_color_on_primary 0x7f05003d +int color design_dark_default_color_on_secondary 0x7f05003e +int color design_dark_default_color_on_surface 0x7f05003f +int color design_dark_default_color_primary 0x7f050040 +int color design_dark_default_color_primary_dark 0x7f050041 +int color design_dark_default_color_primary_variant 0x7f050042 +int color design_dark_default_color_secondary 0x7f050043 +int color design_dark_default_color_secondary_variant 0x7f050044 +int color design_dark_default_color_surface 0x7f050045 +int color design_default_color_background 0x7f050046 +int color design_default_color_error 0x7f050047 +int color design_default_color_on_background 0x7f050048 +int color design_default_color_on_error 0x7f050049 +int color design_default_color_on_primary 0x7f05004a +int color design_default_color_on_secondary 0x7f05004b +int color design_default_color_on_surface 0x7f05004c +int color design_default_color_primary 0x7f05004d +int color design_default_color_primary_dark 0x7f05004e +int color design_default_color_primary_variant 0x7f05004f +int color design_default_color_secondary 0x7f050050 +int color design_default_color_secondary_variant 0x7f050051 +int color design_default_color_surface 0x7f050052 +int color design_error 0x7f050053 +int color design_fab_shadow_end_color 0x7f050054 +int color design_fab_shadow_mid_color 0x7f050055 +int color design_fab_shadow_start_color 0x7f050056 +int color design_fab_stroke_end_inner_color 0x7f050057 +int color design_fab_stroke_end_outer_color 0x7f050058 +int color design_fab_stroke_top_inner_color 0x7f050059 +int color design_fab_stroke_top_outer_color 0x7f05005a +int color design_icon_tint 0x7f05005b +int color design_snackbar_background_color 0x7f05005c +int color dim_foreground_disabled_material_dark 0x7f05005d +int color dim_foreground_disabled_material_light 0x7f05005e +int color dim_foreground_material_dark 0x7f05005f +int color dim_foreground_material_light 0x7f050060 +int color error_color_material_dark 0x7f050061 +int color error_color_material_light 0x7f050062 +int color foreground_material_dark 0x7f050063 +int color foreground_material_light 0x7f050064 +int color highlighted_text_material_dark 0x7f050065 +int color highlighted_text_material_light 0x7f050066 +int color m3_appbar_overlay_color 0x7f050067 +int color m3_assist_chip_icon_tint_color 0x7f050068 +int color m3_assist_chip_stroke_color 0x7f050069 +int color m3_button_background_color_selector 0x7f05006a +int color m3_button_foreground_color_selector 0x7f05006b +int color m3_button_outline_color_selector 0x7f05006c +int color m3_button_ripple_color 0x7f05006d +int color m3_button_ripple_color_selector 0x7f05006e +int color m3_calendar_item_disabled_text 0x7f05006f +int color m3_calendar_item_stroke_color 0x7f050070 +int color m3_card_foreground_color 0x7f050071 +int color m3_card_ripple_color 0x7f050072 +int color m3_card_stroke_color 0x7f050073 +int color m3_checkbox_button_icon_tint 0x7f050074 +int color m3_checkbox_button_tint 0x7f050075 +int color m3_chip_assist_text_color 0x7f050076 +int color m3_chip_background_color 0x7f050077 +int color m3_chip_ripple_color 0x7f050078 +int color m3_chip_stroke_color 0x7f050079 +int color m3_chip_text_color 0x7f05007a +int color m3_dark_default_color_primary_text 0x7f05007b +int color m3_dark_default_color_secondary_text 0x7f05007c +int color m3_dark_highlighted_text 0x7f05007d +int color m3_dark_hint_foreground 0x7f05007e +int color m3_dark_primary_text_disable_only 0x7f05007f +int color m3_default_color_primary_text 0x7f050080 +int color m3_default_color_secondary_text 0x7f050081 +int color m3_dynamic_dark_default_color_primary_text 0x7f050082 +int color m3_dynamic_dark_default_color_secondary_text 0x7f050083 +int color m3_dynamic_dark_highlighted_text 0x7f050084 +int color m3_dynamic_dark_hint_foreground 0x7f050085 +int color m3_dynamic_dark_primary_text_disable_only 0x7f050086 +int color m3_dynamic_default_color_primary_text 0x7f050087 +int color m3_dynamic_default_color_secondary_text 0x7f050088 +int color m3_dynamic_highlighted_text 0x7f050089 +int color m3_dynamic_hint_foreground 0x7f05008a +int color m3_dynamic_primary_text_disable_only 0x7f05008b +int color m3_efab_ripple_color_selector 0x7f05008c +int color m3_elevated_chip_background_color 0x7f05008d +int color m3_fab_efab_background_color_selector 0x7f05008e +int color m3_fab_efab_foreground_color_selector 0x7f05008f +int color m3_fab_ripple_color_selector 0x7f050090 +int color m3_filled_icon_button_container_color_selector 0x7f050091 +int color m3_highlighted_text 0x7f050092 +int color m3_hint_foreground 0x7f050093 +int color m3_icon_button_icon_color_selector 0x7f050094 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x7f050095 +int color m3_navigation_bar_item_with_indicator_label_tint 0x7f050096 +int color m3_navigation_bar_ripple_color_selector 0x7f050097 +int color m3_navigation_item_background_color 0x7f050098 +int color m3_navigation_item_icon_tint 0x7f050099 +int color m3_navigation_item_ripple_color 0x7f05009a +int color m3_navigation_item_text_color 0x7f05009b +int color m3_navigation_rail_item_with_indicator_icon_tint 0x7f05009c +int color m3_navigation_rail_item_with_indicator_label_tint 0x7f05009d +int color m3_navigation_rail_ripple_color_selector 0x7f05009e +int color m3_popupmenu_overlay_color 0x7f05009f +int color m3_primary_text_disable_only 0x7f0500a0 +int color m3_radiobutton_button_tint 0x7f0500a1 +int color m3_radiobutton_ripple_tint 0x7f0500a2 +int color m3_ref_palette_black 0x7f0500a3 +int color m3_ref_palette_dynamic_neutral0 0x7f0500a4 +int color m3_ref_palette_dynamic_neutral10 0x7f0500a5 +int color m3_ref_palette_dynamic_neutral100 0x7f0500a6 +int color m3_ref_palette_dynamic_neutral12 0x7f0500a7 +int color m3_ref_palette_dynamic_neutral17 0x7f0500a8 +int color m3_ref_palette_dynamic_neutral20 0x7f0500a9 +int color m3_ref_palette_dynamic_neutral22 0x7f0500aa +int color m3_ref_palette_dynamic_neutral24 0x7f0500ab +int color m3_ref_palette_dynamic_neutral30 0x7f0500ac +int color m3_ref_palette_dynamic_neutral4 0x7f0500ad +int color m3_ref_palette_dynamic_neutral40 0x7f0500ae +int color m3_ref_palette_dynamic_neutral50 0x7f0500af +int color m3_ref_palette_dynamic_neutral6 0x7f0500b0 +int color m3_ref_palette_dynamic_neutral60 0x7f0500b1 +int color m3_ref_palette_dynamic_neutral70 0x7f0500b2 +int color m3_ref_palette_dynamic_neutral80 0x7f0500b3 +int color m3_ref_palette_dynamic_neutral87 0x7f0500b4 +int color m3_ref_palette_dynamic_neutral90 0x7f0500b5 +int color m3_ref_palette_dynamic_neutral92 0x7f0500b6 +int color m3_ref_palette_dynamic_neutral94 0x7f0500b7 +int color m3_ref_palette_dynamic_neutral95 0x7f0500b8 +int color m3_ref_palette_dynamic_neutral96 0x7f0500b9 +int color m3_ref_palette_dynamic_neutral98 0x7f0500ba +int color m3_ref_palette_dynamic_neutral99 0x7f0500bb +int color m3_ref_palette_dynamic_neutral_variant0 0x7f0500bc +int color m3_ref_palette_dynamic_neutral_variant10 0x7f0500bd +int color m3_ref_palette_dynamic_neutral_variant100 0x7f0500be +int color m3_ref_palette_dynamic_neutral_variant20 0x7f0500bf +int color m3_ref_palette_dynamic_neutral_variant30 0x7f0500c0 +int color m3_ref_palette_dynamic_neutral_variant40 0x7f0500c1 +int color m3_ref_palette_dynamic_neutral_variant50 0x7f0500c2 +int color m3_ref_palette_dynamic_neutral_variant60 0x7f0500c3 +int color m3_ref_palette_dynamic_neutral_variant70 0x7f0500c4 +int color m3_ref_palette_dynamic_neutral_variant80 0x7f0500c5 +int color m3_ref_palette_dynamic_neutral_variant90 0x7f0500c6 +int color m3_ref_palette_dynamic_neutral_variant95 0x7f0500c7 +int color m3_ref_palette_dynamic_neutral_variant99 0x7f0500c8 +int color m3_ref_palette_dynamic_primary0 0x7f0500c9 +int color m3_ref_palette_dynamic_primary10 0x7f0500ca +int color m3_ref_palette_dynamic_primary100 0x7f0500cb +int color m3_ref_palette_dynamic_primary20 0x7f0500cc +int color m3_ref_palette_dynamic_primary30 0x7f0500cd +int color m3_ref_palette_dynamic_primary40 0x7f0500ce +int color m3_ref_palette_dynamic_primary50 0x7f0500cf +int color m3_ref_palette_dynamic_primary60 0x7f0500d0 +int color m3_ref_palette_dynamic_primary70 0x7f0500d1 +int color m3_ref_palette_dynamic_primary80 0x7f0500d2 +int color m3_ref_palette_dynamic_primary90 0x7f0500d3 +int color m3_ref_palette_dynamic_primary95 0x7f0500d4 +int color m3_ref_palette_dynamic_primary99 0x7f0500d5 +int color m3_ref_palette_dynamic_secondary0 0x7f0500d6 +int color m3_ref_palette_dynamic_secondary10 0x7f0500d7 +int color m3_ref_palette_dynamic_secondary100 0x7f0500d8 +int color m3_ref_palette_dynamic_secondary20 0x7f0500d9 +int color m3_ref_palette_dynamic_secondary30 0x7f0500da +int color m3_ref_palette_dynamic_secondary40 0x7f0500db +int color m3_ref_palette_dynamic_secondary50 0x7f0500dc +int color m3_ref_palette_dynamic_secondary60 0x7f0500dd +int color m3_ref_palette_dynamic_secondary70 0x7f0500de +int color m3_ref_palette_dynamic_secondary80 0x7f0500df +int color m3_ref_palette_dynamic_secondary90 0x7f0500e0 +int color m3_ref_palette_dynamic_secondary95 0x7f0500e1 +int color m3_ref_palette_dynamic_secondary99 0x7f0500e2 +int color m3_ref_palette_dynamic_tertiary0 0x7f0500e3 +int color m3_ref_palette_dynamic_tertiary10 0x7f0500e4 +int color m3_ref_palette_dynamic_tertiary100 0x7f0500e5 +int color m3_ref_palette_dynamic_tertiary20 0x7f0500e6 +int color m3_ref_palette_dynamic_tertiary30 0x7f0500e7 +int color m3_ref_palette_dynamic_tertiary40 0x7f0500e8 +int color m3_ref_palette_dynamic_tertiary50 0x7f0500e9 +int color m3_ref_palette_dynamic_tertiary60 0x7f0500ea +int color m3_ref_palette_dynamic_tertiary70 0x7f0500eb +int color m3_ref_palette_dynamic_tertiary80 0x7f0500ec +int color m3_ref_palette_dynamic_tertiary90 0x7f0500ed +int color m3_ref_palette_dynamic_tertiary95 0x7f0500ee +int color m3_ref_palette_dynamic_tertiary99 0x7f0500ef +int color m3_ref_palette_error0 0x7f0500f0 +int color m3_ref_palette_error10 0x7f0500f1 +int color m3_ref_palette_error100 0x7f0500f2 +int color m3_ref_palette_error20 0x7f0500f3 +int color m3_ref_palette_error30 0x7f0500f4 +int color m3_ref_palette_error40 0x7f0500f5 +int color m3_ref_palette_error50 0x7f0500f6 +int color m3_ref_palette_error60 0x7f0500f7 +int color m3_ref_palette_error70 0x7f0500f8 +int color m3_ref_palette_error80 0x7f0500f9 +int color m3_ref_palette_error90 0x7f0500fa +int color m3_ref_palette_error95 0x7f0500fb +int color m3_ref_palette_error99 0x7f0500fc +int color m3_ref_palette_neutral0 0x7f0500fd +int color m3_ref_palette_neutral10 0x7f0500fe +int color m3_ref_palette_neutral100 0x7f0500ff +int color m3_ref_palette_neutral12 0x7f050100 +int color m3_ref_palette_neutral17 0x7f050101 +int color m3_ref_palette_neutral20 0x7f050102 +int color m3_ref_palette_neutral22 0x7f050103 +int color m3_ref_palette_neutral24 0x7f050104 +int color m3_ref_palette_neutral30 0x7f050105 +int color m3_ref_palette_neutral4 0x7f050106 +int color m3_ref_palette_neutral40 0x7f050107 +int color m3_ref_palette_neutral50 0x7f050108 +int color m3_ref_palette_neutral6 0x7f050109 +int color m3_ref_palette_neutral60 0x7f05010a +int color m3_ref_palette_neutral70 0x7f05010b +int color m3_ref_palette_neutral80 0x7f05010c +int color m3_ref_palette_neutral87 0x7f05010d +int color m3_ref_palette_neutral90 0x7f05010e +int color m3_ref_palette_neutral92 0x7f05010f +int color m3_ref_palette_neutral94 0x7f050110 +int color m3_ref_palette_neutral95 0x7f050111 +int color m3_ref_palette_neutral96 0x7f050112 +int color m3_ref_palette_neutral98 0x7f050113 +int color m3_ref_palette_neutral99 0x7f050114 +int color m3_ref_palette_neutral_variant0 0x7f050115 +int color m3_ref_palette_neutral_variant10 0x7f050116 +int color m3_ref_palette_neutral_variant100 0x7f050117 +int color m3_ref_palette_neutral_variant20 0x7f050118 +int color m3_ref_palette_neutral_variant30 0x7f050119 +int color m3_ref_palette_neutral_variant40 0x7f05011a +int color m3_ref_palette_neutral_variant50 0x7f05011b +int color m3_ref_palette_neutral_variant60 0x7f05011c +int color m3_ref_palette_neutral_variant70 0x7f05011d +int color m3_ref_palette_neutral_variant80 0x7f05011e +int color m3_ref_palette_neutral_variant90 0x7f05011f +int color m3_ref_palette_neutral_variant95 0x7f050120 +int color m3_ref_palette_neutral_variant99 0x7f050121 +int color m3_ref_palette_primary0 0x7f050122 +int color m3_ref_palette_primary10 0x7f050123 +int color m3_ref_palette_primary100 0x7f050124 +int color m3_ref_palette_primary20 0x7f050125 +int color m3_ref_palette_primary30 0x7f050126 +int color m3_ref_palette_primary40 0x7f050127 +int color m3_ref_palette_primary50 0x7f050128 +int color m3_ref_palette_primary60 0x7f050129 +int color m3_ref_palette_primary70 0x7f05012a +int color m3_ref_palette_primary80 0x7f05012b +int color m3_ref_palette_primary90 0x7f05012c +int color m3_ref_palette_primary95 0x7f05012d +int color m3_ref_palette_primary99 0x7f05012e +int color m3_ref_palette_secondary0 0x7f05012f +int color m3_ref_palette_secondary10 0x7f050130 +int color m3_ref_palette_secondary100 0x7f050131 +int color m3_ref_palette_secondary20 0x7f050132 +int color m3_ref_palette_secondary30 0x7f050133 +int color m3_ref_palette_secondary40 0x7f050134 +int color m3_ref_palette_secondary50 0x7f050135 +int color m3_ref_palette_secondary60 0x7f050136 +int color m3_ref_palette_secondary70 0x7f050137 +int color m3_ref_palette_secondary80 0x7f050138 +int color m3_ref_palette_secondary90 0x7f050139 +int color m3_ref_palette_secondary95 0x7f05013a +int color m3_ref_palette_secondary99 0x7f05013b +int color m3_ref_palette_tertiary0 0x7f05013c +int color m3_ref_palette_tertiary10 0x7f05013d +int color m3_ref_palette_tertiary100 0x7f05013e +int color m3_ref_palette_tertiary20 0x7f05013f +int color m3_ref_palette_tertiary30 0x7f050140 +int color m3_ref_palette_tertiary40 0x7f050141 +int color m3_ref_palette_tertiary50 0x7f050142 +int color m3_ref_palette_tertiary60 0x7f050143 +int color m3_ref_palette_tertiary70 0x7f050144 +int color m3_ref_palette_tertiary80 0x7f050145 +int color m3_ref_palette_tertiary90 0x7f050146 +int color m3_ref_palette_tertiary95 0x7f050147 +int color m3_ref_palette_tertiary99 0x7f050148 +int color m3_ref_palette_white 0x7f050149 +int color m3_selection_control_ripple_color_selector 0x7f05014a +int color m3_simple_item_ripple_color 0x7f05014b +int color m3_slider_active_track_color 0x7f05014c +int color m3_slider_halo_color 0x7f05014d +int color m3_slider_inactive_track_color 0x7f05014e +int color m3_slider_thumb_color 0x7f05014f +int color m3_switch_thumb_tint 0x7f050150 +int color m3_switch_track_tint 0x7f050151 +int color m3_sys_color_dark_background 0x7f050152 +int color m3_sys_color_dark_error 0x7f050153 +int color m3_sys_color_dark_error_container 0x7f050154 +int color m3_sys_color_dark_inverse_on_surface 0x7f050155 +int color m3_sys_color_dark_inverse_primary 0x7f050156 +int color m3_sys_color_dark_inverse_surface 0x7f050157 +int color m3_sys_color_dark_on_background 0x7f050158 +int color m3_sys_color_dark_on_error 0x7f050159 +int color m3_sys_color_dark_on_error_container 0x7f05015a +int color m3_sys_color_dark_on_primary 0x7f05015b +int color m3_sys_color_dark_on_primary_container 0x7f05015c +int color m3_sys_color_dark_on_secondary 0x7f05015d +int color m3_sys_color_dark_on_secondary_container 0x7f05015e +int color m3_sys_color_dark_on_surface 0x7f05015f +int color m3_sys_color_dark_on_surface_variant 0x7f050160 +int color m3_sys_color_dark_on_tertiary 0x7f050161 +int color m3_sys_color_dark_on_tertiary_container 0x7f050162 +int color m3_sys_color_dark_outline 0x7f050163 +int color m3_sys_color_dark_outline_variant 0x7f050164 +int color m3_sys_color_dark_primary 0x7f050165 +int color m3_sys_color_dark_primary_container 0x7f050166 +int color m3_sys_color_dark_secondary 0x7f050167 +int color m3_sys_color_dark_secondary_container 0x7f050168 +int color m3_sys_color_dark_surface 0x7f050169 +int color m3_sys_color_dark_surface_bright 0x7f05016a +int color m3_sys_color_dark_surface_container 0x7f05016b +int color m3_sys_color_dark_surface_container_high 0x7f05016c +int color m3_sys_color_dark_surface_container_highest 0x7f05016d +int color m3_sys_color_dark_surface_container_low 0x7f05016e +int color m3_sys_color_dark_surface_container_lowest 0x7f05016f +int color m3_sys_color_dark_surface_dim 0x7f050170 +int color m3_sys_color_dark_surface_variant 0x7f050171 +int color m3_sys_color_dark_tertiary 0x7f050172 +int color m3_sys_color_dark_tertiary_container 0x7f050173 +int color m3_sys_color_dynamic_dark_background 0x7f050174 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x7f050175 +int color m3_sys_color_dynamic_dark_inverse_primary 0x7f050176 +int color m3_sys_color_dynamic_dark_inverse_surface 0x7f050177 +int color m3_sys_color_dynamic_dark_on_background 0x7f050178 +int color m3_sys_color_dynamic_dark_on_primary 0x7f050179 +int color m3_sys_color_dynamic_dark_on_primary_container 0x7f05017a +int color m3_sys_color_dynamic_dark_on_secondary 0x7f05017b +int color m3_sys_color_dynamic_dark_on_secondary_container 0x7f05017c +int color m3_sys_color_dynamic_dark_on_surface 0x7f05017d +int color m3_sys_color_dynamic_dark_on_surface_variant 0x7f05017e +int color m3_sys_color_dynamic_dark_on_tertiary 0x7f05017f +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x7f050180 +int color m3_sys_color_dynamic_dark_outline 0x7f050181 +int color m3_sys_color_dynamic_dark_outline_variant 0x7f050182 +int color m3_sys_color_dynamic_dark_primary 0x7f050183 +int color m3_sys_color_dynamic_dark_primary_container 0x7f050184 +int color m3_sys_color_dynamic_dark_secondary 0x7f050185 +int color m3_sys_color_dynamic_dark_secondary_container 0x7f050186 +int color m3_sys_color_dynamic_dark_surface 0x7f050187 +int color m3_sys_color_dynamic_dark_surface_bright 0x7f050188 +int color m3_sys_color_dynamic_dark_surface_container 0x7f050189 +int color m3_sys_color_dynamic_dark_surface_container_high 0x7f05018a +int color m3_sys_color_dynamic_dark_surface_container_highest 0x7f05018b +int color m3_sys_color_dynamic_dark_surface_container_low 0x7f05018c +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x7f05018d +int color m3_sys_color_dynamic_dark_surface_dim 0x7f05018e +int color m3_sys_color_dynamic_dark_surface_variant 0x7f05018f +int color m3_sys_color_dynamic_dark_tertiary 0x7f050190 +int color m3_sys_color_dynamic_dark_tertiary_container 0x7f050191 +int color m3_sys_color_dynamic_light_background 0x7f050192 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x7f050193 +int color m3_sys_color_dynamic_light_inverse_primary 0x7f050194 +int color m3_sys_color_dynamic_light_inverse_surface 0x7f050195 +int color m3_sys_color_dynamic_light_on_background 0x7f050196 +int color m3_sys_color_dynamic_light_on_primary 0x7f050197 +int color m3_sys_color_dynamic_light_on_primary_container 0x7f050198 +int color m3_sys_color_dynamic_light_on_secondary 0x7f050199 +int color m3_sys_color_dynamic_light_on_secondary_container 0x7f05019a +int color m3_sys_color_dynamic_light_on_surface 0x7f05019b +int color m3_sys_color_dynamic_light_on_surface_variant 0x7f05019c +int color m3_sys_color_dynamic_light_on_tertiary 0x7f05019d +int color m3_sys_color_dynamic_light_on_tertiary_container 0x7f05019e +int color m3_sys_color_dynamic_light_outline 0x7f05019f +int color m3_sys_color_dynamic_light_outline_variant 0x7f0501a0 +int color m3_sys_color_dynamic_light_primary 0x7f0501a1 +int color m3_sys_color_dynamic_light_primary_container 0x7f0501a2 +int color m3_sys_color_dynamic_light_secondary 0x7f0501a3 +int color m3_sys_color_dynamic_light_secondary_container 0x7f0501a4 +int color m3_sys_color_dynamic_light_surface 0x7f0501a5 +int color m3_sys_color_dynamic_light_surface_bright 0x7f0501a6 +int color m3_sys_color_dynamic_light_surface_container 0x7f0501a7 +int color m3_sys_color_dynamic_light_surface_container_high 0x7f0501a8 +int color m3_sys_color_dynamic_light_surface_container_highest 0x7f0501a9 +int color m3_sys_color_dynamic_light_surface_container_low 0x7f0501aa +int color m3_sys_color_dynamic_light_surface_container_lowest 0x7f0501ab +int color m3_sys_color_dynamic_light_surface_dim 0x7f0501ac +int color m3_sys_color_dynamic_light_surface_variant 0x7f0501ad +int color m3_sys_color_dynamic_light_tertiary 0x7f0501ae +int color m3_sys_color_dynamic_light_tertiary_container 0x7f0501af +int color m3_sys_color_dynamic_on_primary_fixed 0x7f0501b0 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x7f0501b1 +int color m3_sys_color_dynamic_on_secondary_fixed 0x7f0501b2 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x7f0501b3 +int color m3_sys_color_dynamic_on_tertiary_fixed 0x7f0501b4 +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x7f0501b5 +int color m3_sys_color_dynamic_primary_fixed 0x7f0501b6 +int color m3_sys_color_dynamic_primary_fixed_dim 0x7f0501b7 +int color m3_sys_color_dynamic_secondary_fixed 0x7f0501b8 +int color m3_sys_color_dynamic_secondary_fixed_dim 0x7f0501b9 +int color m3_sys_color_dynamic_tertiary_fixed 0x7f0501ba +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x7f0501bb +int color m3_sys_color_light_background 0x7f0501bc +int color m3_sys_color_light_error 0x7f0501bd +int color m3_sys_color_light_error_container 0x7f0501be +int color m3_sys_color_light_inverse_on_surface 0x7f0501bf +int color m3_sys_color_light_inverse_primary 0x7f0501c0 +int color m3_sys_color_light_inverse_surface 0x7f0501c1 +int color m3_sys_color_light_on_background 0x7f0501c2 +int color m3_sys_color_light_on_error 0x7f0501c3 +int color m3_sys_color_light_on_error_container 0x7f0501c4 +int color m3_sys_color_light_on_primary 0x7f0501c5 +int color m3_sys_color_light_on_primary_container 0x7f0501c6 +int color m3_sys_color_light_on_secondary 0x7f0501c7 +int color m3_sys_color_light_on_secondary_container 0x7f0501c8 +int color m3_sys_color_light_on_surface 0x7f0501c9 +int color m3_sys_color_light_on_surface_variant 0x7f0501ca +int color m3_sys_color_light_on_tertiary 0x7f0501cb +int color m3_sys_color_light_on_tertiary_container 0x7f0501cc +int color m3_sys_color_light_outline 0x7f0501cd +int color m3_sys_color_light_outline_variant 0x7f0501ce +int color m3_sys_color_light_primary 0x7f0501cf +int color m3_sys_color_light_primary_container 0x7f0501d0 +int color m3_sys_color_light_secondary 0x7f0501d1 +int color m3_sys_color_light_secondary_container 0x7f0501d2 +int color m3_sys_color_light_surface 0x7f0501d3 +int color m3_sys_color_light_surface_bright 0x7f0501d4 +int color m3_sys_color_light_surface_container 0x7f0501d5 +int color m3_sys_color_light_surface_container_high 0x7f0501d6 +int color m3_sys_color_light_surface_container_highest 0x7f0501d7 +int color m3_sys_color_light_surface_container_low 0x7f0501d8 +int color m3_sys_color_light_surface_container_lowest 0x7f0501d9 +int color m3_sys_color_light_surface_dim 0x7f0501da +int color m3_sys_color_light_surface_variant 0x7f0501db +int color m3_sys_color_light_tertiary 0x7f0501dc +int color m3_sys_color_light_tertiary_container 0x7f0501dd +int color m3_sys_color_on_primary_fixed 0x7f0501de +int color m3_sys_color_on_primary_fixed_variant 0x7f0501df +int color m3_sys_color_on_secondary_fixed 0x7f0501e0 +int color m3_sys_color_on_secondary_fixed_variant 0x7f0501e1 +int color m3_sys_color_on_tertiary_fixed 0x7f0501e2 +int color m3_sys_color_on_tertiary_fixed_variant 0x7f0501e3 +int color m3_sys_color_primary_fixed 0x7f0501e4 +int color m3_sys_color_primary_fixed_dim 0x7f0501e5 +int color m3_sys_color_secondary_fixed 0x7f0501e6 +int color m3_sys_color_secondary_fixed_dim 0x7f0501e7 +int color m3_sys_color_tertiary_fixed 0x7f0501e8 +int color m3_sys_color_tertiary_fixed_dim 0x7f0501e9 +int color m3_tabs_icon_color 0x7f0501ea +int color m3_tabs_icon_color_secondary 0x7f0501eb +int color m3_tabs_ripple_color 0x7f0501ec +int color m3_tabs_ripple_color_secondary 0x7f0501ed +int color m3_tabs_text_color 0x7f0501ee +int color m3_tabs_text_color_secondary 0x7f0501ef +int color m3_text_button_background_color_selector 0x7f0501f0 +int color m3_text_button_foreground_color_selector 0x7f0501f1 +int color m3_text_button_ripple_color_selector 0x7f0501f2 +int color m3_textfield_filled_background_color 0x7f0501f3 +int color m3_textfield_indicator_text_color 0x7f0501f4 +int color m3_textfield_input_text_color 0x7f0501f5 +int color m3_textfield_label_color 0x7f0501f6 +int color m3_textfield_stroke_color 0x7f0501f7 +int color m3_timepicker_button_background_color 0x7f0501f8 +int color m3_timepicker_button_ripple_color 0x7f0501f9 +int color m3_timepicker_button_text_color 0x7f0501fa +int color m3_timepicker_clock_text_color 0x7f0501fb +int color m3_timepicker_display_background_color 0x7f0501fc +int color m3_timepicker_display_ripple_color 0x7f0501fd +int color m3_timepicker_display_text_color 0x7f0501fe +int color m3_timepicker_secondary_text_button_ripple_color 0x7f0501ff +int color m3_timepicker_secondary_text_button_text_color 0x7f050200 +int color m3_timepicker_time_input_stroke_color 0x7f050201 +int color m3_tonal_button_ripple_color_selector 0x7f050202 +int color material_blue_grey_800 0x7f050203 +int color material_blue_grey_900 0x7f050204 +int color material_blue_grey_950 0x7f050205 +int color material_cursor_color 0x7f050206 +int color material_deep_teal_200 0x7f050207 +int color material_deep_teal_500 0x7f050208 +int color material_divider_color 0x7f050209 +int color material_dynamic_neutral0 0x7f05020a +int color material_dynamic_neutral10 0x7f05020b +int color material_dynamic_neutral100 0x7f05020c +int color material_dynamic_neutral20 0x7f05020d +int color material_dynamic_neutral30 0x7f05020e +int color material_dynamic_neutral40 0x7f05020f +int color material_dynamic_neutral50 0x7f050210 +int color material_dynamic_neutral60 0x7f050211 +int color material_dynamic_neutral70 0x7f050212 +int color material_dynamic_neutral80 0x7f050213 +int color material_dynamic_neutral90 0x7f050214 +int color material_dynamic_neutral95 0x7f050215 +int color material_dynamic_neutral99 0x7f050216 +int color material_dynamic_neutral_variant0 0x7f050217 +int color material_dynamic_neutral_variant10 0x7f050218 +int color material_dynamic_neutral_variant100 0x7f050219 +int color material_dynamic_neutral_variant20 0x7f05021a +int color material_dynamic_neutral_variant30 0x7f05021b +int color material_dynamic_neutral_variant40 0x7f05021c +int color material_dynamic_neutral_variant50 0x7f05021d +int color material_dynamic_neutral_variant60 0x7f05021e +int color material_dynamic_neutral_variant70 0x7f05021f +int color material_dynamic_neutral_variant80 0x7f050220 +int color material_dynamic_neutral_variant90 0x7f050221 +int color material_dynamic_neutral_variant95 0x7f050222 +int color material_dynamic_neutral_variant99 0x7f050223 +int color material_dynamic_primary0 0x7f050224 +int color material_dynamic_primary10 0x7f050225 +int color material_dynamic_primary100 0x7f050226 +int color material_dynamic_primary20 0x7f050227 +int color material_dynamic_primary30 0x7f050228 +int color material_dynamic_primary40 0x7f050229 +int color material_dynamic_primary50 0x7f05022a +int color material_dynamic_primary60 0x7f05022b +int color material_dynamic_primary70 0x7f05022c +int color material_dynamic_primary80 0x7f05022d +int color material_dynamic_primary90 0x7f05022e +int color material_dynamic_primary95 0x7f05022f +int color material_dynamic_primary99 0x7f050230 +int color material_dynamic_secondary0 0x7f050231 +int color material_dynamic_secondary10 0x7f050232 +int color material_dynamic_secondary100 0x7f050233 +int color material_dynamic_secondary20 0x7f050234 +int color material_dynamic_secondary30 0x7f050235 +int color material_dynamic_secondary40 0x7f050236 +int color material_dynamic_secondary50 0x7f050237 +int color material_dynamic_secondary60 0x7f050238 +int color material_dynamic_secondary70 0x7f050239 +int color material_dynamic_secondary80 0x7f05023a +int color material_dynamic_secondary90 0x7f05023b +int color material_dynamic_secondary95 0x7f05023c +int color material_dynamic_secondary99 0x7f05023d +int color material_dynamic_tertiary0 0x7f05023e +int color material_dynamic_tertiary10 0x7f05023f +int color material_dynamic_tertiary100 0x7f050240 +int color material_dynamic_tertiary20 0x7f050241 +int color material_dynamic_tertiary30 0x7f050242 +int color material_dynamic_tertiary40 0x7f050243 +int color material_dynamic_tertiary50 0x7f050244 +int color material_dynamic_tertiary60 0x7f050245 +int color material_dynamic_tertiary70 0x7f050246 +int color material_dynamic_tertiary80 0x7f050247 +int color material_dynamic_tertiary90 0x7f050248 +int color material_dynamic_tertiary95 0x7f050249 +int color material_dynamic_tertiary99 0x7f05024a +int color material_grey_100 0x7f05024b +int color material_grey_300 0x7f05024c +int color material_grey_50 0x7f05024d +int color material_grey_600 0x7f05024e +int color material_grey_800 0x7f05024f +int color material_grey_850 0x7f050250 +int color material_grey_900 0x7f050251 +int color material_harmonized_color_error 0x7f050252 +int color material_harmonized_color_error_container 0x7f050253 +int color material_harmonized_color_on_error 0x7f050254 +int color material_harmonized_color_on_error_container 0x7f050255 +int color material_on_background_disabled 0x7f050256 +int color material_on_background_emphasis_high_type 0x7f050257 +int color material_on_background_emphasis_medium 0x7f050258 +int color material_on_primary_disabled 0x7f050259 +int color material_on_primary_emphasis_high_type 0x7f05025a +int color material_on_primary_emphasis_medium 0x7f05025b +int color material_on_surface_disabled 0x7f05025c +int color material_on_surface_emphasis_high_type 0x7f05025d +int color material_on_surface_emphasis_medium 0x7f05025e +int color material_on_surface_stroke 0x7f05025f +int color material_personalized__highlighted_text 0x7f050260 +int color material_personalized__highlighted_text_inverse 0x7f050261 +int color material_personalized_color_background 0x7f050262 +int color material_personalized_color_control_activated 0x7f050263 +int color material_personalized_color_control_highlight 0x7f050264 +int color material_personalized_color_control_normal 0x7f050265 +int color material_personalized_color_error 0x7f050266 +int color material_personalized_color_error_container 0x7f050267 +int color material_personalized_color_on_background 0x7f050268 +int color material_personalized_color_on_error 0x7f050269 +int color material_personalized_color_on_error_container 0x7f05026a +int color material_personalized_color_on_primary 0x7f05026b +int color material_personalized_color_on_primary_container 0x7f05026c +int color material_personalized_color_on_secondary 0x7f05026d +int color material_personalized_color_on_secondary_container 0x7f05026e +int color material_personalized_color_on_surface 0x7f05026f +int color material_personalized_color_on_surface_inverse 0x7f050270 +int color material_personalized_color_on_surface_variant 0x7f050271 +int color material_personalized_color_on_tertiary 0x7f050272 +int color material_personalized_color_on_tertiary_container 0x7f050273 +int color material_personalized_color_outline 0x7f050274 +int color material_personalized_color_outline_variant 0x7f050275 +int color material_personalized_color_primary 0x7f050276 +int color material_personalized_color_primary_container 0x7f050277 +int color material_personalized_color_primary_inverse 0x7f050278 +int color material_personalized_color_primary_text 0x7f050279 +int color material_personalized_color_primary_text_inverse 0x7f05027a +int color material_personalized_color_secondary 0x7f05027b +int color material_personalized_color_secondary_container 0x7f05027c +int color material_personalized_color_secondary_text 0x7f05027d +int color material_personalized_color_secondary_text_inverse 0x7f05027e +int color material_personalized_color_surface 0x7f05027f +int color material_personalized_color_surface_bright 0x7f050280 +int color material_personalized_color_surface_container 0x7f050281 +int color material_personalized_color_surface_container_high 0x7f050282 +int color material_personalized_color_surface_container_highest 0x7f050283 +int color material_personalized_color_surface_container_low 0x7f050284 +int color material_personalized_color_surface_container_lowest 0x7f050285 +int color material_personalized_color_surface_dim 0x7f050286 +int color material_personalized_color_surface_inverse 0x7f050287 +int color material_personalized_color_surface_variant 0x7f050288 +int color material_personalized_color_tertiary 0x7f050289 +int color material_personalized_color_tertiary_container 0x7f05028a +int color material_personalized_color_text_hint_foreground_inverse 0x7f05028b +int color material_personalized_color_text_primary_inverse 0x7f05028c +int color material_personalized_color_text_primary_inverse_disable_only 0x7f05028d +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x7f05028e +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x7f05028f +int color material_personalized_hint_foreground 0x7f050290 +int color material_personalized_hint_foreground_inverse 0x7f050291 +int color material_personalized_primary_inverse_text_disable_only 0x7f050292 +int color material_personalized_primary_text_disable_only 0x7f050293 +int color material_slider_active_tick_marks_color 0x7f050294 +int color material_slider_active_track_color 0x7f050295 +int color material_slider_halo_color 0x7f050296 +int color material_slider_inactive_tick_marks_color 0x7f050297 +int color material_slider_inactive_track_color 0x7f050298 +int color material_slider_thumb_color 0x7f050299 +int color material_timepicker_button_background 0x7f05029a +int color material_timepicker_button_stroke 0x7f05029b +int color material_timepicker_clock_text_color 0x7f05029c +int color material_timepicker_clockface 0x7f05029d +int color material_timepicker_modebutton_tint 0x7f05029e +int color maui_splash_color 0x7f05029f +int color mtrl_btn_bg_color_selector 0x7f0502a0 +int color mtrl_btn_ripple_color 0x7f0502a1 +int color mtrl_btn_stroke_color_selector 0x7f0502a2 +int color mtrl_btn_text_btn_bg_color_selector 0x7f0502a3 +int color mtrl_btn_text_btn_ripple_color 0x7f0502a4 +int color mtrl_btn_text_color_disabled 0x7f0502a5 +int color mtrl_btn_text_color_selector 0x7f0502a6 +int color mtrl_btn_transparent_bg_color 0x7f0502a7 +int color mtrl_calendar_item_stroke_color 0x7f0502a8 +int color mtrl_calendar_selected_range 0x7f0502a9 +int color mtrl_card_view_foreground 0x7f0502aa +int color mtrl_card_view_ripple 0x7f0502ab +int color mtrl_chip_background_color 0x7f0502ac +int color mtrl_chip_close_icon_tint 0x7f0502ad +int color mtrl_chip_surface_color 0x7f0502ae +int color mtrl_chip_text_color 0x7f0502af +int color mtrl_choice_chip_background_color 0x7f0502b0 +int color mtrl_choice_chip_ripple_color 0x7f0502b1 +int color mtrl_choice_chip_text_color 0x7f0502b2 +int color mtrl_error 0x7f0502b3 +int color mtrl_fab_bg_color_selector 0x7f0502b4 +int color mtrl_fab_icon_text_color_selector 0x7f0502b5 +int color mtrl_fab_ripple_color 0x7f0502b6 +int color mtrl_filled_background_color 0x7f0502b7 +int color mtrl_filled_icon_tint 0x7f0502b8 +int color mtrl_filled_stroke_color 0x7f0502b9 +int color mtrl_indicator_text_color 0x7f0502ba +int color mtrl_navigation_bar_colored_item_tint 0x7f0502bb +int color mtrl_navigation_bar_colored_ripple_color 0x7f0502bc +int color mtrl_navigation_bar_item_tint 0x7f0502bd +int color mtrl_navigation_bar_ripple_color 0x7f0502be +int color mtrl_navigation_item_background_color 0x7f0502bf +int color mtrl_navigation_item_icon_tint 0x7f0502c0 +int color mtrl_navigation_item_text_color 0x7f0502c1 +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0502c2 +int color mtrl_on_surface_ripple_color 0x7f0502c3 +int color mtrl_outlined_icon_tint 0x7f0502c4 +int color mtrl_outlined_stroke_color 0x7f0502c5 +int color mtrl_popupmenu_overlay_color 0x7f0502c6 +int color mtrl_scrim_color 0x7f0502c7 +int color mtrl_switch_thumb_icon_tint 0x7f0502c8 +int color mtrl_switch_thumb_tint 0x7f0502c9 +int color mtrl_switch_track_decoration_tint 0x7f0502ca +int color mtrl_switch_track_tint 0x7f0502cb +int color mtrl_tabs_colored_ripple_color 0x7f0502cc +int color mtrl_tabs_icon_color_selector 0x7f0502cd +int color mtrl_tabs_icon_color_selector_colored 0x7f0502ce +int color mtrl_tabs_legacy_text_color_selector 0x7f0502cf +int color mtrl_tabs_ripple_color 0x7f0502d0 +int color mtrl_text_btn_text_color_selector 0x7f0502d1 +int color mtrl_textinput_default_box_stroke_color 0x7f0502d2 +int color mtrl_textinput_disabled_color 0x7f0502d3 +int color mtrl_textinput_filled_box_default_background_color 0x7f0502d4 +int color mtrl_textinput_focused_box_stroke_color 0x7f0502d5 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0502d6 +int color notification_action_color_filter 0x7f0502d7 +int color notification_icon_bg_color 0x7f0502d8 +int color primary_dark_material_dark 0x7f0502d9 +int color primary_dark_material_light 0x7f0502da +int color primary_material_dark 0x7f0502db +int color primary_material_light 0x7f0502dc +int color primary_text_default_material_dark 0x7f0502dd +int color primary_text_default_material_light 0x7f0502de +int color primary_text_disabled_material_dark 0x7f0502df +int color primary_text_disabled_material_light 0x7f0502e0 +int color ripple_material_dark 0x7f0502e1 +int color ripple_material_light 0x7f0502e2 +int color secondary_text_default_material_dark 0x7f0502e3 +int color secondary_text_default_material_light 0x7f0502e4 +int color secondary_text_disabled_material_dark 0x7f0502e5 +int color secondary_text_disabled_material_light 0x7f0502e6 +int color switch_thumb_disabled_material_dark 0x7f0502e7 +int color switch_thumb_disabled_material_light 0x7f0502e8 +int color switch_thumb_material_dark 0x7f0502e9 +int color switch_thumb_material_light 0x7f0502ea +int color switch_thumb_normal_material_dark 0x7f0502eb +int color switch_thumb_normal_material_light 0x7f0502ec +int color tooltip_background_dark 0x7f0502ed +int color tooltip_background_light 0x7f0502ee +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_height_large_material 0x7f060030 +int dimen abc_list_item_height_material 0x7f060031 +int dimen abc_list_item_height_small_material 0x7f060032 +int dimen abc_list_item_padding_horizontal_material 0x7f060033 +int dimen abc_panel_menu_list_width 0x7f060034 +int dimen abc_progress_bar_height_material 0x7f060035 +int dimen abc_search_view_preferred_height 0x7f060036 +int dimen abc_search_view_preferred_width 0x7f060037 +int dimen abc_seekbar_track_background_height_material 0x7f060038 +int dimen abc_seekbar_track_progress_height_material 0x7f060039 +int dimen abc_select_dialog_padding_start_material 0x7f06003a +int dimen abc_star_big 0x7f06003b +int dimen abc_star_medium 0x7f06003c +int dimen abc_star_small 0x7f06003d +int dimen abc_switch_padding 0x7f06003e +int dimen abc_text_size_body_1_material 0x7f06003f +int dimen abc_text_size_body_2_material 0x7f060040 +int dimen abc_text_size_button_material 0x7f060041 +int dimen abc_text_size_caption_material 0x7f060042 +int dimen abc_text_size_display_1_material 0x7f060043 +int dimen abc_text_size_display_2_material 0x7f060044 +int dimen abc_text_size_display_3_material 0x7f060045 +int dimen abc_text_size_display_4_material 0x7f060046 +int dimen abc_text_size_headline_material 0x7f060047 +int dimen abc_text_size_large_material 0x7f060048 +int dimen abc_text_size_medium_material 0x7f060049 +int dimen abc_text_size_menu_header_material 0x7f06004a +int dimen abc_text_size_menu_material 0x7f06004b +int dimen abc_text_size_small_material 0x7f06004c +int dimen abc_text_size_subhead_material 0x7f06004d +int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e +int dimen abc_text_size_title_material 0x7f06004f +int dimen abc_text_size_title_material_toolbar 0x7f060050 +int dimen appcompat_dialog_background_inset 0x7f060051 +int dimen browser_actions_context_menu_max_width 0x7f060052 +int dimen browser_actions_context_menu_min_padding 0x7f060053 +int dimen cardview_compat_inset_shadow 0x7f060054 +int dimen cardview_default_elevation 0x7f060055 +int dimen cardview_default_radius 0x7f060056 +int dimen clock_face_margin_start 0x7f060057 +int dimen compat_button_inset_horizontal_material 0x7f060058 +int dimen compat_button_inset_vertical_material 0x7f060059 +int dimen compat_button_padding_horizontal_material 0x7f06005a +int dimen compat_button_padding_vertical_material 0x7f06005b +int dimen compat_control_corner_material 0x7f06005c +int dimen compat_notification_large_icon_max_height 0x7f06005d +int dimen compat_notification_large_icon_max_width 0x7f06005e +int dimen def_drawer_elevation 0x7f06005f +int dimen design_appbar_elevation 0x7f060060 +int dimen design_bottom_navigation_active_item_max_width 0x7f060061 +int dimen design_bottom_navigation_active_item_min_width 0x7f060062 +int dimen design_bottom_navigation_active_text_size 0x7f060063 +int dimen design_bottom_navigation_elevation 0x7f060064 +int dimen design_bottom_navigation_height 0x7f060065 +int dimen design_bottom_navigation_icon_size 0x7f060066 +int dimen design_bottom_navigation_item_max_width 0x7f060067 +int dimen design_bottom_navigation_item_min_width 0x7f060068 +int dimen design_bottom_navigation_label_padding 0x7f060069 +int dimen design_bottom_navigation_margin 0x7f06006a +int dimen design_bottom_navigation_shadow_height 0x7f06006b +int dimen design_bottom_navigation_text_size 0x7f06006c +int dimen design_bottom_sheet_elevation 0x7f06006d +int dimen design_bottom_sheet_modal_elevation 0x7f06006e +int dimen design_bottom_sheet_peek_height_min 0x7f06006f +int dimen design_fab_border_width 0x7f060070 +int dimen design_fab_elevation 0x7f060071 +int dimen design_fab_image_size 0x7f060072 +int dimen design_fab_size_mini 0x7f060073 +int dimen design_fab_size_normal 0x7f060074 +int dimen design_fab_translation_z_hovered_focused 0x7f060075 +int dimen design_fab_translation_z_pressed 0x7f060076 +int dimen design_navigation_elevation 0x7f060077 +int dimen design_navigation_icon_padding 0x7f060078 +int dimen design_navigation_icon_size 0x7f060079 +int dimen design_navigation_item_horizontal_padding 0x7f06007a +int dimen design_navigation_item_icon_padding 0x7f06007b +int dimen design_navigation_item_vertical_padding 0x7f06007c +int dimen design_navigation_max_width 0x7f06007d +int dimen design_navigation_padding_bottom 0x7f06007e +int dimen design_navigation_separator_vertical_padding 0x7f06007f +int dimen design_snackbar_action_inline_max_width 0x7f060080 +int dimen design_snackbar_action_text_color_alpha 0x7f060081 +int dimen design_snackbar_background_corner_radius 0x7f060082 +int dimen design_snackbar_elevation 0x7f060083 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060084 +int dimen design_snackbar_max_width 0x7f060085 +int dimen design_snackbar_min_width 0x7f060086 +int dimen design_snackbar_padding_horizontal 0x7f060087 +int dimen design_snackbar_padding_vertical 0x7f060088 +int dimen design_snackbar_padding_vertical_2lines 0x7f060089 +int dimen design_snackbar_text_size 0x7f06008a +int dimen design_tab_max_width 0x7f06008b +int dimen design_tab_scrollable_min_width 0x7f06008c +int dimen design_tab_text_size 0x7f06008d +int dimen design_tab_text_size_2line 0x7f06008e +int dimen design_textinput_caption_translate_y 0x7f06008f +int dimen disabled_alpha_material_dark 0x7f060090 +int dimen disabled_alpha_material_light 0x7f060091 +int dimen fastscroll_default_thickness 0x7f060092 +int dimen fastscroll_margin 0x7f060093 +int dimen fastscroll_minimum_range 0x7f060094 +int dimen highlight_alpha_material_colored 0x7f060095 +int dimen highlight_alpha_material_dark 0x7f060096 +int dimen highlight_alpha_material_light 0x7f060097 +int dimen hint_alpha_material_dark 0x7f060098 +int dimen hint_alpha_material_light 0x7f060099 +int dimen hint_pressed_alpha_material_dark 0x7f06009a +int dimen hint_pressed_alpha_material_light 0x7f06009b +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009c +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009d +int dimen item_touch_helper_swipe_escape_velocity 0x7f06009e +int dimen m3_alert_dialog_action_bottom_padding 0x7f06009f +int dimen m3_alert_dialog_action_top_padding 0x7f0600a0 +int dimen m3_alert_dialog_corner_size 0x7f0600a1 +int dimen m3_alert_dialog_elevation 0x7f0600a2 +int dimen m3_alert_dialog_icon_margin 0x7f0600a3 +int dimen m3_alert_dialog_icon_size 0x7f0600a4 +int dimen m3_alert_dialog_title_bottom_margin 0x7f0600a5 +int dimen m3_appbar_expanded_title_margin_bottom 0x7f0600a6 +int dimen m3_appbar_expanded_title_margin_horizontal 0x7f0600a7 +int dimen m3_appbar_scrim_height_trigger 0x7f0600a8 +int dimen m3_appbar_scrim_height_trigger_large 0x7f0600a9 +int dimen m3_appbar_scrim_height_trigger_medium 0x7f0600aa +int dimen m3_appbar_size_compact 0x7f0600ab +int dimen m3_appbar_size_large 0x7f0600ac +int dimen m3_appbar_size_medium 0x7f0600ad +int dimen m3_badge_horizontal_offset 0x7f0600ae +int dimen m3_badge_offset 0x7f0600af +int dimen m3_badge_size 0x7f0600b0 +int dimen m3_badge_vertical_offset 0x7f0600b1 +int dimen m3_badge_with_text_horizontal_offset 0x7f0600b2 +int dimen m3_badge_with_text_offset 0x7f0600b3 +int dimen m3_badge_with_text_size 0x7f0600b4 +int dimen m3_badge_with_text_vertical_offset 0x7f0600b5 +int dimen m3_bottom_nav_item_active_indicator_height 0x7f0600b6 +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x7f0600b7 +int dimen m3_bottom_nav_item_active_indicator_width 0x7f0600b8 +int dimen m3_bottom_nav_item_padding_bottom 0x7f0600b9 +int dimen m3_bottom_nav_item_padding_top 0x7f0600ba +int dimen m3_bottom_nav_min_height 0x7f0600bb +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x7f0600bc +int dimen m3_bottom_sheet_elevation 0x7f0600bd +int dimen m3_bottom_sheet_modal_elevation 0x7f0600be +int dimen m3_bottomappbar_fab_cradle_margin 0x7f0600bf +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600c0 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x7f0600c1 +int dimen m3_bottomappbar_fab_end_margin 0x7f0600c2 +int dimen m3_bottomappbar_height 0x7f0600c3 +int dimen m3_bottomappbar_horizontal_padding 0x7f0600c4 +int dimen m3_btn_dialog_btn_min_width 0x7f0600c5 +int dimen m3_btn_dialog_btn_spacing 0x7f0600c6 +int dimen m3_btn_disabled_elevation 0x7f0600c7 +int dimen m3_btn_disabled_translation_z 0x7f0600c8 +int dimen m3_btn_elevated_btn_elevation 0x7f0600c9 +int dimen m3_btn_elevation 0x7f0600ca +int dimen m3_btn_icon_btn_padding_left 0x7f0600cb +int dimen m3_btn_icon_btn_padding_right 0x7f0600cc +int dimen m3_btn_icon_only_default_padding 0x7f0600cd +int dimen m3_btn_icon_only_default_size 0x7f0600ce +int dimen m3_btn_icon_only_icon_padding 0x7f0600cf +int dimen m3_btn_icon_only_min_width 0x7f0600d0 +int dimen m3_btn_inset 0x7f0600d1 +int dimen m3_btn_max_width 0x7f0600d2 +int dimen m3_btn_padding_bottom 0x7f0600d3 +int dimen m3_btn_padding_left 0x7f0600d4 +int dimen m3_btn_padding_right 0x7f0600d5 +int dimen m3_btn_padding_top 0x7f0600d6 +int dimen m3_btn_stroke_size 0x7f0600d7 +int dimen m3_btn_text_btn_icon_padding_left 0x7f0600d8 +int dimen m3_btn_text_btn_icon_padding_right 0x7f0600d9 +int dimen m3_btn_text_btn_padding_left 0x7f0600da +int dimen m3_btn_text_btn_padding_right 0x7f0600db +int dimen m3_btn_translation_z_base 0x7f0600dc +int dimen m3_btn_translation_z_hovered 0x7f0600dd +int dimen m3_card_disabled_z 0x7f0600de +int dimen m3_card_dragged_z 0x7f0600df +int dimen m3_card_elevated_disabled_z 0x7f0600e0 +int dimen m3_card_elevated_dragged_z 0x7f0600e1 +int dimen m3_card_elevated_elevation 0x7f0600e2 +int dimen m3_card_elevated_hovered_z 0x7f0600e3 +int dimen m3_card_elevation 0x7f0600e4 +int dimen m3_card_hovered_z 0x7f0600e5 +int dimen m3_card_stroke_width 0x7f0600e6 +int dimen m3_carousel_debug_keyline_width 0x7f0600e7 +int dimen m3_carousel_extra_small_item_size 0x7f0600e8 +int dimen m3_carousel_gone_size 0x7f0600e9 +int dimen m3_carousel_small_item_default_corner_size 0x7f0600ea +int dimen m3_carousel_small_item_size_max 0x7f0600eb +int dimen m3_carousel_small_item_size_min 0x7f0600ec +int dimen m3_chip_checked_hovered_translation_z 0x7f0600ed +int dimen m3_chip_corner_size 0x7f0600ee +int dimen m3_chip_disabled_translation_z 0x7f0600ef +int dimen m3_chip_dragged_translation_z 0x7f0600f0 +int dimen m3_chip_elevated_elevation 0x7f0600f1 +int dimen m3_chip_hovered_translation_z 0x7f0600f2 +int dimen m3_chip_icon_size 0x7f0600f3 +int dimen m3_comp_assist_chip_container_height 0x7f0600f4 +int dimen m3_comp_assist_chip_elevated_container_elevation 0x7f0600f5 +int dimen m3_comp_assist_chip_flat_container_elevation 0x7f0600f6 +int dimen m3_comp_assist_chip_flat_outline_width 0x7f0600f7 +int dimen m3_comp_assist_chip_with_icon_icon_size 0x7f0600f8 +int dimen m3_comp_badge_large_size 0x7f0600f9 +int dimen m3_comp_badge_size 0x7f0600fa +int dimen m3_comp_bottom_app_bar_container_elevation 0x7f0600fb +int dimen m3_comp_bottom_app_bar_container_height 0x7f0600fc +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x7f0600fd +int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x7f0600fe +int dimen m3_comp_divider_thickness 0x7f0600ff +int dimen m3_comp_elevated_button_container_elevation 0x7f060100 +int dimen m3_comp_elevated_button_disabled_container_elevation 0x7f060101 +int dimen m3_comp_elevated_card_container_elevation 0x7f060102 +int dimen m3_comp_elevated_card_icon_size 0x7f060103 +int dimen m3_comp_extended_fab_primary_container_elevation 0x7f060104 +int dimen m3_comp_extended_fab_primary_container_height 0x7f060105 +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x7f060106 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x7f060107 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x7f060108 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x7f060109 +int dimen m3_comp_extended_fab_primary_icon_size 0x7f06010a +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x7f06010b +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x7f06010c +int dimen m3_comp_fab_primary_container_elevation 0x7f06010d +int dimen m3_comp_fab_primary_container_height 0x7f06010e +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x7f06010f +int dimen m3_comp_fab_primary_hover_container_elevation 0x7f060110 +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x7f060111 +int dimen m3_comp_fab_primary_icon_size 0x7f060112 +int dimen m3_comp_fab_primary_large_container_height 0x7f060113 +int dimen m3_comp_fab_primary_large_icon_size 0x7f060114 +int dimen m3_comp_fab_primary_pressed_container_elevation 0x7f060115 +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x7f060116 +int dimen m3_comp_fab_primary_small_container_height 0x7f060117 +int dimen m3_comp_fab_primary_small_icon_size 0x7f060118 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x7f060119 +int dimen m3_comp_filled_button_container_elevation 0x7f06011a +int dimen m3_comp_filled_button_with_icon_icon_size 0x7f06011b +int dimen m3_comp_filled_card_container_elevation 0x7f06011c +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x7f06011d +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x7f06011e +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x7f06011f +int dimen m3_comp_filled_card_icon_size 0x7f060120 +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x7f060121 +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x7f060122 +int dimen m3_comp_filter_chip_container_height 0x7f060123 +int dimen m3_comp_filter_chip_elevated_container_elevation 0x7f060124 +int dimen m3_comp_filter_chip_flat_container_elevation 0x7f060125 +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x7f060126 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x7f060127 +int dimen m3_comp_input_chip_container_elevation 0x7f060128 +int dimen m3_comp_input_chip_container_height 0x7f060129 +int dimen m3_comp_input_chip_unselected_outline_width 0x7f06012a +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x7f06012b +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x7f06012c +int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x7f06012d +int dimen m3_comp_menu_container_elevation 0x7f06012e +int dimen m3_comp_navigation_bar_active_indicator_height 0x7f06012f +int dimen m3_comp_navigation_bar_active_indicator_width 0x7f060130 +int dimen m3_comp_navigation_bar_container_elevation 0x7f060131 +int dimen m3_comp_navigation_bar_container_height 0x7f060132 +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x7f060133 +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x7f060134 +int dimen m3_comp_navigation_bar_icon_size 0x7f060135 +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x7f060136 +int dimen m3_comp_navigation_drawer_container_width 0x7f060137 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x7f060138 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x7f060139 +int dimen m3_comp_navigation_drawer_icon_size 0x7f06013a +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x7f06013b +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x7f06013c +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x7f06013d +int dimen m3_comp_navigation_rail_active_indicator_height 0x7f06013e +int dimen m3_comp_navigation_rail_active_indicator_width 0x7f06013f +int dimen m3_comp_navigation_rail_container_elevation 0x7f060140 +int dimen m3_comp_navigation_rail_container_width 0x7f060141 +int dimen m3_comp_navigation_rail_icon_size 0x7f060142 +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x7f060143 +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x7f060144 +int dimen m3_comp_outlined_button_outline_width 0x7f060145 +int dimen m3_comp_outlined_card_container_elevation 0x7f060146 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x7f060147 +int dimen m3_comp_outlined_card_icon_size 0x7f060148 +int dimen m3_comp_outlined_card_outline_width 0x7f060149 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x7f06014a +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x7f06014b +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x7f06014c +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x7f06014d +int dimen m3_comp_outlined_text_field_focus_outline_width 0x7f06014e +int dimen m3_comp_outlined_text_field_outline_width 0x7f06014f +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x7f060150 +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x7f060151 +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x7f060152 +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x7f060153 +int dimen m3_comp_primary_navigation_tab_divider_height 0x7f060154 +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x7f060155 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x7f060156 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x7f060157 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x7f060158 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x7f060159 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x7f06015a +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x7f06015b +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x7f06015c +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x7f06015d +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x7f06015e +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x7f06015f +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x7f060160 +int dimen m3_comp_search_bar_avatar_size 0x7f060161 +int dimen m3_comp_search_bar_container_elevation 0x7f060162 +int dimen m3_comp_search_bar_container_height 0x7f060163 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x7f060164 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x7f060165 +int dimen m3_comp_search_view_container_elevation 0x7f060166 +int dimen m3_comp_search_view_docked_header_container_height 0x7f060167 +int dimen m3_comp_search_view_full_screen_header_container_height 0x7f060168 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x7f060169 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x7f06016a +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x7f06016b +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x7f06016c +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x7f06016d +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x7f06016e +int dimen m3_comp_sheet_side_docked_container_width 0x7f06016f +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x7f060170 +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x7f060171 +int dimen m3_comp_slider_disabled_active_track_opacity 0x7f060172 +int dimen m3_comp_slider_disabled_handle_opacity 0x7f060173 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x7f060174 +int dimen m3_comp_slider_inactive_track_height 0x7f060175 +int dimen m3_comp_snackbar_container_elevation 0x7f060176 +int dimen m3_comp_suggestion_chip_container_height 0x7f060177 +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x7f060178 +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x7f060179 +int dimen m3_comp_suggestion_chip_flat_outline_width 0x7f06017a +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x7f06017b +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x7f06017c +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x7f06017d +int dimen m3_comp_switch_disabled_track_opacity 0x7f06017e +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x7f06017f +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x7f060180 +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x7f060181 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x7f060182 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x7f060183 +int dimen m3_comp_switch_track_height 0x7f060184 +int dimen m3_comp_switch_track_width 0x7f060185 +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x7f060186 +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x7f060187 +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x7f060188 +int dimen m3_comp_text_button_focus_state_layer_opacity 0x7f060189 +int dimen m3_comp_text_button_hover_state_layer_opacity 0x7f06018a +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x7f06018b +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x7f06018c +int dimen m3_comp_time_picker_container_elevation 0x7f06018d +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x7f06018e +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x7f06018f +int dimen m3_comp_time_picker_period_selector_outline_width 0x7f060190 +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x7f060191 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x7f060192 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x7f060193 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x7f060194 +int dimen m3_comp_top_app_bar_large_container_height 0x7f060195 +int dimen m3_comp_top_app_bar_medium_container_height 0x7f060196 +int dimen m3_comp_top_app_bar_small_container_elevation 0x7f060197 +int dimen m3_comp_top_app_bar_small_container_height 0x7f060198 +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x7f060199 +int dimen m3_datepicker_elevation 0x7f06019a +int dimen m3_divider_heavy_thickness 0x7f06019b +int dimen m3_extended_fab_bottom_padding 0x7f06019c +int dimen m3_extended_fab_end_padding 0x7f06019d +int dimen m3_extended_fab_icon_padding 0x7f06019e +int dimen m3_extended_fab_min_height 0x7f06019f +int dimen m3_extended_fab_start_padding 0x7f0601a0 +int dimen m3_extended_fab_top_padding 0x7f0601a1 +int dimen m3_fab_border_width 0x7f0601a2 +int dimen m3_fab_corner_size 0x7f0601a3 +int dimen m3_fab_translation_z_hovered_focused 0x7f0601a4 +int dimen m3_fab_translation_z_pressed 0x7f0601a5 +int dimen m3_large_fab_max_image_size 0x7f0601a6 +int dimen m3_large_fab_size 0x7f0601a7 +int dimen m3_menu_elevation 0x7f0601a8 +int dimen m3_navigation_drawer_layout_corner_size 0x7f0601a9 +int dimen m3_navigation_item_horizontal_padding 0x7f0601aa +int dimen m3_navigation_item_icon_padding 0x7f0601ab +int dimen m3_navigation_item_shape_inset_bottom 0x7f0601ac +int dimen m3_navigation_item_shape_inset_end 0x7f0601ad +int dimen m3_navigation_item_shape_inset_start 0x7f0601ae +int dimen m3_navigation_item_shape_inset_top 0x7f0601af +int dimen m3_navigation_item_vertical_padding 0x7f0601b0 +int dimen m3_navigation_menu_divider_horizontal_padding 0x7f0601b1 +int dimen m3_navigation_menu_headline_horizontal_padding 0x7f0601b2 +int dimen m3_navigation_rail_default_width 0x7f0601b3 +int dimen m3_navigation_rail_elevation 0x7f0601b4 +int dimen m3_navigation_rail_icon_size 0x7f0601b5 +int dimen m3_navigation_rail_item_active_indicator_height 0x7f0601b6 +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x7f0601b7 +int dimen m3_navigation_rail_item_active_indicator_width 0x7f0601b8 +int dimen m3_navigation_rail_item_min_height 0x7f0601b9 +int dimen m3_navigation_rail_item_padding_bottom 0x7f0601ba +int dimen m3_navigation_rail_item_padding_top 0x7f0601bb +int dimen m3_ripple_default_alpha 0x7f0601bc +int dimen m3_ripple_focused_alpha 0x7f0601bd +int dimen m3_ripple_hovered_alpha 0x7f0601be +int dimen m3_ripple_pressed_alpha 0x7f0601bf +int dimen m3_ripple_selectable_pressed_alpha 0x7f0601c0 +int dimen m3_searchbar_elevation 0x7f0601c1 +int dimen m3_searchbar_height 0x7f0601c2 +int dimen m3_searchbar_margin_horizontal 0x7f0601c3 +int dimen m3_searchbar_margin_vertical 0x7f0601c4 +int dimen m3_searchbar_outlined_stroke_width 0x7f0601c5 +int dimen m3_searchbar_padding_start 0x7f0601c6 +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x7f0601c7 +int dimen m3_searchbar_text_size 0x7f0601c8 +int dimen m3_searchview_divider_size 0x7f0601c9 +int dimen m3_searchview_elevation 0x7f0601ca +int dimen m3_searchview_height 0x7f0601cb +int dimen m3_side_sheet_margin_detached 0x7f0601cc +int dimen m3_side_sheet_modal_elevation 0x7f0601cd +int dimen m3_side_sheet_standard_elevation 0x7f0601ce +int dimen m3_side_sheet_width 0x7f0601cf +int dimen m3_simple_item_color_hovered_alpha 0x7f0601d0 +int dimen m3_simple_item_color_selected_alpha 0x7f0601d1 +int dimen m3_slider_inactive_track_height 0x7f0601d2 +int dimen m3_slider_thumb_elevation 0x7f0601d3 +int dimen m3_small_fab_max_image_size 0x7f0601d4 +int dimen m3_small_fab_size 0x7f0601d5 +int dimen m3_snackbar_action_text_color_alpha 0x7f0601d6 +int dimen m3_snackbar_margin 0x7f0601d7 +int dimen m3_sys_elevation_level0 0x7f0601d8 +int dimen m3_sys_elevation_level1 0x7f0601d9 +int dimen m3_sys_elevation_level2 0x7f0601da +int dimen m3_sys_elevation_level3 0x7f0601db +int dimen m3_sys_elevation_level4 0x7f0601dc +int dimen m3_sys_elevation_level5 0x7f0601dd +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x7f0601de +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x7f0601df +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x7f0601e0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x7f0601e1 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x7f0601e2 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x7f0601e3 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x7f0601e4 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x7f0601e5 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x7f0601e6 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x7f0601e7 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x7f0601e8 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x7f0601e9 +int dimen m3_sys_motion_easing_legacy_control_x1 0x7f0601ea +int dimen m3_sys_motion_easing_legacy_control_x2 0x7f0601eb +int dimen m3_sys_motion_easing_legacy_control_y1 0x7f0601ec +int dimen m3_sys_motion_easing_legacy_control_y2 0x7f0601ed +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x7f0601ee +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x7f0601ef +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x7f0601f0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x7f0601f1 +int dimen m3_sys_motion_easing_linear_control_x1 0x7f0601f2 +int dimen m3_sys_motion_easing_linear_control_x2 0x7f0601f3 +int dimen m3_sys_motion_easing_linear_control_y1 0x7f0601f4 +int dimen m3_sys_motion_easing_linear_control_y2 0x7f0601f5 +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x7f0601f6 +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x7f0601f7 +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x7f0601f8 +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x7f0601f9 +int dimen m3_sys_motion_easing_standard_control_x1 0x7f0601fa +int dimen m3_sys_motion_easing_standard_control_x2 0x7f0601fb +int dimen m3_sys_motion_easing_standard_control_y1 0x7f0601fc +int dimen m3_sys_motion_easing_standard_control_y2 0x7f0601fd +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x7f0601fe +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x7f0601ff +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x7f060200 +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x7f060201 +int dimen m3_sys_state_dragged_state_layer_opacity 0x7f060202 +int dimen m3_sys_state_focus_state_layer_opacity 0x7f060203 +int dimen m3_sys_state_hover_state_layer_opacity 0x7f060204 +int dimen m3_sys_state_pressed_state_layer_opacity 0x7f060205 +int dimen m3_timepicker_display_stroke_width 0x7f060206 +int dimen m3_timepicker_window_elevation 0x7f060207 +int dimen m3_toolbar_text_size_title 0x7f060208 +int dimen material_bottom_sheet_max_width 0x7f060209 +int dimen material_clock_display_height 0x7f06020a +int dimen material_clock_display_padding 0x7f06020b +int dimen material_clock_display_width 0x7f06020c +int dimen material_clock_face_margin_top 0x7f06020d +int dimen material_clock_hand_center_dot_radius 0x7f06020e +int dimen material_clock_hand_padding 0x7f06020f +int dimen material_clock_hand_stroke_width 0x7f060210 +int dimen material_clock_number_text_size 0x7f060211 +int dimen material_clock_period_toggle_height 0x7f060212 +int dimen material_clock_period_toggle_horizontal_gap 0x7f060213 +int dimen material_clock_period_toggle_vertical_gap 0x7f060214 +int dimen material_clock_period_toggle_width 0x7f060215 +int dimen material_clock_size 0x7f060216 +int dimen material_cursor_inset 0x7f060217 +int dimen material_cursor_width 0x7f060218 +int dimen material_divider_thickness 0x7f060219 +int dimen material_emphasis_disabled 0x7f06021a +int dimen material_emphasis_disabled_background 0x7f06021b +int dimen material_emphasis_high_type 0x7f06021c +int dimen material_emphasis_medium 0x7f06021d +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f06021e +int dimen material_filled_edittext_font_1_3_padding_top 0x7f06021f +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f060220 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f060221 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f060222 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f060223 +int dimen material_helper_text_default_padding_top 0x7f060224 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f060225 +int dimen material_helper_text_font_1_3_padding_top 0x7f060226 +int dimen material_input_text_to_prefix_suffix_padding 0x7f060227 +int dimen material_textinput_default_width 0x7f060228 +int dimen material_textinput_max_width 0x7f060229 +int dimen material_textinput_min_width 0x7f06022a +int dimen material_time_picker_minimum_screen_height 0x7f06022b +int dimen material_time_picker_minimum_screen_width 0x7f06022c +int dimen material_timepicker_dialog_buttons_margin_top 0x7f06022d +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f06022e +int dimen mtrl_alert_dialog_background_inset_end 0x7f06022f +int dimen mtrl_alert_dialog_background_inset_start 0x7f060230 +int dimen mtrl_alert_dialog_background_inset_top 0x7f060231 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f060232 +int dimen mtrl_badge_horizontal_edge_offset 0x7f060233 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f060234 +int dimen mtrl_badge_size 0x7f060235 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f060236 +int dimen mtrl_badge_text_size 0x7f060237 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f060238 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f060239 +int dimen mtrl_badge_with_text_size 0x7f06023a +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f06023b +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f06023c +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f06023d +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f06023e +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f06023f +int dimen mtrl_bottomappbar_height 0x7f060240 +int dimen mtrl_btn_corner_radius 0x7f060241 +int dimen mtrl_btn_dialog_btn_min_width 0x7f060242 +int dimen mtrl_btn_disabled_elevation 0x7f060243 +int dimen mtrl_btn_disabled_z 0x7f060244 +int dimen mtrl_btn_elevation 0x7f060245 +int dimen mtrl_btn_focused_z 0x7f060246 +int dimen mtrl_btn_hovered_z 0x7f060247 +int dimen mtrl_btn_icon_btn_padding_left 0x7f060248 +int dimen mtrl_btn_icon_padding 0x7f060249 +int dimen mtrl_btn_inset 0x7f06024a +int dimen mtrl_btn_letter_spacing 0x7f06024b +int dimen mtrl_btn_max_width 0x7f06024c +int dimen mtrl_btn_padding_bottom 0x7f06024d +int dimen mtrl_btn_padding_left 0x7f06024e +int dimen mtrl_btn_padding_right 0x7f06024f +int dimen mtrl_btn_padding_top 0x7f060250 +int dimen mtrl_btn_pressed_z 0x7f060251 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f060252 +int dimen mtrl_btn_stroke_size 0x7f060253 +int dimen mtrl_btn_text_btn_icon_padding 0x7f060254 +int dimen mtrl_btn_text_btn_padding_left 0x7f060255 +int dimen mtrl_btn_text_btn_padding_right 0x7f060256 +int dimen mtrl_btn_text_size 0x7f060257 +int dimen mtrl_btn_z 0x7f060258 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f060259 +int dimen mtrl_calendar_action_height 0x7f06025a +int dimen mtrl_calendar_action_padding 0x7f06025b +int dimen mtrl_calendar_bottom_padding 0x7f06025c +int dimen mtrl_calendar_content_padding 0x7f06025d +int dimen mtrl_calendar_day_corner 0x7f06025e +int dimen mtrl_calendar_day_height 0x7f06025f +int dimen mtrl_calendar_day_horizontal_padding 0x7f060260 +int dimen mtrl_calendar_day_today_stroke 0x7f060261 +int dimen mtrl_calendar_day_vertical_padding 0x7f060262 +int dimen mtrl_calendar_day_width 0x7f060263 +int dimen mtrl_calendar_days_of_week_height 0x7f060264 +int dimen mtrl_calendar_dialog_background_inset 0x7f060265 +int dimen mtrl_calendar_header_content_padding 0x7f060266 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f060267 +int dimen mtrl_calendar_header_divider_thickness 0x7f060268 +int dimen mtrl_calendar_header_height 0x7f060269 +int dimen mtrl_calendar_header_height_fullscreen 0x7f06026a +int dimen mtrl_calendar_header_selection_line_height 0x7f06026b +int dimen mtrl_calendar_header_text_padding 0x7f06026c +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f06026d +int dimen mtrl_calendar_header_toggle_margin_top 0x7f06026e +int dimen mtrl_calendar_landscape_header_width 0x7f06026f +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f060270 +int dimen mtrl_calendar_month_horizontal_padding 0x7f060271 +int dimen mtrl_calendar_month_vertical_padding 0x7f060272 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f060273 +int dimen mtrl_calendar_navigation_height 0x7f060274 +int dimen mtrl_calendar_navigation_top_padding 0x7f060275 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f060276 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f060277 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f060278 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f060279 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f06027a +int dimen mtrl_calendar_text_input_padding_top 0x7f06027b +int dimen mtrl_calendar_title_baseline_to_top 0x7f06027c +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f06027d +int dimen mtrl_calendar_year_corner 0x7f06027e +int dimen mtrl_calendar_year_height 0x7f06027f +int dimen mtrl_calendar_year_horizontal_padding 0x7f060280 +int dimen mtrl_calendar_year_vertical_padding 0x7f060281 +int dimen mtrl_calendar_year_width 0x7f060282 +int dimen mtrl_card_checked_icon_margin 0x7f060283 +int dimen mtrl_card_checked_icon_size 0x7f060284 +int dimen mtrl_card_corner_radius 0x7f060285 +int dimen mtrl_card_dragged_z 0x7f060286 +int dimen mtrl_card_elevation 0x7f060287 +int dimen mtrl_card_spacing 0x7f060288 +int dimen mtrl_chip_pressed_translation_z 0x7f060289 +int dimen mtrl_chip_text_size 0x7f06028a +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f06028b +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f06028c +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f06028d +int dimen mtrl_extended_fab_bottom_padding 0x7f06028e +int dimen mtrl_extended_fab_disabled_elevation 0x7f06028f +int dimen mtrl_extended_fab_disabled_translation_z 0x7f060290 +int dimen mtrl_extended_fab_elevation 0x7f060291 +int dimen mtrl_extended_fab_end_padding 0x7f060292 +int dimen mtrl_extended_fab_end_padding_icon 0x7f060293 +int dimen mtrl_extended_fab_icon_size 0x7f060294 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f060295 +int dimen mtrl_extended_fab_min_height 0x7f060296 +int dimen mtrl_extended_fab_min_width 0x7f060297 +int dimen mtrl_extended_fab_start_padding 0x7f060298 +int dimen mtrl_extended_fab_start_padding_icon 0x7f060299 +int dimen mtrl_extended_fab_top_padding 0x7f06029a +int dimen mtrl_extended_fab_translation_z_base 0x7f06029b +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f06029c +int dimen mtrl_extended_fab_translation_z_pressed 0x7f06029d +int dimen mtrl_fab_elevation 0x7f06029e +int dimen mtrl_fab_min_touch_target 0x7f06029f +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0602a0 +int dimen mtrl_fab_translation_z_pressed 0x7f0602a1 +int dimen mtrl_high_ripple_default_alpha 0x7f0602a2 +int dimen mtrl_high_ripple_focused_alpha 0x7f0602a3 +int dimen mtrl_high_ripple_hovered_alpha 0x7f0602a4 +int dimen mtrl_high_ripple_pressed_alpha 0x7f0602a5 +int dimen mtrl_low_ripple_default_alpha 0x7f0602a6 +int dimen mtrl_low_ripple_focused_alpha 0x7f0602a7 +int dimen mtrl_low_ripple_hovered_alpha 0x7f0602a8 +int dimen mtrl_low_ripple_pressed_alpha 0x7f0602a9 +int dimen mtrl_min_touch_target_size 0x7f0602aa +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0602ab +int dimen mtrl_navigation_bar_item_default_margin 0x7f0602ac +int dimen mtrl_navigation_elevation 0x7f0602ad +int dimen mtrl_navigation_item_horizontal_padding 0x7f0602ae +int dimen mtrl_navigation_item_icon_padding 0x7f0602af +int dimen mtrl_navigation_item_icon_size 0x7f0602b0 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0602b1 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0602b2 +int dimen mtrl_navigation_rail_active_text_size 0x7f0602b3 +int dimen mtrl_navigation_rail_compact_width 0x7f0602b4 +int dimen mtrl_navigation_rail_default_width 0x7f0602b5 +int dimen mtrl_navigation_rail_elevation 0x7f0602b6 +int dimen mtrl_navigation_rail_icon_margin 0x7f0602b7 +int dimen mtrl_navigation_rail_icon_size 0x7f0602b8 +int dimen mtrl_navigation_rail_margin 0x7f0602b9 +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0602ba +int dimen mtrl_navigation_rail_text_size 0x7f0602bb +int dimen mtrl_progress_circular_inset 0x7f0602bc +int dimen mtrl_progress_circular_inset_extra_small 0x7f0602bd +int dimen mtrl_progress_circular_inset_medium 0x7f0602be +int dimen mtrl_progress_circular_inset_small 0x7f0602bf +int dimen mtrl_progress_circular_radius 0x7f0602c0 +int dimen mtrl_progress_circular_size 0x7f0602c1 +int dimen mtrl_progress_circular_size_extra_small 0x7f0602c2 +int dimen mtrl_progress_circular_size_medium 0x7f0602c3 +int dimen mtrl_progress_circular_size_small 0x7f0602c4 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0602c5 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0602c6 +int dimen mtrl_progress_circular_track_thickness_small 0x7f0602c7 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0602c8 +int dimen mtrl_progress_track_thickness 0x7f0602c9 +int dimen mtrl_shape_corner_size_large_component 0x7f0602ca +int dimen mtrl_shape_corner_size_medium_component 0x7f0602cb +int dimen mtrl_shape_corner_size_small_component 0x7f0602cc +int dimen mtrl_slider_halo_radius 0x7f0602cd +int dimen mtrl_slider_label_padding 0x7f0602ce +int dimen mtrl_slider_label_radius 0x7f0602cf +int dimen mtrl_slider_label_square_side 0x7f0602d0 +int dimen mtrl_slider_thumb_elevation 0x7f0602d1 +int dimen mtrl_slider_thumb_radius 0x7f0602d2 +int dimen mtrl_slider_tick_radius 0x7f0602d3 +int dimen mtrl_slider_track_height 0x7f0602d4 +int dimen mtrl_slider_track_side_padding 0x7f0602d5 +int dimen mtrl_slider_widget_height 0x7f0602d6 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0602d7 +int dimen mtrl_snackbar_background_corner_radius 0x7f0602d8 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0602d9 +int dimen mtrl_snackbar_margin 0x7f0602da +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0602db +int dimen mtrl_snackbar_padding_horizontal 0x7f0602dc +int dimen mtrl_switch_text_padding 0x7f0602dd +int dimen mtrl_switch_thumb_elevation 0x7f0602de +int dimen mtrl_switch_thumb_size 0x7f0602df +int dimen mtrl_switch_track_height 0x7f0602e0 +int dimen mtrl_switch_track_width 0x7f0602e1 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0602e2 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0602e3 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0602e4 +int dimen mtrl_textinput_box_stroke_width_default 0x7f0602e5 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0602e6 +int dimen mtrl_textinput_counter_margin_start 0x7f0602e7 +int dimen mtrl_textinput_end_icon_margin_start 0x7f0602e8 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0602e9 +int dimen mtrl_textinput_start_icon_margin_end 0x7f0602ea +int dimen mtrl_toolbar_default_height 0x7f0602eb +int dimen mtrl_tooltip_arrowSize 0x7f0602ec +int dimen mtrl_tooltip_cornerSize 0x7f0602ed +int dimen mtrl_tooltip_minHeight 0x7f0602ee +int dimen mtrl_tooltip_minWidth 0x7f0602ef +int dimen mtrl_tooltip_padding 0x7f0602f0 +int dimen mtrl_transition_shared_axis_slide_distance 0x7f0602f1 +int dimen notification_action_icon_size 0x7f0602f2 +int dimen notification_action_text_size 0x7f0602f3 +int dimen notification_big_circle_margin 0x7f0602f4 +int dimen notification_content_margin_start 0x7f0602f5 +int dimen notification_large_icon_height 0x7f0602f6 +int dimen notification_large_icon_width 0x7f0602f7 +int dimen notification_main_column_padding_top 0x7f0602f8 +int dimen notification_media_narrow_margin 0x7f0602f9 +int dimen notification_right_icon_size 0x7f0602fa +int dimen notification_right_side_padding_top 0x7f0602fb +int dimen notification_small_icon_background_padding 0x7f0602fc +int dimen notification_small_icon_size_as_large 0x7f0602fd +int dimen notification_subtext_size 0x7f0602fe +int dimen notification_top_pad 0x7f0602ff +int dimen notification_top_pad_large_text 0x7f060300 +int dimen sliding_pane_detail_pane_width 0x7f060301 +int dimen tooltip_corner_radius 0x7f060302 +int dimen tooltip_horizontal_padding 0x7f060303 +int dimen tooltip_margin 0x7f060304 +int dimen tooltip_precise_anchor_extra_offset 0x7f060305 +int dimen tooltip_precise_anchor_threshold 0x7f060306 +int dimen tooltip_vertical_padding 0x7f060307 +int dimen tooltip_y_offset_non_touch 0x7f060308 +int dimen tooltip_y_offset_touch 0x7f060309 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000 +int drawable abc_action_bar_item_background_material 0x7f070001 +int drawable abc_btn_borderless_material 0x7f070002 +int drawable abc_btn_check_material 0x7f070003 +int drawable abc_btn_check_material_anim 0x7f070004 +int drawable abc_btn_check_to_on_mtrl_000 0x7f070005 +int drawable abc_btn_check_to_on_mtrl_015 0x7f070006 +int drawable abc_btn_colored_material 0x7f070007 +int drawable abc_btn_default_mtrl_shape 0x7f070008 +int drawable abc_btn_radio_material 0x7f070009 +int drawable abc_btn_radio_material_anim 0x7f07000a +int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000b +int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000c +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e +int drawable abc_cab_background_internal_bg 0x7f07000f +int drawable abc_cab_background_top_material 0x7f070010 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070011 +int drawable abc_control_background_material 0x7f070012 +int drawable abc_dialog_material_background 0x7f070013 +int drawable abc_edit_text_material 0x7f070014 +int drawable abc_ic_ab_back_material 0x7f070015 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070016 +int drawable abc_ic_clear_material 0x7f070017 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070018 +int drawable abc_ic_go_search_api_material 0x7f070019 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001a +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001b +int drawable abc_ic_menu_overflow_material 0x7f07001c +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001d +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001e +int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001f +int drawable abc_ic_search_api_material 0x7f070020 +int drawable abc_ic_voice_search_api_material 0x7f070021 +int drawable abc_item_background_holo_dark 0x7f070022 +int drawable abc_item_background_holo_light 0x7f070023 +int drawable abc_list_divider_material 0x7f070024 +int drawable abc_list_divider_mtrl_alpha 0x7f070025 +int drawable abc_list_focused_holo 0x7f070026 +int drawable abc_list_longpressed_holo 0x7f070027 +int drawable abc_list_pressed_holo_dark 0x7f070028 +int drawable abc_list_pressed_holo_light 0x7f070029 +int drawable abc_list_selector_background_transition_holo_dark 0x7f07002a +int drawable abc_list_selector_background_transition_holo_light 0x7f07002b +int drawable abc_list_selector_disabled_holo_dark 0x7f07002c +int drawable abc_list_selector_disabled_holo_light 0x7f07002d +int drawable abc_list_selector_holo_dark 0x7f07002e +int drawable abc_list_selector_holo_light 0x7f07002f +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070030 +int drawable abc_popup_background_mtrl_mult 0x7f070031 +int drawable abc_ratingbar_indicator_material 0x7f070032 +int drawable abc_ratingbar_material 0x7f070033 +int drawable abc_ratingbar_small_material 0x7f070034 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070035 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070036 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070037 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070038 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070039 +int drawable abc_seekbar_thumb_material 0x7f07003a +int drawable abc_seekbar_tick_mark_material 0x7f07003b +int drawable abc_seekbar_track_material 0x7f07003c +int drawable abc_spinner_mtrl_am_alpha 0x7f07003d +int drawable abc_spinner_textfield_background_material 0x7f07003e +int drawable abc_star_black_48dp 0x7f07003f +int drawable abc_star_half_black_48dp 0x7f070040 +int drawable abc_switch_thumb_material 0x7f070041 +int drawable abc_switch_track_mtrl_alpha 0x7f070042 +int drawable abc_tab_indicator_material 0x7f070043 +int drawable abc_tab_indicator_mtrl_alpha 0x7f070044 +int drawable abc_text_cursor_material 0x7f070045 +int drawable abc_text_select_handle_left_mtrl 0x7f070046 +int drawable abc_text_select_handle_middle_mtrl 0x7f070047 +int drawable abc_text_select_handle_right_mtrl 0x7f070048 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070049 +int drawable abc_textfield_default_mtrl_alpha 0x7f07004a +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07004b +int drawable abc_textfield_search_default_mtrl_alpha 0x7f07004c +int drawable abc_textfield_search_material 0x7f07004d +int drawable abc_vector_test 0x7f07004e +int drawable avd_hide_password 0x7f07004f +int drawable avd_show_password 0x7f070050 +int drawable btn_checkbox_checked_mtrl 0x7f070051 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070052 +int drawable btn_checkbox_unchecked_mtrl 0x7f070053 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070054 +int drawable btn_radio_off_mtrl 0x7f070055 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f070056 +int drawable btn_radio_on_mtrl 0x7f070057 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f070058 +int drawable design_fab_background 0x7f070059 +int drawable design_ic_visibility 0x7f07005a +int drawable design_ic_visibility_off 0x7f07005b +int drawable design_password_eye 0x7f07005c +int drawable design_snackbar_background 0x7f07005d +int drawable dotnet_bot 0x7f07005e +int drawable ic_arrow_back_black_24 0x7f07005f +int drawable ic_call_answer 0x7f070060 +int drawable ic_call_answer_low 0x7f070061 +int drawable ic_call_answer_video 0x7f070062 +int drawable ic_call_answer_video_low 0x7f070063 +int drawable ic_call_decline 0x7f070064 +int drawable ic_call_decline_low 0x7f070065 +int drawable ic_clear_black_24 0x7f070066 +int drawable ic_clock_black_24dp 0x7f070067 +int drawable ic_keyboard_black_24dp 0x7f070068 +int drawable ic_m3_chip_check 0x7f070069 +int drawable ic_m3_chip_checked_circle 0x7f07006a +int drawable ic_m3_chip_close 0x7f07006b +int drawable ic_mtrl_checked_circle 0x7f07006c +int drawable ic_mtrl_chip_checked_black 0x7f07006d +int drawable ic_mtrl_chip_checked_circle 0x7f07006e +int drawable ic_mtrl_chip_close_circle 0x7f07006f +int drawable ic_search_black_24 0x7f070070 +int drawable m3_appbar_background 0x7f070071 +int drawable m3_avd_hide_password 0x7f070072 +int drawable m3_avd_show_password 0x7f070073 +int drawable m3_password_eye 0x7f070074 +int drawable m3_popupmenu_background_overlay 0x7f070075 +int drawable m3_radiobutton_ripple 0x7f070076 +int drawable m3_selection_control_ripple 0x7f070077 +int drawable m3_tabs_background 0x7f070078 +int drawable m3_tabs_line_indicator 0x7f070079 +int drawable m3_tabs_rounded_line_indicator 0x7f07007a +int drawable m3_tabs_transparent_background 0x7f07007b +int drawable material_cursor_drawable 0x7f07007c +int drawable material_ic_calendar_black_24dp 0x7f07007d +int drawable material_ic_clear_black_24dp 0x7f07007e +int drawable material_ic_edit_black_24dp 0x7f07007f +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f070080 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f070081 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f070082 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f070083 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f070084 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f070085 +int drawable maui_splash 0x7f070086 +int drawable maui_splash_image 0x7f070087 +int drawable mtrl_bottomsheet_drag_handle 0x7f070088 +int drawable mtrl_checkbox_button 0x7f070089 +int drawable mtrl_checkbox_button_checked_unchecked 0x7f07008a +int drawable mtrl_checkbox_button_icon 0x7f07008b +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x7f07008c +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x7f07008d +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x7f07008e +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x7f07008f +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x7f070090 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x7f070091 +int drawable mtrl_checkbox_button_unchecked_checked 0x7f070092 +int drawable mtrl_dialog_background 0x7f070093 +int drawable mtrl_dropdown_arrow 0x7f070094 +int drawable mtrl_ic_arrow_drop_down 0x7f070095 +int drawable mtrl_ic_arrow_drop_up 0x7f070096 +int drawable mtrl_ic_cancel 0x7f070097 +int drawable mtrl_ic_check_mark 0x7f070098 +int drawable mtrl_ic_checkbox_checked 0x7f070099 +int drawable mtrl_ic_checkbox_unchecked 0x7f07009a +int drawable mtrl_ic_error 0x7f07009b +int drawable mtrl_ic_indeterminate 0x7f07009c +int drawable mtrl_navigation_bar_item_background 0x7f07009d +int drawable mtrl_popupmenu_background 0x7f07009e +int drawable mtrl_popupmenu_background_overlay 0x7f07009f +int drawable mtrl_switch_thumb 0x7f0700a0 +int drawable mtrl_switch_thumb_checked 0x7f0700a1 +int drawable mtrl_switch_thumb_checked_pressed 0x7f0700a2 +int drawable mtrl_switch_thumb_checked_unchecked 0x7f0700a3 +int drawable mtrl_switch_thumb_pressed 0x7f0700a4 +int drawable mtrl_switch_thumb_pressed_checked 0x7f0700a5 +int drawable mtrl_switch_thumb_pressed_unchecked 0x7f0700a6 +int drawable mtrl_switch_thumb_unchecked 0x7f0700a7 +int drawable mtrl_switch_thumb_unchecked_checked 0x7f0700a8 +int drawable mtrl_switch_thumb_unchecked_pressed 0x7f0700a9 +int drawable mtrl_switch_track 0x7f0700aa +int drawable mtrl_switch_track_decoration 0x7f0700ab +int drawable mtrl_tabs_default_indicator 0x7f0700ac +int drawable navigation_empty_icon 0x7f0700ad +int drawable notification_action_background 0x7f0700ae +int drawable notification_bg 0x7f0700af +int drawable notification_bg_low 0x7f0700b0 +int drawable notification_bg_low_normal 0x7f0700b1 +int drawable notification_bg_low_pressed 0x7f0700b2 +int drawable notification_bg_normal 0x7f0700b3 +int drawable notification_bg_normal_pressed 0x7f0700b4 +int drawable notification_icon_background 0x7f0700b5 +int drawable notification_template_icon_bg 0x7f0700b6 +int drawable notification_template_icon_low_bg 0x7f0700b7 +int drawable notification_tile_bg 0x7f0700b8 +int drawable notify_panel_notification_icon_bg 0x7f0700b9 +int drawable splash 0x7f0700ba +int drawable test_level_drawable 0x7f0700bb +int drawable tooltip_frame_dark 0x7f0700bc +int drawable tooltip_frame_light 0x7f0700bd +int id accelerate 0x7f080000 +int id accessibility_action_clickable_span 0x7f080001 +int id accessibility_custom_action_0 0x7f080002 +int id accessibility_custom_action_1 0x7f080003 +int id accessibility_custom_action_10 0x7f080004 +int id accessibility_custom_action_11 0x7f080005 +int id accessibility_custom_action_12 0x7f080006 +int id accessibility_custom_action_13 0x7f080007 +int id accessibility_custom_action_14 0x7f080008 +int id accessibility_custom_action_15 0x7f080009 +int id accessibility_custom_action_16 0x7f08000a +int id accessibility_custom_action_17 0x7f08000b +int id accessibility_custom_action_18 0x7f08000c +int id accessibility_custom_action_19 0x7f08000d +int id accessibility_custom_action_2 0x7f08000e +int id accessibility_custom_action_20 0x7f08000f +int id accessibility_custom_action_21 0x7f080010 +int id accessibility_custom_action_22 0x7f080011 +int id accessibility_custom_action_23 0x7f080012 +int id accessibility_custom_action_24 0x7f080013 +int id accessibility_custom_action_25 0x7f080014 +int id accessibility_custom_action_26 0x7f080015 +int id accessibility_custom_action_27 0x7f080016 +int id accessibility_custom_action_28 0x7f080017 +int id accessibility_custom_action_29 0x7f080018 +int id accessibility_custom_action_3 0x7f080019 +int id accessibility_custom_action_30 0x7f08001a +int id accessibility_custom_action_31 0x7f08001b +int id accessibility_custom_action_4 0x7f08001c +int id accessibility_custom_action_5 0x7f08001d +int id accessibility_custom_action_6 0x7f08001e +int id accessibility_custom_action_7 0x7f08001f +int id accessibility_custom_action_8 0x7f080020 +int id accessibility_custom_action_9 0x7f080021 +int id actionDown 0x7f080022 +int id actionDownUp 0x7f080023 +int id actionUp 0x7f080024 +int id action_bar 0x7f080025 +int id action_bar_activity_content 0x7f080026 +int id action_bar_container 0x7f080027 +int id action_bar_root 0x7f080028 +int id action_bar_spinner 0x7f080029 +int id action_bar_subtitle 0x7f08002a +int id action_bar_title 0x7f08002b +int id action_container 0x7f08002c +int id action_context_bar 0x7f08002d +int id action_divider 0x7f08002e +int id action_image 0x7f08002f +int id action_menu_divider 0x7f080030 +int id action_menu_presenter 0x7f080031 +int id action_mode_bar 0x7f080032 +int id action_mode_bar_stub 0x7f080033 +int id action_mode_close_button 0x7f080034 +int id action_text 0x7f080035 +int id actions 0x7f080036 +int id activity_chooser_view_content 0x7f080037 +int id adjacent 0x7f080038 +int id alertTitle 0x7f080039 +int id aligned 0x7f08003a +int id allStates 0x7f08003b +int id always 0x7f08003c +int id alwaysAllow 0x7f08003d +int id alwaysDisallow 0x7f08003e +int id androidx_window_activity_scope 0x7f08003f +int id antiClockwise 0x7f080040 +int id arc 0x7f080041 +int id asConfigured 0x7f080042 +int id background 0x7f080043 +int id barrier 0x7f080044 +int id baseline 0x7f080045 +int id bestChoice 0x7f080046 +int id bottom 0x7f080047 +int id bottomToTop 0x7f080048 +int id bounce 0x7f080049 +int id browser_actions_header_text 0x7f08004a +int id browser_actions_menu_item_icon 0x7f08004b +int id browser_actions_menu_item_text 0x7f08004c +int id browser_actions_menu_items 0x7f08004d +int id browser_actions_menu_view 0x7f08004e +int id button1 0x7f08004f +int id button2 0x7f080050 +int id button3 0x7f080051 +int id buttonPanel 0x7f080052 +int id cache_measures 0x7f080053 +int id callMeasure 0x7f080054 +int id cancel_button 0x7f080055 +int id center 0x7f080056 +int id chain 0x7f080057 +int id chain2 0x7f080058 +int id chains 0x7f080059 +int id checkbox 0x7f08005a +int id checked 0x7f08005b +int id chronometer 0x7f08005c +int id circle_center 0x7f08005d +int id clockwise 0x7f08005e +int id closest 0x7f08005f +int id confirm_button 0x7f080060 +int id constraint 0x7f080061 +int id container 0x7f080062 +int id content 0x7f080063 +int id contentPanel 0x7f080064 +int id coordinator 0x7f080065 +int id cos 0x7f080066 +int id currentState 0x7f080067 +int id custom 0x7f080068 +int id customPanel 0x7f080069 +int id cut 0x7f08006a +int id date_picker_actions 0x7f08006b +int id decelerate 0x7f08006c +int id decor_content_parent 0x7f08006d +int id default_activity_button 0x7f08006e +int id deltaRelative 0x7f08006f +int id dependency_ordering 0x7f080070 +int id design_bottom_sheet 0x7f080071 +int id design_menu_item_action_area 0x7f080072 +int id design_menu_item_action_area_stub 0x7f080073 +int id design_menu_item_text 0x7f080074 +int id design_navigation_view 0x7f080075 +int id dialog_button 0x7f080076 +int id dimensions 0x7f080077 +int id direct 0x7f080078 +int id dragAnticlockwise 0x7f080079 +int id dragClockwise 0x7f08007a +int id dragDown 0x7f08007b +int id dragEnd 0x7f08007c +int id dragLeft 0x7f08007d +int id dragRight 0x7f08007e +int id dragStart 0x7f08007f +int id dragUp 0x7f080080 +int id easeIn 0x7f080081 +int id easeInOut 0x7f080082 +int id easeOut 0x7f080083 +int id edit_query 0x7f080084 +int id end 0x7f080085 +int id expand_activities_button 0x7f080086 +int id expanded_menu 0x7f080087 +int id flip 0x7f080088 +int id flyoutcontent_appbar 0x7f080089 +int id fragment_container_view_tag 0x7f08008a +int id fullscreen_header 0x7f08008b +int id ghost_view 0x7f08008c +int id ghost_view_holder 0x7f08008d +int id glide_custom_view_target_tag 0x7f08008e +int id gone 0x7f08008f +int id graph 0x7f080090 +int id graph_wrap 0x7f080091 +int id group_divider 0x7f080092 +int id grouping 0x7f080093 +int id groups 0x7f080094 +int id header_title 0x7f080095 +int id home 0x7f080096 +int id honorRequest 0x7f080097 +int id horizontal_only 0x7f080098 +int id icon 0x7f080099 +int id icon1 0x7f08009a +int id icon_group 0x7f08009b +int id ignore 0x7f08009c +int id ignoreRequest 0x7f08009d +int id image 0x7f08009e +int id included 0x7f08009f +int id indeterminate 0x7f0800a0 +int id info 0x7f0800a1 +int id invisible 0x7f0800a2 +int id is_pooling_container_tag 0x7f0800a3 +int id item_touch_helper_previous_elevation 0x7f0800a4 +int id left 0x7f0800a5 +int id legacy 0x7f0800a6 +int id line1 0x7f0800a7 +int id line3 0x7f0800a8 +int id linear 0x7f0800a9 +int id list_item 0x7f0800aa +int id locale 0x7f0800ab +int id ltr 0x7f0800ac +int id m3_side_sheet 0x7f0800ad +int id mask 0x7f0800ae +int id masked 0x7f0800af +int id match_constraint 0x7f0800b0 +int id match_parent 0x7f0800b1 +int id material_clock_display 0x7f0800b2 +int id material_clock_display_and_toggle 0x7f0800b3 +int id material_clock_face 0x7f0800b4 +int id material_clock_hand 0x7f0800b5 +int id material_clock_level 0x7f0800b6 +int id material_clock_period_am_button 0x7f0800b7 +int id material_clock_period_pm_button 0x7f0800b8 +int id material_clock_period_toggle 0x7f0800b9 +int id material_hour_text_input 0x7f0800ba +int id material_hour_tv 0x7f0800bb +int id material_label 0x7f0800bc +int id material_minute_text_input 0x7f0800bd +int id material_minute_tv 0x7f0800be +int id material_textinput_timepicker 0x7f0800bf +int id material_timepicker_cancel_button 0x7f0800c0 +int id material_timepicker_container 0x7f0800c1 +int id material_timepicker_mode_button 0x7f0800c2 +int id material_timepicker_ok_button 0x7f0800c3 +int id material_timepicker_view 0x7f0800c4 +int id material_value_index 0x7f0800c5 +int id message 0x7f0800c6 +int id middle 0x7f0800c7 +int id month_grid 0x7f0800c8 +int id month_navigation_bar 0x7f0800c9 +int id month_navigation_fragment_toggle 0x7f0800ca +int id month_navigation_next 0x7f0800cb +int id month_navigation_previous 0x7f0800cc +int id month_title 0x7f0800cd +int id motion_base 0x7f0800ce +int id mtrl_anchor_parent 0x7f0800cf +int id mtrl_calendar_day_selector_frame 0x7f0800d0 +int id mtrl_calendar_days_of_week 0x7f0800d1 +int id mtrl_calendar_frame 0x7f0800d2 +int id mtrl_calendar_main_pane 0x7f0800d3 +int id mtrl_calendar_months 0x7f0800d4 +int id mtrl_calendar_selection_frame 0x7f0800d5 +int id mtrl_calendar_text_input_frame 0x7f0800d6 +int id mtrl_calendar_year_selector_frame 0x7f0800d7 +int id mtrl_card_checked_layer_id 0x7f0800d8 +int id mtrl_child_content_container 0x7f0800d9 +int id mtrl_internal_children_alpha_tag 0x7f0800da +int id mtrl_motion_snapshot_view 0x7f0800db +int id mtrl_picker_fullscreen 0x7f0800dc +int id mtrl_picker_header 0x7f0800dd +int id mtrl_picker_header_selection_text 0x7f0800de +int id mtrl_picker_header_title_and_selection 0x7f0800df +int id mtrl_picker_header_toggle 0x7f0800e0 +int id mtrl_picker_text_input_date 0x7f0800e1 +int id mtrl_picker_text_input_range_end 0x7f0800e2 +int id mtrl_picker_text_input_range_start 0x7f0800e3 +int id mtrl_picker_title_text 0x7f0800e4 +int id mtrl_view_tag_bottom_padding 0x7f0800e5 +int id nav_controller_view_tag 0x7f0800e6 +int id nav_host 0x7f0800e7 +int id nav_host_fragment_container 0x7f0800e8 +int id navigation_bar_item_active_indicator_view 0x7f0800e9 +int id navigation_bar_item_icon_container 0x7f0800ea +int id navigation_bar_item_icon_view 0x7f0800eb +int id navigation_bar_item_labels_group 0x7f0800ec +int id navigation_bar_item_large_label_view 0x7f0800ed +int id navigation_bar_item_small_label_view 0x7f0800ee +int id navigation_header_container 0x7f0800ef +int id navigation_layout 0x7f0800f0 +int id navigationlayout_appbar 0x7f0800f1 +int id navigationlayout_bottomtabs 0x7f0800f2 +int id navigationlayout_content 0x7f0800f3 +int id navigationlayout_toptabs 0x7f0800f4 +int id never 0x7f0800f5 +int id noState 0x7f0800f6 +int id none 0x7f0800f7 +int id normal 0x7f0800f8 +int id notification_background 0x7f0800f9 +int id notification_main_column 0x7f0800fa +int id notification_main_column_container 0x7f0800fb +int id off 0x7f0800fc +int id on 0x7f0800fd +int id overshoot 0x7f0800fe +int id packed 0x7f0800ff +int id parent 0x7f080100 +int id parentPanel 0x7f080101 +int id parent_matrix 0x7f080102 +int id path 0x7f080103 +int id pathRelative 0x7f080104 +int id percent 0x7f080105 +int id pooling_container_listener_holder_tag 0x7f080106 +int id position 0x7f080107 +int id pressed 0x7f080108 +int id progress 0x7f080109 +int id progress_circular 0x7f08010a +int id progress_horizontal 0x7f08010b +int id radio 0x7f08010c +int id ratio 0x7f08010d +int id rectangles 0x7f08010e +int id report_drawn 0x7f08010f +int id reverseSawtooth 0x7f080110 +int id right 0x7f080111 +int id right_icon 0x7f080112 +int id right_side 0x7f080113 +int id rounded 0x7f080114 +int id row_index_key 0x7f080115 +int id rtl 0x7f080116 +int id save_non_transition_alpha 0x7f080117 +int id save_overlay_view 0x7f080118 +int id sawtooth 0x7f080119 +int id scrollIndicatorDown 0x7f08011a +int id scrollIndicatorUp 0x7f08011b +int id scrollView 0x7f08011c +int id search_badge 0x7f08011d +int id search_bar 0x7f08011e +int id search_bar_text_view 0x7f08011f +int id search_button 0x7f080120 +int id search_close_btn 0x7f080121 +int id search_edit_frame 0x7f080122 +int id search_go_btn 0x7f080123 +int id search_mag_icon 0x7f080124 +int id search_plate 0x7f080125 +int id search_src_text 0x7f080126 +int id search_view_background 0x7f080127 +int id search_view_clear_button 0x7f080128 +int id search_view_content_container 0x7f080129 +int id search_view_divider 0x7f08012a +int id search_view_dummy_toolbar 0x7f08012b +int id search_view_edit_text 0x7f08012c +int id search_view_header_container 0x7f08012d +int id search_view_root 0x7f08012e +int id search_view_scrim 0x7f08012f +int id search_view_search_prefix 0x7f080130 +int id search_view_status_bar_spacer 0x7f080131 +int id search_view_toolbar 0x7f080132 +int id search_view_toolbar_container 0x7f080133 +int id search_voice_btn 0x7f080134 +int id secondaryProgress 0x7f080135 +int id select_dialog_listview 0x7f080136 +int id selection_type 0x7f080137 +int id sharedValueSet 0x7f080138 +int id sharedValueUnset 0x7f080139 +int id shellcontent_appbar 0x7f08013a +int id shortcut 0x7f08013b +int id sin 0x7f08013c +int id skipped 0x7f08013d +int id sliding_pane_detail_container 0x7f08013e +int id sliding_pane_layout 0x7f08013f +int id sliding_tabs 0x7f080140 +int id snackbar_action 0x7f080141 +int id snackbar_text 0x7f080142 +int id spacer 0x7f080143 +int id special_effects_controller_view_tag 0x7f080144 +int id spline 0x7f080145 +int id split_action_bar 0x7f080146 +int id spread 0x7f080147 +int id spread_inside 0x7f080148 +int id square 0x7f080149 +int id standard 0x7f08014a +int id start 0x7f08014b +int id startHorizontal 0x7f08014c +int id startVertical 0x7f08014d +int id submenuarrow 0x7f08014e +int id submit_area 0x7f08014f +int id tag_accessibility_actions 0x7f080150 +int id tag_accessibility_clickable_spans 0x7f080151 +int id tag_accessibility_heading 0x7f080152 +int id tag_accessibility_pane_title 0x7f080153 +int id tag_on_apply_window_listener 0x7f080154 +int id tag_on_receive_content_listener 0x7f080155 +int id tag_on_receive_content_mime_types 0x7f080156 +int id tag_screen_reader_focusable 0x7f080157 +int id tag_state_description 0x7f080158 +int id tag_transition_group 0x7f080159 +int id tag_unhandled_key_event_manager 0x7f08015a +int id tag_unhandled_key_listeners 0x7f08015b +int id tag_window_insets_animation_callback 0x7f08015c +int id text 0x7f08015d +int id text1 0x7f08015e +int id text2 0x7f08015f +int id textSpacerNoButtons 0x7f080160 +int id textSpacerNoTitle 0x7f080161 +int id text_input_end_icon 0x7f080162 +int id text_input_error_icon 0x7f080163 +int id text_input_start_icon 0x7f080164 +int id textinput_counter 0x7f080165 +int id textinput_error 0x7f080166 +int id textinput_helper_text 0x7f080167 +int id textinput_placeholder 0x7f080168 +int id textinput_prefix_text 0x7f080169 +int id textinput_suffix_text 0x7f08016a +int id time 0x7f08016b +int id title 0x7f08016c +int id titleDividerNoCustom 0x7f08016d +int id title_template 0x7f08016e +int id toolbar 0x7f08016f +int id top 0x7f080170 +int id topPanel 0x7f080171 +int id topToBottom 0x7f080172 +int id touch_outside 0x7f080173 +int id transition_current_scene 0x7f080174 +int id transition_layout_save 0x7f080175 +int id transition_position 0x7f080176 +int id transition_scene_layoutid_cache 0x7f080177 +int id transition_transform 0x7f080178 +int id triangle 0x7f080179 +int id unchecked 0x7f08017a +int id up 0x7f08017b +int id vertical_only 0x7f08017c +int id view_offset_helper 0x7f08017d +int id view_transition 0x7f08017e +int id view_tree_lifecycle_owner 0x7f08017f +int id view_tree_on_back_pressed_dispatcher_owner 0x7f080180 +int id view_tree_saved_state_registry_owner 0x7f080181 +int id view_tree_view_model_store_owner 0x7f080182 +int id visible 0x7f080183 +int id visible_removing_fragment_view_tag 0x7f080184 +int id with_icon 0x7f080185 +int id wrap 0x7f080186 +int id wrap_content 0x7f080187 +int id wrap_content_constrained 0x7f080188 +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_navAnimTime 0x7f090005 +int integer config_tooltipAnimTime 0x7f090006 +int integer design_snackbar_text_max_lines 0x7f090007 +int integer design_tab_indicator_anim_duration_ms 0x7f090008 +int integer hide_password_duration 0x7f090009 +int integer m3_btn_anim_delay_ms 0x7f09000a +int integer m3_btn_anim_duration_ms 0x7f09000b +int integer m3_card_anim_delay_ms 0x7f09000c +int integer m3_card_anim_duration_ms 0x7f09000d +int integer m3_chip_anim_duration 0x7f09000e +int integer m3_sys_motion_duration_extra_long1 0x7f09000f +int integer m3_sys_motion_duration_extra_long2 0x7f090010 +int integer m3_sys_motion_duration_extra_long3 0x7f090011 +int integer m3_sys_motion_duration_extra_long4 0x7f090012 +int integer m3_sys_motion_duration_long1 0x7f090013 +int integer m3_sys_motion_duration_long2 0x7f090014 +int integer m3_sys_motion_duration_long3 0x7f090015 +int integer m3_sys_motion_duration_long4 0x7f090016 +int integer m3_sys_motion_duration_medium1 0x7f090017 +int integer m3_sys_motion_duration_medium2 0x7f090018 +int integer m3_sys_motion_duration_medium3 0x7f090019 +int integer m3_sys_motion_duration_medium4 0x7f09001a +int integer m3_sys_motion_duration_short1 0x7f09001b +int integer m3_sys_motion_duration_short2 0x7f09001c +int integer m3_sys_motion_duration_short3 0x7f09001d +int integer m3_sys_motion_duration_short4 0x7f09001e +int integer m3_sys_motion_path 0x7f09001f +int integer m3_sys_shape_corner_extra_large_corner_family 0x7f090020 +int integer m3_sys_shape_corner_extra_small_corner_family 0x7f090021 +int integer m3_sys_shape_corner_full_corner_family 0x7f090022 +int integer m3_sys_shape_corner_large_corner_family 0x7f090023 +int integer m3_sys_shape_corner_medium_corner_family 0x7f090024 +int integer m3_sys_shape_corner_small_corner_family 0x7f090025 +int integer material_motion_duration_long_1 0x7f090026 +int integer material_motion_duration_long_2 0x7f090027 +int integer material_motion_duration_medium_1 0x7f090028 +int integer material_motion_duration_medium_2 0x7f090029 +int integer material_motion_duration_short_1 0x7f09002a +int integer material_motion_duration_short_2 0x7f09002b +int integer material_motion_path 0x7f09002c +int integer mtrl_badge_max_character_count 0x7f09002d +int integer mtrl_btn_anim_delay_ms 0x7f09002e +int integer mtrl_btn_anim_duration_ms 0x7f09002f +int integer mtrl_calendar_header_orientation 0x7f090030 +int integer mtrl_calendar_selection_text_lines 0x7f090031 +int integer mtrl_calendar_year_selector_span 0x7f090032 +int integer mtrl_card_anim_delay_ms 0x7f090033 +int integer mtrl_card_anim_duration_ms 0x7f090034 +int integer mtrl_chip_anim_duration 0x7f090035 +int integer mtrl_switch_thumb_motion_duration 0x7f090036 +int integer mtrl_switch_thumb_post_morphing_duration 0x7f090037 +int integer mtrl_switch_thumb_pre_morphing_duration 0x7f090038 +int integer mtrl_switch_thumb_pressed_duration 0x7f090039 +int integer mtrl_switch_thumb_viewport_center_coordinate 0x7f09003a +int integer mtrl_switch_thumb_viewport_size 0x7f09003b +int integer mtrl_switch_track_viewport_height 0x7f09003c +int integer mtrl_switch_track_viewport_width 0x7f09003d +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09003e +int integer mtrl_view_gone 0x7f09003f +int integer mtrl_view_invisible 0x7f090040 +int integer mtrl_view_visible 0x7f090041 +int integer show_password_duration 0x7f090042 +int integer status_bar_notification_info_maxnum 0x7f090043 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 +int interpolator fast_out_slow_in 0x7f0a0006 +int interpolator m3_sys_motion_easing_emphasized 0x7f0a0007 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x7f0a0008 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x7f0a0009 +int interpolator m3_sys_motion_easing_linear 0x7f0a000a +int interpolator m3_sys_motion_easing_standard 0x7f0a000b +int interpolator m3_sys_motion_easing_standard_accelerate 0x7f0a000c +int interpolator m3_sys_motion_easing_standard_decelerate 0x7f0a000d +int interpolator mtrl_fast_out_linear_in 0x7f0a000e +int interpolator mtrl_fast_out_slow_in 0x7f0a000f +int interpolator mtrl_linear 0x7f0a0010 +int interpolator mtrl_linear_out_slow_in 0x7f0a0011 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout browser_actions_context_menu_page 0x7f0b001c +int layout browser_actions_context_menu_row 0x7f0b001d +int layout custom_dialog 0x7f0b001e +int layout design_bottom_navigation_item 0x7f0b001f +int layout design_bottom_sheet_dialog 0x7f0b0020 +int layout design_layout_snackbar 0x7f0b0021 +int layout design_layout_snackbar_include 0x7f0b0022 +int layout design_layout_tab_icon 0x7f0b0023 +int layout design_layout_tab_text 0x7f0b0024 +int layout design_menu_item_action_area 0x7f0b0025 +int layout design_navigation_item 0x7f0b0026 +int layout design_navigation_item_header 0x7f0b0027 +int layout design_navigation_item_separator 0x7f0b0028 +int layout design_navigation_item_subheader 0x7f0b0029 +int layout design_navigation_menu 0x7f0b002a +int layout design_navigation_menu_item 0x7f0b002b +int layout design_text_input_end_icon 0x7f0b002c +int layout design_text_input_start_icon 0x7f0b002d +int layout drawer_layout 0x7f0b002e +int layout flyoutcontent 0x7f0b002f +int layout fragment_backstack 0x7f0b0030 +int layout m3_alert_dialog 0x7f0b0031 +int layout m3_alert_dialog_actions 0x7f0b0032 +int layout m3_alert_dialog_title 0x7f0b0033 +int layout m3_auto_complete_simple_item 0x7f0b0034 +int layout m3_side_sheet_dialog 0x7f0b0035 +int layout material_chip_input_combo 0x7f0b0036 +int layout material_clock_display 0x7f0b0037 +int layout material_clock_display_divider 0x7f0b0038 +int layout material_clock_period_toggle 0x7f0b0039 +int layout material_clock_period_toggle_land 0x7f0b003a +int layout material_clockface_textview 0x7f0b003b +int layout material_clockface_view 0x7f0b003c +int layout material_radial_view_group 0x7f0b003d +int layout material_textinput_timepicker 0x7f0b003e +int layout material_time_chip 0x7f0b003f +int layout material_time_input 0x7f0b0040 +int layout material_timepicker 0x7f0b0041 +int layout material_timepicker_dialog 0x7f0b0042 +int layout material_timepicker_textinput_display 0x7f0b0043 +int layout mtrl_alert_dialog 0x7f0b0044 +int layout mtrl_alert_dialog_actions 0x7f0b0045 +int layout mtrl_alert_dialog_title 0x7f0b0046 +int layout mtrl_alert_select_dialog_item 0x7f0b0047 +int layout mtrl_alert_select_dialog_multichoice 0x7f0b0048 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0b0049 +int layout mtrl_auto_complete_simple_item 0x7f0b004a +int layout mtrl_calendar_day 0x7f0b004b +int layout mtrl_calendar_day_of_week 0x7f0b004c +int layout mtrl_calendar_days_of_week 0x7f0b004d +int layout mtrl_calendar_horizontal 0x7f0b004e +int layout mtrl_calendar_month 0x7f0b004f +int layout mtrl_calendar_month_labeled 0x7f0b0050 +int layout mtrl_calendar_month_navigation 0x7f0b0051 +int layout mtrl_calendar_months 0x7f0b0052 +int layout mtrl_calendar_vertical 0x7f0b0053 +int layout mtrl_calendar_year 0x7f0b0054 +int layout mtrl_layout_snackbar 0x7f0b0055 +int layout mtrl_layout_snackbar_include 0x7f0b0056 +int layout mtrl_navigation_rail_item 0x7f0b0057 +int layout mtrl_picker_actions 0x7f0b0058 +int layout mtrl_picker_dialog 0x7f0b0059 +int layout mtrl_picker_fullscreen 0x7f0b005a +int layout mtrl_picker_header_dialog 0x7f0b005b +int layout mtrl_picker_header_fullscreen 0x7f0b005c +int layout mtrl_picker_header_selection_text 0x7f0b005d +int layout mtrl_picker_header_title_text 0x7f0b005e +int layout mtrl_picker_header_toggle 0x7f0b005f +int layout mtrl_picker_text_input_date 0x7f0b0060 +int layout mtrl_picker_text_input_date_range 0x7f0b0061 +int layout mtrl_search_bar 0x7f0b0062 +int layout mtrl_search_view 0x7f0b0063 +int layout navigationlayout 0x7f0b0064 +int layout notification_action 0x7f0b0065 +int layout notification_action_tombstone 0x7f0b0066 +int layout notification_template_custom_big 0x7f0b0067 +int layout notification_template_icon_group 0x7f0b0068 +int layout notification_template_part_chronometer 0x7f0b0069 +int layout notification_template_part_time 0x7f0b006a +int layout select_dialog_item_material 0x7f0b006b +int layout select_dialog_multichoice_material 0x7f0b006c +int layout select_dialog_singlechoice_material 0x7f0b006d +int layout shellcontent 0x7f0b006e +int layout support_simple_spinner_dropdown_item 0x7f0b006f +int layout tabbar 0x7f0b0070 +int layout toolbar 0x7f0b0071 +int mipmap appicon 0x7f0c0000 +int mipmap appicon_background 0x7f0c0001 +int mipmap appicon_foreground 0x7f0c0002 +int mipmap appicon_round 0x7f0c0003 +int plurals mtrl_badge_content_description 0x7f0d0000 +int string abc_action_bar_home_description 0x7f0e0000 +int string abc_action_bar_up_description 0x7f0e0001 +int string abc_action_menu_overflow_description 0x7f0e0002 +int string abc_action_mode_done 0x7f0e0003 +int string abc_activity_chooser_view_see_all 0x7f0e0004 +int string abc_activitychooserview_choose_application 0x7f0e0005 +int string abc_capital_off 0x7f0e0006 +int string abc_capital_on 0x7f0e0007 +int string abc_menu_alt_shortcut_label 0x7f0e0008 +int string abc_menu_ctrl_shortcut_label 0x7f0e0009 +int string abc_menu_delete_shortcut_label 0x7f0e000a +int string abc_menu_enter_shortcut_label 0x7f0e000b +int string abc_menu_function_shortcut_label 0x7f0e000c +int string abc_menu_meta_shortcut_label 0x7f0e000d +int string abc_menu_shift_shortcut_label 0x7f0e000e +int string abc_menu_space_shortcut_label 0x7f0e000f +int string abc_menu_sym_shortcut_label 0x7f0e0010 +int string abc_prepend_shortcut_label 0x7f0e0011 +int string abc_search_hint 0x7f0e0012 +int string abc_searchview_description_clear 0x7f0e0013 +int string abc_searchview_description_query 0x7f0e0014 +int string abc_searchview_description_search 0x7f0e0015 +int string abc_searchview_description_submit 0x7f0e0016 +int string abc_searchview_description_voice 0x7f0e0017 +int string abc_shareactionprovider_share_with 0x7f0e0018 +int string abc_shareactionprovider_share_with_application 0x7f0e0019 +int string abc_toolbar_collapse_description 0x7f0e001a +int string androidx_startup 0x7f0e001b +int string appbar_scrolling_view_behavior 0x7f0e001c +int string bottom_sheet_behavior 0x7f0e001d +int string bottomsheet_action_collapse 0x7f0e001e +int string bottomsheet_action_expand 0x7f0e001f +int string bottomsheet_action_expand_halfway 0x7f0e0020 +int string bottomsheet_drag_handle_clicked 0x7f0e0021 +int string bottomsheet_drag_handle_content_description 0x7f0e0022 +int string call_notification_answer_action 0x7f0e0023 +int string call_notification_answer_video_action 0x7f0e0024 +int string call_notification_decline_action 0x7f0e0025 +int string call_notification_hang_up_action 0x7f0e0026 +int string call_notification_incoming_text 0x7f0e0027 +int string call_notification_ongoing_text 0x7f0e0028 +int string call_notification_screening_text 0x7f0e0029 +int string character_counter_content_description 0x7f0e002a +int string character_counter_overflowed_content_description 0x7f0e002b +int string character_counter_pattern 0x7f0e002c +int string clear_text_end_icon_content_description 0x7f0e002d +int string copy_toast_msg 0x7f0e002e +int string dest_title 0x7f0e002f +int string error_a11y_label 0x7f0e0030 +int string error_icon_content_description 0x7f0e0031 +int string exposed_dropdown_menu_content_description 0x7f0e0032 +int string fab_transformation_scrim_behavior 0x7f0e0033 +int string fab_transformation_sheet_behavior 0x7f0e0034 +int string fallback_menu_item_copy_link 0x7f0e0035 +int string fallback_menu_item_open_in_browser 0x7f0e0036 +int string fallback_menu_item_share_link 0x7f0e0037 +int string hide_bottom_view_on_scroll_behavior 0x7f0e0038 +int string icon_content_description 0x7f0e0039 +int string item_view_role_description 0x7f0e003a +int string m3_ref_typeface_brand_medium 0x7f0e003b +int string m3_ref_typeface_brand_regular 0x7f0e003c +int string m3_ref_typeface_plain_medium 0x7f0e003d +int string m3_ref_typeface_plain_regular 0x7f0e003e +int string m3_sys_motion_easing_emphasized 0x7f0e003f +int string m3_sys_motion_easing_emphasized_accelerate 0x7f0e0040 +int string m3_sys_motion_easing_emphasized_decelerate 0x7f0e0041 +int string m3_sys_motion_easing_emphasized_path_data 0x7f0e0042 +int string m3_sys_motion_easing_legacy 0x7f0e0043 +int string m3_sys_motion_easing_legacy_accelerate 0x7f0e0044 +int string m3_sys_motion_easing_legacy_decelerate 0x7f0e0045 +int string m3_sys_motion_easing_linear 0x7f0e0046 +int string m3_sys_motion_easing_standard 0x7f0e0047 +int string m3_sys_motion_easing_standard_accelerate 0x7f0e0048 +int string m3_sys_motion_easing_standard_decelerate 0x7f0e0049 +int string material_clock_display_divider 0x7f0e004a +int string material_clock_toggle_content_description 0x7f0e004b +int string material_hour_24h_suffix 0x7f0e004c +int string material_hour_selection 0x7f0e004d +int string material_hour_suffix 0x7f0e004e +int string material_minute_selection 0x7f0e004f +int string material_minute_suffix 0x7f0e0050 +int string material_motion_easing_accelerated 0x7f0e0051 +int string material_motion_easing_decelerated 0x7f0e0052 +int string material_motion_easing_emphasized 0x7f0e0053 +int string material_motion_easing_linear 0x7f0e0054 +int string material_motion_easing_standard 0x7f0e0055 +int string material_slider_range_end 0x7f0e0056 +int string material_slider_range_start 0x7f0e0057 +int string material_slider_value 0x7f0e0058 +int string material_timepicker_am 0x7f0e0059 +int string material_timepicker_clock_mode_description 0x7f0e005a +int string material_timepicker_hour 0x7f0e005b +int string material_timepicker_minute 0x7f0e005c +int string material_timepicker_pm 0x7f0e005d +int string material_timepicker_select_time 0x7f0e005e +int string material_timepicker_text_input_mode_description 0x7f0e005f +int string maui_empty_unused 0x7f0e0060 +int string mtrl_badge_numberless_content_description 0x7f0e0061 +int string mtrl_checkbox_button_icon_path_checked 0x7f0e0062 +int string mtrl_checkbox_button_icon_path_group_name 0x7f0e0063 +int string mtrl_checkbox_button_icon_path_indeterminate 0x7f0e0064 +int string mtrl_checkbox_button_icon_path_name 0x7f0e0065 +int string mtrl_checkbox_button_path_checked 0x7f0e0066 +int string mtrl_checkbox_button_path_group_name 0x7f0e0067 +int string mtrl_checkbox_button_path_name 0x7f0e0068 +int string mtrl_checkbox_button_path_unchecked 0x7f0e0069 +int string mtrl_checkbox_state_description_checked 0x7f0e006a +int string mtrl_checkbox_state_description_indeterminate 0x7f0e006b +int string mtrl_checkbox_state_description_unchecked 0x7f0e006c +int string mtrl_chip_close_icon_content_description 0x7f0e006d +int string mtrl_exceed_max_badge_number_content_description 0x7f0e006e +int string mtrl_exceed_max_badge_number_suffix 0x7f0e006f +int string mtrl_picker_a11y_next_month 0x7f0e0070 +int string mtrl_picker_a11y_prev_month 0x7f0e0071 +int string mtrl_picker_announce_current_range_selection 0x7f0e0072 +int string mtrl_picker_announce_current_selection 0x7f0e0073 +int string mtrl_picker_announce_current_selection_none 0x7f0e0074 +int string mtrl_picker_cancel 0x7f0e0075 +int string mtrl_picker_confirm 0x7f0e0076 +int string mtrl_picker_date_header_selected 0x7f0e0077 +int string mtrl_picker_date_header_title 0x7f0e0078 +int string mtrl_picker_date_header_unselected 0x7f0e0079 +int string mtrl_picker_day_of_week_column_header 0x7f0e007a +int string mtrl_picker_end_date_description 0x7f0e007b +int string mtrl_picker_invalid_format 0x7f0e007c +int string mtrl_picker_invalid_format_example 0x7f0e007d +int string mtrl_picker_invalid_format_use 0x7f0e007e +int string mtrl_picker_invalid_range 0x7f0e007f +int string mtrl_picker_navigate_to_current_year_description 0x7f0e0080 +int string mtrl_picker_navigate_to_year_description 0x7f0e0081 +int string mtrl_picker_out_of_range 0x7f0e0082 +int string mtrl_picker_range_header_only_end_selected 0x7f0e0083 +int string mtrl_picker_range_header_only_start_selected 0x7f0e0084 +int string mtrl_picker_range_header_selected 0x7f0e0085 +int string mtrl_picker_range_header_title 0x7f0e0086 +int string mtrl_picker_range_header_unselected 0x7f0e0087 +int string mtrl_picker_save 0x7f0e0088 +int string mtrl_picker_start_date_description 0x7f0e0089 +int string mtrl_picker_text_input_date_hint 0x7f0e008a +int string mtrl_picker_text_input_date_range_end_hint 0x7f0e008b +int string mtrl_picker_text_input_date_range_start_hint 0x7f0e008c +int string mtrl_picker_text_input_day_abbr 0x7f0e008d +int string mtrl_picker_text_input_month_abbr 0x7f0e008e +int string mtrl_picker_text_input_year_abbr 0x7f0e008f +int string mtrl_picker_today_description 0x7f0e0090 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0e0091 +int string mtrl_picker_toggle_to_day_selection 0x7f0e0092 +int string mtrl_picker_toggle_to_text_input_mode 0x7f0e0093 +int string mtrl_picker_toggle_to_year_selection 0x7f0e0094 +int string mtrl_switch_thumb_group_name 0x7f0e0095 +int string mtrl_switch_thumb_path_checked 0x7f0e0096 +int string mtrl_switch_thumb_path_morphing 0x7f0e0097 +int string mtrl_switch_thumb_path_name 0x7f0e0098 +int string mtrl_switch_thumb_path_pressed 0x7f0e0099 +int string mtrl_switch_thumb_path_unchecked 0x7f0e009a +int string mtrl_switch_track_decoration_path 0x7f0e009b +int string mtrl_switch_track_path 0x7f0e009c +int string mtrl_timepicker_cancel 0x7f0e009d +int string mtrl_timepicker_confirm 0x7f0e009e +int string nav_app_bar_navigate_up_description 0x7f0e009f +int string nav_app_bar_open_drawer_description 0x7f0e00a0 +int string overflow_tab_title 0x7f0e00a1 +int string password_toggle_content_description 0x7f0e00a2 +int string path_password_eye 0x7f0e00a3 +int string path_password_eye_mask_strike_through 0x7f0e00a4 +int string path_password_eye_mask_visible 0x7f0e00a5 +int string path_password_strike_through 0x7f0e00a6 +int string search_menu_title 0x7f0e00a7 +int string searchbar_scrolling_view_behavior 0x7f0e00a8 +int string searchview_clear_text_content_description 0x7f0e00a9 +int string searchview_navigation_content_description 0x7f0e00aa +int string side_sheet_accessibility_pane_title 0x7f0e00ab +int string side_sheet_behavior 0x7f0e00ac +int string status_bar_notification_info_overflow 0x7f0e00ad +int style ActionMode 0x7f0f0000 +int style AlertDialog.AppCompat 0x7f0f0001 +int style AlertDialog.AppCompat.Light 0x7f0f0002 +int style Animation.AppCompat.Dialog 0x7f0f0003 +int style Animation.AppCompat.DropDownUp 0x7f0f0004 +int style Animation.AppCompat.Tooltip 0x7f0f0005 +int style Animation.Design.BottomSheetDialog 0x7f0f0006 +int style Animation.Material3.BottomSheetDialog 0x7f0f0007 +int style Animation.Material3.SideSheetDialog 0x7f0f0008 +int style Animation.MaterialComponents.BottomSheetDialog 0x7f0f0009 +int style AppTheme 0x7f0f000a +int style AppTheme.NoActionBar 0x7f0f000b +int style Base.AlertDialog.AppCompat 0x7f0f000c +int style Base.AlertDialog.AppCompat.Light 0x7f0f000d +int style Base.Animation.AppCompat.Dialog 0x7f0f000e +int style Base.Animation.AppCompat.DropDownUp 0x7f0f000f +int style Base.Animation.AppCompat.Tooltip 0x7f0f0010 +int style Base.CardView 0x7f0f0011 +int style Base.DialogWindowTitle.AppCompat 0x7f0f0012 +int style Base.DialogWindowTitleBackground.AppCompat 0x7f0f0013 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0014 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0015 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f0016 +int style Base.TextAppearance.AppCompat 0x7f0f0017 +int style Base.TextAppearance.AppCompat.Body1 0x7f0f0018 +int style Base.TextAppearance.AppCompat.Body2 0x7f0f0019 +int style Base.TextAppearance.AppCompat.Button 0x7f0f001a +int style Base.TextAppearance.AppCompat.Caption 0x7f0f001b +int style Base.TextAppearance.AppCompat.Display1 0x7f0f001c +int style Base.TextAppearance.AppCompat.Display2 0x7f0f001d +int style Base.TextAppearance.AppCompat.Display3 0x7f0f001e +int style Base.TextAppearance.AppCompat.Display4 0x7f0f001f +int style Base.TextAppearance.AppCompat.Headline 0x7f0f0020 +int style Base.TextAppearance.AppCompat.Inverse 0x7f0f0021 +int style Base.TextAppearance.AppCompat.Large 0x7f0f0022 +int style Base.TextAppearance.AppCompat.Large.Inverse 0x7f0f0023 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f0024 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f0025 +int style Base.TextAppearance.AppCompat.Medium 0x7f0f0026 +int style Base.TextAppearance.AppCompat.Medium.Inverse 0x7f0f0027 +int style Base.TextAppearance.AppCompat.Menu 0x7f0f0028 +int style Base.TextAppearance.AppCompat.SearchResult 0x7f0f0029 +int style Base.TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f002a +int style Base.TextAppearance.AppCompat.SearchResult.Title 0x7f0f002b +int style Base.TextAppearance.AppCompat.Small 0x7f0f002c +int style Base.TextAppearance.AppCompat.Small.Inverse 0x7f0f002d +int style Base.TextAppearance.AppCompat.Subhead 0x7f0f002e +int style Base.TextAppearance.AppCompat.Subhead.Inverse 0x7f0f002f +int style Base.TextAppearance.AppCompat.Title 0x7f0f0030 +int style Base.TextAppearance.AppCompat.Title.Inverse 0x7f0f0031 +int style Base.TextAppearance.AppCompat.Tooltip 0x7f0f0032 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f0033 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f0034 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f0035 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f0036 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f0037 +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f0038 +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f0039 +int style Base.TextAppearance.AppCompat.Widget.Button 0x7f0f003a +int style Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f003b +int style Base.TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f003c +int style Base.TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f003d +int style Base.TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f003e +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f003f +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f0040 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f0041 +int style Base.TextAppearance.AppCompat.Widget.Switch 0x7f0f0042 +int style Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f0043 +int style Base.TextAppearance.Material3.Search 0x7f0f0044 +int style Base.TextAppearance.MaterialComponents.Badge 0x7f0f0045 +int style Base.TextAppearance.MaterialComponents.Button 0x7f0f0046 +int style Base.TextAppearance.MaterialComponents.Headline6 0x7f0f0047 +int style Base.TextAppearance.MaterialComponents.Subtitle2 0x7f0f0048 +int style Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f0049 +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f004a +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f004b +int style Base.Theme.AppCompat 0x7f0f004c +int style Base.Theme.AppCompat.CompactMenu 0x7f0f004d +int style Base.Theme.AppCompat.Dialog 0x7f0f004e +int style Base.Theme.AppCompat.Dialog.Alert 0x7f0f004f +int style Base.Theme.AppCompat.Dialog.FixedSize 0x7f0f0050 +int style Base.Theme.AppCompat.Dialog.MinWidth 0x7f0f0051 +int style Base.Theme.AppCompat.DialogWhenLarge 0x7f0f0052 +int style Base.Theme.AppCompat.Light 0x7f0f0053 +int style Base.Theme.AppCompat.Light.DarkActionBar 0x7f0f0054 +int style Base.Theme.AppCompat.Light.Dialog 0x7f0f0055 +int style Base.Theme.AppCompat.Light.Dialog.Alert 0x7f0f0056 +int style Base.Theme.AppCompat.Light.Dialog.FixedSize 0x7f0f0057 +int style Base.Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f0058 +int style Base.Theme.AppCompat.Light.DialogWhenLarge 0x7f0f0059 +int style Base.Theme.Material3.Dark 0x7f0f005a +int style Base.Theme.Material3.Dark.BottomSheetDialog 0x7f0f005b +int style Base.Theme.Material3.Dark.Dialog 0x7f0f005c +int style Base.Theme.Material3.Dark.SideSheetDialog 0x7f0f005d +int style Base.Theme.Material3.Light 0x7f0f005e +int style Base.Theme.Material3.Light.BottomSheetDialog 0x7f0f005f +int style Base.Theme.Material3.Light.Dialog 0x7f0f0060 +int style Base.Theme.Material3.Light.SideSheetDialog 0x7f0f0061 +int style Base.Theme.MaterialComponents 0x7f0f0062 +int style Base.Theme.MaterialComponents.Bridge 0x7f0f0063 +int style Base.Theme.MaterialComponents.CompactMenu 0x7f0f0064 +int style Base.Theme.MaterialComponents.Dialog 0x7f0f0065 +int style Base.Theme.MaterialComponents.Dialog.Alert 0x7f0f0066 +int style Base.Theme.MaterialComponents.Dialog.Bridge 0x7f0f0067 +int style Base.Theme.MaterialComponents.Dialog.FixedSize 0x7f0f0068 +int style Base.Theme.MaterialComponents.Dialog.MinWidth 0x7f0f0069 +int style Base.Theme.MaterialComponents.DialogWhenLarge 0x7f0f006a +int style Base.Theme.MaterialComponents.Light 0x7f0f006b +int style Base.Theme.MaterialComponents.Light.Bridge 0x7f0f006c +int style Base.Theme.MaterialComponents.Light.DarkActionBar 0x7f0f006d +int style Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f006e +int style Base.Theme.MaterialComponents.Light.Dialog 0x7f0f006f +int style Base.Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0070 +int style Base.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0071 +int style Base.Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f0072 +int style Base.Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f0073 +int style Base.Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f0074 +int style Base.ThemeOverlay.AppCompat 0x7f0f0075 +int style Base.ThemeOverlay.AppCompat.ActionBar 0x7f0f0076 +int style Base.ThemeOverlay.AppCompat.Dark 0x7f0f0077 +int style Base.ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f0078 +int style Base.ThemeOverlay.AppCompat.Dialog 0x7f0f0079 +int style Base.ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f007a +int style Base.ThemeOverlay.AppCompat.Light 0x7f0f007b +int style Base.ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f007c +int style Base.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f007d +int style Base.ThemeOverlay.Material3.Dialog 0x7f0f007e +int style Base.ThemeOverlay.Material3.SideSheetDialog 0x7f0f007f +int style Base.ThemeOverlay.Material3.TextInputEditText 0x7f0f0080 +int style Base.ThemeOverlay.MaterialComponents.Dialog 0x7f0f0081 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f0082 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f0083 +int style Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f0084 +int style Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f0085 +int style Base.V14.Theme.Material3.Dark 0x7f0f0086 +int style Base.V14.Theme.Material3.Dark.BottomSheetDialog 0x7f0f0087 +int style Base.V14.Theme.Material3.Dark.Dialog 0x7f0f0088 +int style Base.V14.Theme.Material3.Dark.SideSheetDialog 0x7f0f0089 +int style Base.V14.Theme.Material3.Light 0x7f0f008a +int style Base.V14.Theme.Material3.Light.BottomSheetDialog 0x7f0f008b +int style Base.V14.Theme.Material3.Light.Dialog 0x7f0f008c +int style Base.V14.Theme.Material3.Light.SideSheetDialog 0x7f0f008d +int style Base.V14.Theme.MaterialComponents 0x7f0f008e +int style Base.V14.Theme.MaterialComponents.Bridge 0x7f0f008f +int style Base.V14.Theme.MaterialComponents.Dialog 0x7f0f0090 +int style Base.V14.Theme.MaterialComponents.Dialog.Bridge 0x7f0f0091 +int style Base.V14.Theme.MaterialComponents.Light 0x7f0f0092 +int style Base.V14.Theme.MaterialComponents.Light.Bridge 0x7f0f0093 +int style Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0094 +int style Base.V14.Theme.MaterialComponents.Light.Dialog 0x7f0f0095 +int style Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0096 +int style Base.V14.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0097 +int style Base.V14.ThemeOverlay.Material3.SideSheetDialog 0x7f0f0098 +int style Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f0099 +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog 0x7f0f009a +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f009b +int style Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f009c +int style Base.V14.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f009d +int style Base.V21.Theme.AppCompat 0x7f0f009e +int style Base.V21.Theme.AppCompat.Dialog 0x7f0f009f +int style Base.V21.Theme.AppCompat.Light 0x7f0f00a0 +int style Base.V21.Theme.AppCompat.Light.Dialog 0x7f0f00a1 +int style Base.V21.Theme.MaterialComponents 0x7f0f00a2 +int style Base.V21.Theme.MaterialComponents.Dialog 0x7f0f00a3 +int style Base.V21.Theme.MaterialComponents.Light 0x7f0f00a4 +int style Base.V21.Theme.MaterialComponents.Light.Dialog 0x7f0f00a5 +int style Base.V21.ThemeOverlay.AppCompat.Dialog 0x7f0f00a6 +int style Base.V21.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f00a7 +int style Base.V21.ThemeOverlay.Material3.SideSheetDialog 0x7f0f00a8 +int style Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f00a9 +int style Base.V22.Theme.AppCompat 0x7f0f00aa +int style Base.V22.Theme.AppCompat.Light 0x7f0f00ab +int style Base.V23.Theme.AppCompat 0x7f0f00ac +int style Base.V23.Theme.AppCompat.Light 0x7f0f00ad +int style Base.V24.Theme.Material3.Dark 0x7f0f00ae +int style Base.V24.Theme.Material3.Dark.Dialog 0x7f0f00af +int style Base.V24.Theme.Material3.Light 0x7f0f00b0 +int style Base.V24.Theme.Material3.Light.Dialog 0x7f0f00b1 +int style Base.V26.Theme.AppCompat 0x7f0f00b2 +int style Base.V26.Theme.AppCompat.Light 0x7f0f00b3 +int style Base.V26.Widget.AppCompat.Toolbar 0x7f0f00b4 +int style Base.V28.Theme.AppCompat 0x7f0f00b5 +int style Base.V28.Theme.AppCompat.Light 0x7f0f00b6 +int style Base.V7.Theme.AppCompat 0x7f0f00b7 +int style Base.V7.Theme.AppCompat.Dialog 0x7f0f00b8 +int style Base.V7.Theme.AppCompat.Light 0x7f0f00b9 +int style Base.V7.Theme.AppCompat.Light.Dialog 0x7f0f00ba +int style Base.V7.ThemeOverlay.AppCompat.Dialog 0x7f0f00bb +int style Base.V7.Widget.AppCompat.AutoCompleteTextView 0x7f0f00bc +int style Base.V7.Widget.AppCompat.EditText 0x7f0f00bd +int style Base.V7.Widget.AppCompat.Toolbar 0x7f0f00be +int style Base.Widget.AppCompat.ActionBar 0x7f0f00bf +int style Base.Widget.AppCompat.ActionBar.Solid 0x7f0f00c0 +int style Base.Widget.AppCompat.ActionBar.TabBar 0x7f0f00c1 +int style Base.Widget.AppCompat.ActionBar.TabText 0x7f0f00c2 +int style Base.Widget.AppCompat.ActionBar.TabView 0x7f0f00c3 +int style Base.Widget.AppCompat.ActionButton 0x7f0f00c4 +int style Base.Widget.AppCompat.ActionButton.CloseMode 0x7f0f00c5 +int style Base.Widget.AppCompat.ActionButton.Overflow 0x7f0f00c6 +int style Base.Widget.AppCompat.ActionMode 0x7f0f00c7 +int style Base.Widget.AppCompat.ActivityChooserView 0x7f0f00c8 +int style Base.Widget.AppCompat.AutoCompleteTextView 0x7f0f00c9 +int style Base.Widget.AppCompat.Button 0x7f0f00ca +int style Base.Widget.AppCompat.Button.Borderless 0x7f0f00cb +int style Base.Widget.AppCompat.Button.Borderless.Colored 0x7f0f00cc +int style Base.Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f00cd +int style Base.Widget.AppCompat.Button.Colored 0x7f0f00ce +int style Base.Widget.AppCompat.Button.Small 0x7f0f00cf +int style Base.Widget.AppCompat.ButtonBar 0x7f0f00d0 +int style Base.Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f00d1 +int style Base.Widget.AppCompat.CompoundButton.CheckBox 0x7f0f00d2 +int style Base.Widget.AppCompat.CompoundButton.RadioButton 0x7f0f00d3 +int style Base.Widget.AppCompat.CompoundButton.Switch 0x7f0f00d4 +int style Base.Widget.AppCompat.DrawerArrowToggle 0x7f0f00d5 +int style Base.Widget.AppCompat.DrawerArrowToggle.Common 0x7f0f00d6 +int style Base.Widget.AppCompat.DropDownItem.Spinner 0x7f0f00d7 +int style Base.Widget.AppCompat.EditText 0x7f0f00d8 +int style Base.Widget.AppCompat.ImageButton 0x7f0f00d9 +int style Base.Widget.AppCompat.Light.ActionBar 0x7f0f00da +int style Base.Widget.AppCompat.Light.ActionBar.Solid 0x7f0f00db +int style Base.Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f00dc +int style Base.Widget.AppCompat.Light.ActionBar.TabText 0x7f0f00dd +int style Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f00de +int style Base.Widget.AppCompat.Light.ActionBar.TabView 0x7f0f00df +int style Base.Widget.AppCompat.Light.PopupMenu 0x7f0f00e0 +int style Base.Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f00e1 +int style Base.Widget.AppCompat.ListMenuView 0x7f0f00e2 +int style Base.Widget.AppCompat.ListPopupWindow 0x7f0f00e3 +int style Base.Widget.AppCompat.ListView 0x7f0f00e4 +int style Base.Widget.AppCompat.ListView.DropDown 0x7f0f00e5 +int style Base.Widget.AppCompat.ListView.Menu 0x7f0f00e6 +int style Base.Widget.AppCompat.PopupMenu 0x7f0f00e7 +int style Base.Widget.AppCompat.PopupMenu.Overflow 0x7f0f00e8 +int style Base.Widget.AppCompat.PopupWindow 0x7f0f00e9 +int style Base.Widget.AppCompat.ProgressBar 0x7f0f00ea +int style Base.Widget.AppCompat.ProgressBar.Horizontal 0x7f0f00eb +int style Base.Widget.AppCompat.RatingBar 0x7f0f00ec +int style Base.Widget.AppCompat.RatingBar.Indicator 0x7f0f00ed +int style Base.Widget.AppCompat.RatingBar.Small 0x7f0f00ee +int style Base.Widget.AppCompat.SearchView 0x7f0f00ef +int style Base.Widget.AppCompat.SearchView.ActionBar 0x7f0f00f0 +int style Base.Widget.AppCompat.SeekBar 0x7f0f00f1 +int style Base.Widget.AppCompat.SeekBar.Discrete 0x7f0f00f2 +int style Base.Widget.AppCompat.Spinner 0x7f0f00f3 +int style Base.Widget.AppCompat.Spinner.Underlined 0x7f0f00f4 +int style Base.Widget.AppCompat.TextView 0x7f0f00f5 +int style Base.Widget.AppCompat.TextView.SpinnerItem 0x7f0f00f6 +int style Base.Widget.AppCompat.Toolbar 0x7f0f00f7 +int style Base.Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f00f8 +int style Base.Widget.Design.TabLayout 0x7f0f00f9 +int style Base.Widget.Material3.ActionBar.Solid 0x7f0f00fa +int style Base.Widget.Material3.ActionMode 0x7f0f00fb +int style Base.Widget.Material3.BottomNavigationView 0x7f0f00fc +int style Base.Widget.Material3.CardView 0x7f0f00fd +int style Base.Widget.Material3.Chip 0x7f0f00fe +int style Base.Widget.Material3.CollapsingToolbar 0x7f0f00ff +int style Base.Widget.Material3.CompoundButton.CheckBox 0x7f0f0100 +int style Base.Widget.Material3.CompoundButton.RadioButton 0x7f0f0101 +int style Base.Widget.Material3.CompoundButton.Switch 0x7f0f0102 +int style Base.Widget.Material3.ExtendedFloatingActionButton 0x7f0f0103 +int style Base.Widget.Material3.ExtendedFloatingActionButton.Icon 0x7f0f0104 +int style Base.Widget.Material3.FloatingActionButton 0x7f0f0105 +int style Base.Widget.Material3.FloatingActionButton.Large 0x7f0f0106 +int style Base.Widget.Material3.FloatingActionButton.Small 0x7f0f0107 +int style Base.Widget.Material3.Light.ActionBar.Solid 0x7f0f0108 +int style Base.Widget.Material3.MaterialCalendar.NavigationButton 0x7f0f0109 +int style Base.Widget.Material3.Snackbar 0x7f0f010a +int style Base.Widget.Material3.TabLayout 0x7f0f010b +int style Base.Widget.Material3.TabLayout.OnSurface 0x7f0f010c +int style Base.Widget.Material3.TabLayout.Secondary 0x7f0f010d +int style Base.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f010e +int style Base.Widget.MaterialComponents.CheckedTextView 0x7f0f010f +int style Base.Widget.MaterialComponents.Chip 0x7f0f0110 +int style Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0111 +int style Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton 0x7f0f0112 +int style Base.Widget.MaterialComponents.PopupMenu 0x7f0f0113 +int style Base.Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f0114 +int style Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f0115 +int style Base.Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f0116 +int style Base.Widget.MaterialComponents.Slider 0x7f0f0117 +int style Base.Widget.MaterialComponents.Snackbar 0x7f0f0118 +int style Base.Widget.MaterialComponents.TextInputEditText 0x7f0f0119 +int style Base.Widget.MaterialComponents.TextInputLayout 0x7f0f011a +int style Base.Widget.MaterialComponents.TextView 0x7f0f011b +int style CardView 0x7f0f011c +int style CardView.Dark 0x7f0f011d +int style CardView.Light 0x7f0f011e +int style MainTheme 0x7f0f011f +int style MainTheme.Base 0x7f0f0120 +int style MainTheme.NoActionBar 0x7f0f0121 +int style MaterialAlertDialog.Material3 0x7f0f0122 +int style MaterialAlertDialog.Material3.Animation 0x7f0f0123 +int style MaterialAlertDialog.Material3.Body.Text 0x7f0f0124 +int style MaterialAlertDialog.Material3.Body.Text.CenterStacked 0x7f0f0125 +int style MaterialAlertDialog.Material3.Title.Icon 0x7f0f0126 +int style MaterialAlertDialog.Material3.Title.Icon.CenterStacked 0x7f0f0127 +int style MaterialAlertDialog.Material3.Title.Panel 0x7f0f0128 +int style MaterialAlertDialog.Material3.Title.Panel.CenterStacked 0x7f0f0129 +int style MaterialAlertDialog.Material3.Title.Text 0x7f0f012a +int style MaterialAlertDialog.Material3.Title.Text.CenterStacked 0x7f0f012b +int style MaterialAlertDialog.MaterialComponents 0x7f0f012c +int style MaterialAlertDialog.MaterialComponents.Body.Text 0x7f0f012d +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar 0x7f0f012e +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner 0x7f0f012f +int style MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0130 +int style MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked 0x7f0f0131 +int style MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0132 +int style MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked 0x7f0f0133 +int style MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f0134 +int style MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked 0x7f0f0135 +int style Maui.MainTheme 0x7f0f0136 +int style Maui.MainTheme.NoActionBar 0x7f0f0137 +int style Maui.SplashTheme 0x7f0f0138 +int style MauiAlertDialogTheme 0x7f0f0139 +int style MauiCheckBox 0x7f0f013a +int style MauiMaterialButton 0x7f0f013b +int style Platform.AppCompat 0x7f0f013c +int style Platform.AppCompat.Light 0x7f0f013d +int style Platform.MaterialComponents 0x7f0f013e +int style Platform.MaterialComponents.Dialog 0x7f0f013f +int style Platform.MaterialComponents.Light 0x7f0f0140 +int style Platform.MaterialComponents.Light.Dialog 0x7f0f0141 +int style Platform.ThemeOverlay.AppCompat 0x7f0f0142 +int style Platform.ThemeOverlay.AppCompat.Dark 0x7f0f0143 +int style Platform.ThemeOverlay.AppCompat.Light 0x7f0f0144 +int style Platform.V21.AppCompat 0x7f0f0145 +int style Platform.V21.AppCompat.Light 0x7f0f0146 +int style Platform.V25.AppCompat 0x7f0f0147 +int style Platform.V25.AppCompat.Light 0x7f0f0148 +int style Platform.Widget.AppCompat.Spinner 0x7f0f0149 +int style RtlOverlay.DialogWindowTitle.AppCompat 0x7f0f014a +int style RtlOverlay.Widget.AppCompat.ActionBar.TitleItem 0x7f0f014b +int style RtlOverlay.Widget.AppCompat.DialogTitle.Icon 0x7f0f014c +int style RtlOverlay.Widget.AppCompat.PopupMenuItem 0x7f0f014d +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup 0x7f0f014e +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut 0x7f0f014f +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow 0x7f0f0150 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Text 0x7f0f0151 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Title 0x7f0f0152 +int style RtlOverlay.Widget.AppCompat.Search.DropDown 0x7f0f0153 +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 0x7f0f0154 +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 0x7f0f0155 +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Query 0x7f0f0156 +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Text 0x7f0f0157 +int style RtlOverlay.Widget.AppCompat.SearchView.MagIcon 0x7f0f0158 +int style RtlUnderlay.Widget.AppCompat.ActionButton 0x7f0f0159 +int style RtlUnderlay.Widget.AppCompat.ActionButton.Overflow 0x7f0f015a +int style ShapeAppearance.M3.Comp.Badge.Large.Shape 0x7f0f015b +int style ShapeAppearance.M3.Comp.Badge.Shape 0x7f0f015c +int style ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape 0x7f0f015d +int style ShapeAppearance.M3.Comp.FilledButton.Container.Shape 0x7f0f015e +int style ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape 0x7f0f015f +int style ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape 0x7f0f0160 +int style ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape 0x7f0f0161 +int style ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape 0x7f0f0162 +int style ShapeAppearance.M3.Comp.SearchBar.Container.Shape 0x7f0f0163 +int style ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape 0x7f0f0164 +int style ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape 0x7f0f0165 +int style ShapeAppearance.M3.Comp.Switch.Handle.Shape 0x7f0f0166 +int style ShapeAppearance.M3.Comp.Switch.StateLayer.Shape 0x7f0f0167 +int style ShapeAppearance.M3.Comp.Switch.Track.Shape 0x7f0f0168 +int style ShapeAppearance.M3.Comp.TextButton.Container.Shape 0x7f0f0169 +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge 0x7f0f016a +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall 0x7f0f016b +int style ShapeAppearance.M3.Sys.Shape.Corner.Full 0x7f0f016c +int style ShapeAppearance.M3.Sys.Shape.Corner.Large 0x7f0f016d +int style ShapeAppearance.M3.Sys.Shape.Corner.Medium 0x7f0f016e +int style ShapeAppearance.M3.Sys.Shape.Corner.None 0x7f0f016f +int style ShapeAppearance.M3.Sys.Shape.Corner.Small 0x7f0f0170 +int style ShapeAppearance.Material3.Corner.ExtraLarge 0x7f0f0171 +int style ShapeAppearance.Material3.Corner.ExtraSmall 0x7f0f0172 +int style ShapeAppearance.Material3.Corner.Full 0x7f0f0173 +int style ShapeAppearance.Material3.Corner.Large 0x7f0f0174 +int style ShapeAppearance.Material3.Corner.Medium 0x7f0f0175 +int style ShapeAppearance.Material3.Corner.None 0x7f0f0176 +int style ShapeAppearance.Material3.Corner.Small 0x7f0f0177 +int style ShapeAppearance.Material3.LargeComponent 0x7f0f0178 +int style ShapeAppearance.Material3.MediumComponent 0x7f0f0179 +int style ShapeAppearance.Material3.NavigationBarView.ActiveIndicator 0x7f0f017a +int style ShapeAppearance.Material3.SmallComponent 0x7f0f017b +int style ShapeAppearance.Material3.Tooltip 0x7f0f017c +int style ShapeAppearance.MaterialComponents 0x7f0f017d +int style ShapeAppearance.MaterialComponents.Badge 0x7f0f017e +int style ShapeAppearance.MaterialComponents.LargeComponent 0x7f0f017f +int style ShapeAppearance.MaterialComponents.MediumComponent 0x7f0f0180 +int style ShapeAppearance.MaterialComponents.SmallComponent 0x7f0f0181 +int style ShapeAppearance.MaterialComponents.Tooltip 0x7f0f0182 +int style ShapeAppearanceOverlay.Material3.Button 0x7f0f0183 +int style ShapeAppearanceOverlay.Material3.Chip 0x7f0f0184 +int style ShapeAppearanceOverlay.Material3.Corner.Bottom 0x7f0f0185 +int style ShapeAppearanceOverlay.Material3.Corner.Left 0x7f0f0186 +int style ShapeAppearanceOverlay.Material3.Corner.Right 0x7f0f0187 +int style ShapeAppearanceOverlay.Material3.Corner.Top 0x7f0f0188 +int style ShapeAppearanceOverlay.Material3.FloatingActionButton 0x7f0f0189 +int style ShapeAppearanceOverlay.Material3.NavigationView.Item 0x7f0f018a +int style ShapeAppearanceOverlay.Material3.SearchBar 0x7f0f018b +int style ShapeAppearanceOverlay.Material3.SearchView 0x7f0f018c +int style ShapeAppearanceOverlay.MaterialAlertDialog.Material3 0x7f0f018d +int style ShapeAppearanceOverlay.MaterialComponents.BottomSheet 0x7f0f018e +int style ShapeAppearanceOverlay.MaterialComponents.Chip 0x7f0f018f +int style ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton 0x7f0f0190 +int style ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton 0x7f0f0191 +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day 0x7f0f0192 +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen 0x7f0f0193 +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year 0x7f0f0194 +int style ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox 0x7f0f0195 +int style TextAppearance.AppCompat 0x7f0f0196 +int style TextAppearance.AppCompat.Body1 0x7f0f0197 +int style TextAppearance.AppCompat.Body2 0x7f0f0198 +int style TextAppearance.AppCompat.Button 0x7f0f0199 +int style TextAppearance.AppCompat.Caption 0x7f0f019a +int style TextAppearance.AppCompat.Display1 0x7f0f019b +int style TextAppearance.AppCompat.Display2 0x7f0f019c +int style TextAppearance.AppCompat.Display3 0x7f0f019d +int style TextAppearance.AppCompat.Display4 0x7f0f019e +int style TextAppearance.AppCompat.Headline 0x7f0f019f +int style TextAppearance.AppCompat.Inverse 0x7f0f01a0 +int style TextAppearance.AppCompat.Large 0x7f0f01a1 +int style TextAppearance.AppCompat.Large.Inverse 0x7f0f01a2 +int style TextAppearance.AppCompat.Light.SearchResult.Subtitle 0x7f0f01a3 +int style TextAppearance.AppCompat.Light.SearchResult.Title 0x7f0f01a4 +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f01a5 +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f01a6 +int style TextAppearance.AppCompat.Medium 0x7f0f01a7 +int style TextAppearance.AppCompat.Medium.Inverse 0x7f0f01a8 +int style TextAppearance.AppCompat.Menu 0x7f0f01a9 +int style TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f01aa +int style TextAppearance.AppCompat.SearchResult.Title 0x7f0f01ab +int style TextAppearance.AppCompat.Small 0x7f0f01ac +int style TextAppearance.AppCompat.Small.Inverse 0x7f0f01ad +int style TextAppearance.AppCompat.Subhead 0x7f0f01ae +int style TextAppearance.AppCompat.Subhead.Inverse 0x7f0f01af +int style TextAppearance.AppCompat.Title 0x7f0f01b0 +int style TextAppearance.AppCompat.Title.Inverse 0x7f0f01b1 +int style TextAppearance.AppCompat.Tooltip 0x7f0f01b2 +int style TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f01b3 +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f01b4 +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f01b5 +int style TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f01b6 +int style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f01b7 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f01b8 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse 0x7f0f01b9 +int style TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f01ba +int style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse 0x7f0f01bb +int style TextAppearance.AppCompat.Widget.Button 0x7f0f01bc +int style TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f01bd +int style TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f01be +int style TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f01bf +int style TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f01c0 +int style TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f01c1 +int style TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f01c2 +int style TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f01c3 +int style TextAppearance.AppCompat.Widget.Switch 0x7f0f01c4 +int style TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f01c5 +int style TextAppearance.Compat.Notification 0x7f0f01c6 +int style TextAppearance.Compat.Notification.Info 0x7f0f01c7 +int style TextAppearance.Compat.Notification.Line2 0x7f0f01c8 +int style TextAppearance.Compat.Notification.Time 0x7f0f01c9 +int style TextAppearance.Compat.Notification.Title 0x7f0f01ca +int style TextAppearance.Design.CollapsingToolbar.Expanded 0x7f0f01cb +int style TextAppearance.Design.Counter 0x7f0f01cc +int style TextAppearance.Design.Counter.Overflow 0x7f0f01cd +int style TextAppearance.Design.Error 0x7f0f01ce +int style TextAppearance.Design.HelperText 0x7f0f01cf +int style TextAppearance.Design.Hint 0x7f0f01d0 +int style TextAppearance.Design.Placeholder 0x7f0f01d1 +int style TextAppearance.Design.Prefix 0x7f0f01d2 +int style TextAppearance.Design.Snackbar.Message 0x7f0f01d3 +int style TextAppearance.Design.Suffix 0x7f0f01d4 +int style TextAppearance.Design.Tab 0x7f0f01d5 +int style TextAppearance.M3.Sys.Typescale.BodyLarge 0x7f0f01d6 +int style TextAppearance.M3.Sys.Typescale.BodyMedium 0x7f0f01d7 +int style TextAppearance.M3.Sys.Typescale.BodySmall 0x7f0f01d8 +int style TextAppearance.M3.Sys.Typescale.DisplayLarge 0x7f0f01d9 +int style TextAppearance.M3.Sys.Typescale.DisplayMedium 0x7f0f01da +int style TextAppearance.M3.Sys.Typescale.DisplaySmall 0x7f0f01db +int style TextAppearance.M3.Sys.Typescale.HeadlineLarge 0x7f0f01dc +int style TextAppearance.M3.Sys.Typescale.HeadlineMedium 0x7f0f01dd +int style TextAppearance.M3.Sys.Typescale.HeadlineSmall 0x7f0f01de +int style TextAppearance.M3.Sys.Typescale.LabelLarge 0x7f0f01df +int style TextAppearance.M3.Sys.Typescale.LabelMedium 0x7f0f01e0 +int style TextAppearance.M3.Sys.Typescale.LabelSmall 0x7f0f01e1 +int style TextAppearance.M3.Sys.Typescale.TitleLarge 0x7f0f01e2 +int style TextAppearance.M3.Sys.Typescale.TitleMedium 0x7f0f01e3 +int style TextAppearance.M3.Sys.Typescale.TitleSmall 0x7f0f01e4 +int style TextAppearance.Material3.ActionBar.Subtitle 0x7f0f01e5 +int style TextAppearance.Material3.ActionBar.Title 0x7f0f01e6 +int style TextAppearance.Material3.BodyLarge 0x7f0f01e7 +int style TextAppearance.Material3.BodyMedium 0x7f0f01e8 +int style TextAppearance.Material3.BodySmall 0x7f0f01e9 +int style TextAppearance.Material3.DisplayLarge 0x7f0f01ea +int style TextAppearance.Material3.DisplayMedium 0x7f0f01eb +int style TextAppearance.Material3.DisplaySmall 0x7f0f01ec +int style TextAppearance.Material3.HeadlineLarge 0x7f0f01ed +int style TextAppearance.Material3.HeadlineMedium 0x7f0f01ee +int style TextAppearance.Material3.HeadlineSmall 0x7f0f01ef +int style TextAppearance.Material3.LabelLarge 0x7f0f01f0 +int style TextAppearance.Material3.LabelMedium 0x7f0f01f1 +int style TextAppearance.Material3.LabelSmall 0x7f0f01f2 +int style TextAppearance.Material3.MaterialTimePicker.Title 0x7f0f01f3 +int style TextAppearance.Material3.SearchBar 0x7f0f01f4 +int style TextAppearance.Material3.SearchView 0x7f0f01f5 +int style TextAppearance.Material3.SearchView.Prefix 0x7f0f01f6 +int style TextAppearance.Material3.TitleLarge 0x7f0f01f7 +int style TextAppearance.Material3.TitleMedium 0x7f0f01f8 +int style TextAppearance.Material3.TitleSmall 0x7f0f01f9 +int style TextAppearance.MaterialComponents.Badge 0x7f0f01fa +int style TextAppearance.MaterialComponents.Body1 0x7f0f01fb +int style TextAppearance.MaterialComponents.Body2 0x7f0f01fc +int style TextAppearance.MaterialComponents.Button 0x7f0f01fd +int style TextAppearance.MaterialComponents.Caption 0x7f0f01fe +int style TextAppearance.MaterialComponents.Chip 0x7f0f01ff +int style TextAppearance.MaterialComponents.Headline1 0x7f0f0200 +int style TextAppearance.MaterialComponents.Headline2 0x7f0f0201 +int style TextAppearance.MaterialComponents.Headline3 0x7f0f0202 +int style TextAppearance.MaterialComponents.Headline4 0x7f0f0203 +int style TextAppearance.MaterialComponents.Headline5 0x7f0f0204 +int style TextAppearance.MaterialComponents.Headline6 0x7f0f0205 +int style TextAppearance.MaterialComponents.Overline 0x7f0f0206 +int style TextAppearance.MaterialComponents.Subtitle1 0x7f0f0207 +int style TextAppearance.MaterialComponents.Subtitle2 0x7f0f0208 +int style TextAppearance.MaterialComponents.TimePicker.Title 0x7f0f0209 +int style TextAppearance.MaterialComponents.Tooltip 0x7f0f020a +int style TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f020b +int style TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f020c +int style TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f020d +int style Theme.AppCompat 0x7f0f020e +int style Theme.AppCompat.CompactMenu 0x7f0f020f +int style Theme.AppCompat.DayNight 0x7f0f0210 +int style Theme.AppCompat.DayNight.DarkActionBar 0x7f0f0211 +int style Theme.AppCompat.DayNight.Dialog 0x7f0f0212 +int style Theme.AppCompat.DayNight.Dialog.Alert 0x7f0f0213 +int style Theme.AppCompat.DayNight.Dialog.MinWidth 0x7f0f0214 +int style Theme.AppCompat.DayNight.DialogWhenLarge 0x7f0f0215 +int style Theme.AppCompat.DayNight.NoActionBar 0x7f0f0216 +int style Theme.AppCompat.Dialog 0x7f0f0217 +int style Theme.AppCompat.Dialog.Alert 0x7f0f0218 +int style Theme.AppCompat.Dialog.MinWidth 0x7f0f0219 +int style Theme.AppCompat.DialogWhenLarge 0x7f0f021a +int style Theme.AppCompat.Empty 0x7f0f021b +int style Theme.AppCompat.Light 0x7f0f021c +int style Theme.AppCompat.Light.DarkActionBar 0x7f0f021d +int style Theme.AppCompat.Light.Dialog 0x7f0f021e +int style Theme.AppCompat.Light.Dialog.Alert 0x7f0f021f +int style Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f0220 +int style Theme.AppCompat.Light.DialogWhenLarge 0x7f0f0221 +int style Theme.AppCompat.Light.NoActionBar 0x7f0f0222 +int style Theme.AppCompat.NoActionBar 0x7f0f0223 +int style Theme.Design 0x7f0f0224 +int style Theme.Design.BottomSheetDialog 0x7f0f0225 +int style Theme.Design.Light 0x7f0f0226 +int style Theme.Design.Light.BottomSheetDialog 0x7f0f0227 +int style Theme.Design.Light.NoActionBar 0x7f0f0228 +int style Theme.Design.NoActionBar 0x7f0f0229 +int style Theme.Material3.Dark 0x7f0f022a +int style Theme.Material3.Dark.BottomSheetDialog 0x7f0f022b +int style Theme.Material3.Dark.Dialog 0x7f0f022c +int style Theme.Material3.Dark.Dialog.Alert 0x7f0f022d +int style Theme.Material3.Dark.Dialog.MinWidth 0x7f0f022e +int style Theme.Material3.Dark.DialogWhenLarge 0x7f0f022f +int style Theme.Material3.Dark.NoActionBar 0x7f0f0230 +int style Theme.Material3.Dark.SideSheetDialog 0x7f0f0231 +int style Theme.Material3.DayNight 0x7f0f0232 +int style Theme.Material3.DayNight.BottomSheetDialog 0x7f0f0233 +int style Theme.Material3.DayNight.Dialog 0x7f0f0234 +int style Theme.Material3.DayNight.Dialog.Alert 0x7f0f0235 +int style Theme.Material3.DayNight.Dialog.MinWidth 0x7f0f0236 +int style Theme.Material3.DayNight.DialogWhenLarge 0x7f0f0237 +int style Theme.Material3.DayNight.NoActionBar 0x7f0f0238 +int style Theme.Material3.DayNight.SideSheetDialog 0x7f0f0239 +int style Theme.Material3.DynamicColors.Dark 0x7f0f023a +int style Theme.Material3.DynamicColors.DayNight 0x7f0f023b +int style Theme.Material3.DynamicColors.Light 0x7f0f023c +int style Theme.Material3.Light 0x7f0f023d +int style Theme.Material3.Light.BottomSheetDialog 0x7f0f023e +int style Theme.Material3.Light.Dialog 0x7f0f023f +int style Theme.Material3.Light.Dialog.Alert 0x7f0f0240 +int style Theme.Material3.Light.Dialog.MinWidth 0x7f0f0241 +int style Theme.Material3.Light.DialogWhenLarge 0x7f0f0242 +int style Theme.Material3.Light.NoActionBar 0x7f0f0243 +int style Theme.Material3.Light.SideSheetDialog 0x7f0f0244 +int style Theme.MaterialComponents 0x7f0f0245 +int style Theme.MaterialComponents.BottomSheetDialog 0x7f0f0246 +int style Theme.MaterialComponents.Bridge 0x7f0f0247 +int style Theme.MaterialComponents.CompactMenu 0x7f0f0248 +int style Theme.MaterialComponents.DayNight 0x7f0f0249 +int style Theme.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f024a +int style Theme.MaterialComponents.DayNight.Bridge 0x7f0f024b +int style Theme.MaterialComponents.DayNight.DarkActionBar 0x7f0f024c +int style Theme.MaterialComponents.DayNight.DarkActionBar.Bridge 0x7f0f024d +int style Theme.MaterialComponents.DayNight.Dialog 0x7f0f024e +int style Theme.MaterialComponents.DayNight.Dialog.Alert 0x7f0f024f +int style Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge 0x7f0f0250 +int style Theme.MaterialComponents.DayNight.Dialog.Bridge 0x7f0f0251 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize 0x7f0f0252 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge 0x7f0f0253 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth 0x7f0f0254 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge 0x7f0f0255 +int style Theme.MaterialComponents.DayNight.DialogWhenLarge 0x7f0f0256 +int style Theme.MaterialComponents.DayNight.NoActionBar 0x7f0f0257 +int style Theme.MaterialComponents.DayNight.NoActionBar.Bridge 0x7f0f0258 +int style Theme.MaterialComponents.Dialog 0x7f0f0259 +int style Theme.MaterialComponents.Dialog.Alert 0x7f0f025a +int style Theme.MaterialComponents.Dialog.Alert.Bridge 0x7f0f025b +int style Theme.MaterialComponents.Dialog.Bridge 0x7f0f025c +int style Theme.MaterialComponents.Dialog.FixedSize 0x7f0f025d +int style Theme.MaterialComponents.Dialog.FixedSize.Bridge 0x7f0f025e +int style Theme.MaterialComponents.Dialog.MinWidth 0x7f0f025f +int style Theme.MaterialComponents.Dialog.MinWidth.Bridge 0x7f0f0260 +int style Theme.MaterialComponents.DialogWhenLarge 0x7f0f0261 +int style Theme.MaterialComponents.Light 0x7f0f0262 +int style Theme.MaterialComponents.Light.BottomSheetDialog 0x7f0f0263 +int style Theme.MaterialComponents.Light.Bridge 0x7f0f0264 +int style Theme.MaterialComponents.Light.DarkActionBar 0x7f0f0265 +int style Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0266 +int style Theme.MaterialComponents.Light.Dialog 0x7f0f0267 +int style Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0268 +int style Theme.MaterialComponents.Light.Dialog.Alert.Bridge 0x7f0f0269 +int style Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f026a +int style Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f026b +int style Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge 0x7f0f026c +int style Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f026d +int style Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge 0x7f0f026e +int style Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f026f +int style Theme.MaterialComponents.Light.NoActionBar 0x7f0f0270 +int style Theme.MaterialComponents.Light.NoActionBar.Bridge 0x7f0f0271 +int style Theme.MaterialComponents.NoActionBar 0x7f0f0272 +int style Theme.MaterialComponents.NoActionBar.Bridge 0x7f0f0273 +int style ThemeOverlay.AppCompat 0x7f0f0274 +int style ThemeOverlay.AppCompat.ActionBar 0x7f0f0275 +int style ThemeOverlay.AppCompat.Dark 0x7f0f0276 +int style ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f0277 +int style ThemeOverlay.AppCompat.DayNight 0x7f0f0278 +int style ThemeOverlay.AppCompat.DayNight.ActionBar 0x7f0f0279 +int style ThemeOverlay.AppCompat.Dialog 0x7f0f027a +int style ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f027b +int style ThemeOverlay.AppCompat.Light 0x7f0f027c +int style ThemeOverlay.Design.TextInputEditText 0x7f0f027d +int style ThemeOverlay.Material3 0x7f0f027e +int style ThemeOverlay.Material3.ActionBar 0x7f0f027f +int style ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f0280 +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox 0x7f0f0281 +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f0282 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f0283 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f0284 +int style ThemeOverlay.Material3.BottomAppBar 0x7f0f0285 +int style ThemeOverlay.Material3.BottomAppBar.Legacy 0x7f0f0286 +int style ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0287 +int style ThemeOverlay.Material3.Button 0x7f0f0288 +int style ThemeOverlay.Material3.Button.ElevatedButton 0x7f0f0289 +int style ThemeOverlay.Material3.Button.IconButton 0x7f0f028a +int style ThemeOverlay.Material3.Button.IconButton.Filled 0x7f0f028b +int style ThemeOverlay.Material3.Button.IconButton.Filled.Tonal 0x7f0f028c +int style ThemeOverlay.Material3.Button.TextButton 0x7f0f028d +int style ThemeOverlay.Material3.Button.TextButton.Snackbar 0x7f0f028e +int style ThemeOverlay.Material3.Button.TonalButton 0x7f0f028f +int style ThemeOverlay.Material3.Chip 0x7f0f0290 +int style ThemeOverlay.Material3.Chip.Assist 0x7f0f0291 +int style ThemeOverlay.Material3.Dark 0x7f0f0292 +int style ThemeOverlay.Material3.Dark.ActionBar 0x7f0f0293 +int style ThemeOverlay.Material3.DayNight.BottomSheetDialog 0x7f0f0294 +int style ThemeOverlay.Material3.DayNight.SideSheetDialog 0x7f0f0295 +int style ThemeOverlay.Material3.Dialog 0x7f0f0296 +int style ThemeOverlay.Material3.Dialog.Alert 0x7f0f0297 +int style ThemeOverlay.Material3.Dialog.Alert.Framework 0x7f0f0298 +int style ThemeOverlay.Material3.DynamicColors.Dark 0x7f0f0299 +int style ThemeOverlay.Material3.DynamicColors.DayNight 0x7f0f029a +int style ThemeOverlay.Material3.DynamicColors.Light 0x7f0f029b +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary 0x7f0f029c +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f029d +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface 0x7f0f029e +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f029f +int style ThemeOverlay.Material3.FloatingActionButton.Primary 0x7f0f02a0 +int style ThemeOverlay.Material3.FloatingActionButton.Secondary 0x7f0f02a1 +int style ThemeOverlay.Material3.FloatingActionButton.Surface 0x7f0f02a2 +int style ThemeOverlay.Material3.FloatingActionButton.Tertiary 0x7f0f02a3 +int style ThemeOverlay.Material3.HarmonizedColors 0x7f0f02a4 +int style ThemeOverlay.Material3.HarmonizedColors.Empty 0x7f0f02a5 +int style ThemeOverlay.Material3.Light 0x7f0f02a6 +int style ThemeOverlay.Material3.Light.Dialog.Alert.Framework 0x7f0f02a7 +int style ThemeOverlay.Material3.MaterialAlertDialog 0x7f0f02a8 +int style ThemeOverlay.Material3.MaterialAlertDialog.Centered 0x7f0f02a9 +int style ThemeOverlay.Material3.MaterialCalendar 0x7f0f02aa +int style ThemeOverlay.Material3.MaterialCalendar.Fullscreen 0x7f0f02ab +int style ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f02ac +int style ThemeOverlay.Material3.MaterialTimePicker 0x7f0f02ad +int style ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f02ae +int style ThemeOverlay.Material3.NavigationView 0x7f0f02af +int style ThemeOverlay.Material3.PersonalizedColors 0x7f0f02b0 +int style ThemeOverlay.Material3.Search 0x7f0f02b1 +int style ThemeOverlay.Material3.SideSheetDialog 0x7f0f02b2 +int style ThemeOverlay.Material3.Snackbar 0x7f0f02b3 +int style ThemeOverlay.Material3.TextInputEditText 0x7f0f02b4 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox 0x7f0f02b5 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense 0x7f0f02b6 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox 0x7f0f02b7 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f02b8 +int style ThemeOverlay.Material3.Toolbar.Surface 0x7f0f02b9 +int style ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon 0x7f0f02ba +int style ThemeOverlay.MaterialComponents 0x7f0f02bb +int style ThemeOverlay.MaterialComponents.ActionBar 0x7f0f02bc +int style ThemeOverlay.MaterialComponents.ActionBar.Primary 0x7f0f02bd +int style ThemeOverlay.MaterialComponents.ActionBar.Surface 0x7f0f02be +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView 0x7f0f02bf +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f02c0 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f02c1 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f02c2 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f02c3 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Primary 0x7f0f02c4 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Surface 0x7f0f02c5 +int style ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f02c6 +int style ThemeOverlay.MaterialComponents.Dark 0x7f0f02c7 +int style ThemeOverlay.MaterialComponents.Dark.ActionBar 0x7f0f02c8 +int style ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f02c9 +int style ThemeOverlay.MaterialComponents.Dialog 0x7f0f02ca +int style ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f02cb +int style ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f02cc +int style ThemeOverlay.MaterialComponents.Light 0x7f0f02cd +int style ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f02ce +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f02cf +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered 0x7f0f02d0 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date 0x7f0f02d1 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar 0x7f0f02d2 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text 0x7f0f02d3 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day 0x7f0f02d4 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner 0x7f0f02d5 +int style ThemeOverlay.MaterialComponents.MaterialCalendar 0x7f0f02d6 +int style ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f02d7 +int style ThemeOverlay.MaterialComponents.TextInputEditText 0x7f0f02d8 +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox 0x7f0f02d9 +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f02da +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f02db +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f02dc +int style ThemeOverlay.MaterialComponents.TimePicker 0x7f0f02dd +int style ThemeOverlay.MaterialComponents.TimePicker.Display 0x7f0f02de +int style ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f02df +int style ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary 0x7f0f02e0 +int style ThemeOverlay.MaterialComponents.Toolbar.Primary 0x7f0f02e1 +int style ThemeOverlay.MaterialComponents.Toolbar.Surface 0x7f0f02e2 +int style Widget.AppCompat.ActionBar 0x7f0f02e3 +int style Widget.AppCompat.ActionBar.Solid 0x7f0f02e4 +int style Widget.AppCompat.ActionBar.TabBar 0x7f0f02e5 +int style Widget.AppCompat.ActionBar.TabText 0x7f0f02e6 +int style Widget.AppCompat.ActionBar.TabView 0x7f0f02e7 +int style Widget.AppCompat.ActionButton 0x7f0f02e8 +int style Widget.AppCompat.ActionButton.CloseMode 0x7f0f02e9 +int style Widget.AppCompat.ActionButton.Overflow 0x7f0f02ea +int style Widget.AppCompat.ActionMode 0x7f0f02eb +int style Widget.AppCompat.ActivityChooserView 0x7f0f02ec +int style Widget.AppCompat.AutoCompleteTextView 0x7f0f02ed +int style Widget.AppCompat.Button 0x7f0f02ee +int style Widget.AppCompat.Button.Borderless 0x7f0f02ef +int style Widget.AppCompat.Button.Borderless.Colored 0x7f0f02f0 +int style Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f02f1 +int style Widget.AppCompat.Button.Colored 0x7f0f02f2 +int style Widget.AppCompat.Button.Small 0x7f0f02f3 +int style Widget.AppCompat.ButtonBar 0x7f0f02f4 +int style Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f02f5 +int style Widget.AppCompat.CompoundButton.CheckBox 0x7f0f02f6 +int style Widget.AppCompat.CompoundButton.RadioButton 0x7f0f02f7 +int style Widget.AppCompat.CompoundButton.Switch 0x7f0f02f8 +int style Widget.AppCompat.DrawerArrowToggle 0x7f0f02f9 +int style Widget.AppCompat.DropDownItem.Spinner 0x7f0f02fa +int style Widget.AppCompat.EditText 0x7f0f02fb +int style Widget.AppCompat.ImageButton 0x7f0f02fc +int style Widget.AppCompat.Light.ActionBar 0x7f0f02fd +int style Widget.AppCompat.Light.ActionBar.Solid 0x7f0f02fe +int style Widget.AppCompat.Light.ActionBar.Solid.Inverse 0x7f0f02ff +int style Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f0300 +int style Widget.AppCompat.Light.ActionBar.TabBar.Inverse 0x7f0f0301 +int style Widget.AppCompat.Light.ActionBar.TabText 0x7f0f0302 +int style Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f0303 +int style Widget.AppCompat.Light.ActionBar.TabView 0x7f0f0304 +int style Widget.AppCompat.Light.ActionBar.TabView.Inverse 0x7f0f0305 +int style Widget.AppCompat.Light.ActionButton 0x7f0f0306 +int style Widget.AppCompat.Light.ActionButton.CloseMode 0x7f0f0307 +int style Widget.AppCompat.Light.ActionButton.Overflow 0x7f0f0308 +int style Widget.AppCompat.Light.ActionMode.Inverse 0x7f0f0309 +int style Widget.AppCompat.Light.ActivityChooserView 0x7f0f030a +int style Widget.AppCompat.Light.AutoCompleteTextView 0x7f0f030b +int style Widget.AppCompat.Light.DropDownItem.Spinner 0x7f0f030c +int style Widget.AppCompat.Light.ListPopupWindow 0x7f0f030d +int style Widget.AppCompat.Light.ListView.DropDown 0x7f0f030e +int style Widget.AppCompat.Light.PopupMenu 0x7f0f030f +int style Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f0310 +int style Widget.AppCompat.Light.SearchView 0x7f0f0311 +int style Widget.AppCompat.Light.Spinner.DropDown.ActionBar 0x7f0f0312 +int style Widget.AppCompat.ListMenuView 0x7f0f0313 +int style Widget.AppCompat.ListPopupWindow 0x7f0f0314 +int style Widget.AppCompat.ListView 0x7f0f0315 +int style Widget.AppCompat.ListView.DropDown 0x7f0f0316 +int style Widget.AppCompat.ListView.Menu 0x7f0f0317 +int style Widget.AppCompat.PopupMenu 0x7f0f0318 +int style Widget.AppCompat.PopupMenu.Overflow 0x7f0f0319 +int style Widget.AppCompat.PopupWindow 0x7f0f031a +int style Widget.AppCompat.ProgressBar 0x7f0f031b +int style Widget.AppCompat.ProgressBar.Horizontal 0x7f0f031c +int style Widget.AppCompat.RatingBar 0x7f0f031d +int style Widget.AppCompat.RatingBar.Indicator 0x7f0f031e +int style Widget.AppCompat.RatingBar.Small 0x7f0f031f +int style Widget.AppCompat.SearchView 0x7f0f0320 +int style Widget.AppCompat.SearchView.ActionBar 0x7f0f0321 +int style Widget.AppCompat.SeekBar 0x7f0f0322 +int style Widget.AppCompat.SeekBar.Discrete 0x7f0f0323 +int style Widget.AppCompat.Spinner 0x7f0f0324 +int style Widget.AppCompat.Spinner.DropDown 0x7f0f0325 +int style Widget.AppCompat.Spinner.DropDown.ActionBar 0x7f0f0326 +int style Widget.AppCompat.Spinner.Underlined 0x7f0f0327 +int style Widget.AppCompat.TextView 0x7f0f0328 +int style Widget.AppCompat.TextView.SpinnerItem 0x7f0f0329 +int style Widget.AppCompat.Toolbar 0x7f0f032a +int style Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f032b +int style Widget.Compat.NotificationActionContainer 0x7f0f032c +int style Widget.Compat.NotificationActionText 0x7f0f032d +int style Widget.Design.AppBarLayout 0x7f0f032e +int style Widget.Design.BottomNavigationView 0x7f0f032f +int style Widget.Design.BottomSheet.Modal 0x7f0f0330 +int style Widget.Design.CollapsingToolbar 0x7f0f0331 +int style Widget.Design.FloatingActionButton 0x7f0f0332 +int style Widget.Design.NavigationView 0x7f0f0333 +int style Widget.Design.ScrimInsetsFrameLayout 0x7f0f0334 +int style Widget.Design.Snackbar 0x7f0f0335 +int style Widget.Design.TabLayout 0x7f0f0336 +int style Widget.Design.TextInputEditText 0x7f0f0337 +int style Widget.Design.TextInputLayout 0x7f0f0338 +int style Widget.Material3.ActionBar.Solid 0x7f0f0339 +int style Widget.Material3.ActionMode 0x7f0f033a +int style Widget.Material3.AppBarLayout 0x7f0f033b +int style Widget.Material3.AutoCompleteTextView.FilledBox 0x7f0f033c +int style Widget.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f033d +int style Widget.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f033e +int style Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f033f +int style Widget.Material3.Badge 0x7f0f0340 +int style Widget.Material3.BottomAppBar 0x7f0f0341 +int style Widget.Material3.BottomAppBar.Button.Navigation 0x7f0f0342 +int style Widget.Material3.BottomAppBar.Legacy 0x7f0f0343 +int style Widget.Material3.BottomNavigationView 0x7f0f0344 +int style Widget.Material3.BottomNavigationView.ActiveIndicator 0x7f0f0345 +int style Widget.Material3.BottomSheet 0x7f0f0346 +int style Widget.Material3.BottomSheet.DragHandle 0x7f0f0347 +int style Widget.Material3.BottomSheet.Modal 0x7f0f0348 +int style Widget.Material3.Button 0x7f0f0349 +int style Widget.Material3.Button.ElevatedButton 0x7f0f034a +int style Widget.Material3.Button.ElevatedButton.Icon 0x7f0f034b +int style Widget.Material3.Button.Icon 0x7f0f034c +int style Widget.Material3.Button.IconButton 0x7f0f034d +int style Widget.Material3.Button.IconButton.Filled 0x7f0f034e +int style Widget.Material3.Button.IconButton.Filled.Tonal 0x7f0f034f +int style Widget.Material3.Button.IconButton.Outlined 0x7f0f0350 +int style Widget.Material3.Button.OutlinedButton 0x7f0f0351 +int style Widget.Material3.Button.OutlinedButton.Icon 0x7f0f0352 +int style Widget.Material3.Button.TextButton 0x7f0f0353 +int style Widget.Material3.Button.TextButton.Dialog 0x7f0f0354 +int style Widget.Material3.Button.TextButton.Dialog.Flush 0x7f0f0355 +int style Widget.Material3.Button.TextButton.Dialog.Icon 0x7f0f0356 +int style Widget.Material3.Button.TextButton.Icon 0x7f0f0357 +int style Widget.Material3.Button.TextButton.Snackbar 0x7f0f0358 +int style Widget.Material3.Button.TonalButton 0x7f0f0359 +int style Widget.Material3.Button.TonalButton.Icon 0x7f0f035a +int style Widget.Material3.Button.UnelevatedButton 0x7f0f035b +int style Widget.Material3.CardView.Elevated 0x7f0f035c +int style Widget.Material3.CardView.Filled 0x7f0f035d +int style Widget.Material3.CardView.Outlined 0x7f0f035e +int style Widget.Material3.CheckedTextView 0x7f0f035f +int style Widget.Material3.Chip.Assist 0x7f0f0360 +int style Widget.Material3.Chip.Assist.Elevated 0x7f0f0361 +int style Widget.Material3.Chip.Filter 0x7f0f0362 +int style Widget.Material3.Chip.Filter.Elevated 0x7f0f0363 +int style Widget.Material3.Chip.Input 0x7f0f0364 +int style Widget.Material3.Chip.Input.Elevated 0x7f0f0365 +int style Widget.Material3.Chip.Input.Icon 0x7f0f0366 +int style Widget.Material3.Chip.Input.Icon.Elevated 0x7f0f0367 +int style Widget.Material3.Chip.Suggestion 0x7f0f0368 +int style Widget.Material3.Chip.Suggestion.Elevated 0x7f0f0369 +int style Widget.Material3.ChipGroup 0x7f0f036a +int style Widget.Material3.CircularProgressIndicator 0x7f0f036b +int style Widget.Material3.CircularProgressIndicator.ExtraSmall 0x7f0f036c +int style Widget.Material3.CircularProgressIndicator.Medium 0x7f0f036d +int style Widget.Material3.CircularProgressIndicator.Small 0x7f0f036e +int style Widget.Material3.CollapsingToolbar 0x7f0f036f +int style Widget.Material3.CollapsingToolbar.Large 0x7f0f0370 +int style Widget.Material3.CollapsingToolbar.Medium 0x7f0f0371 +int style Widget.Material3.CompoundButton.CheckBox 0x7f0f0372 +int style Widget.Material3.CompoundButton.MaterialSwitch 0x7f0f0373 +int style Widget.Material3.CompoundButton.RadioButton 0x7f0f0374 +int style Widget.Material3.CompoundButton.Switch 0x7f0f0375 +int style Widget.Material3.DrawerLayout 0x7f0f0376 +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Primary 0x7f0f0377 +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary 0x7f0f0378 +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Surface 0x7f0f0379 +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary 0x7f0f037a +int style Widget.Material3.ExtendedFloatingActionButton.Primary 0x7f0f037b +int style Widget.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f037c +int style Widget.Material3.ExtendedFloatingActionButton.Surface 0x7f0f037d +int style Widget.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f037e +int style Widget.Material3.FloatingActionButton.Large.Primary 0x7f0f037f +int style Widget.Material3.FloatingActionButton.Large.Secondary 0x7f0f0380 +int style Widget.Material3.FloatingActionButton.Large.Surface 0x7f0f0381 +int style Widget.Material3.FloatingActionButton.Large.Tertiary 0x7f0f0382 +int style Widget.Material3.FloatingActionButton.Primary 0x7f0f0383 +int style Widget.Material3.FloatingActionButton.Secondary 0x7f0f0384 +int style Widget.Material3.FloatingActionButton.Small.Primary 0x7f0f0385 +int style Widget.Material3.FloatingActionButton.Small.Secondary 0x7f0f0386 +int style Widget.Material3.FloatingActionButton.Small.Surface 0x7f0f0387 +int style Widget.Material3.FloatingActionButton.Small.Tertiary 0x7f0f0388 +int style Widget.Material3.FloatingActionButton.Surface 0x7f0f0389 +int style Widget.Material3.FloatingActionButton.Tertiary 0x7f0f038a +int style Widget.Material3.Light.ActionBar.Solid 0x7f0f038b +int style Widget.Material3.LinearProgressIndicator 0x7f0f038c +int style Widget.Material3.MaterialButtonToggleGroup 0x7f0f038d +int style Widget.Material3.MaterialCalendar 0x7f0f038e +int style Widget.Material3.MaterialCalendar.Day 0x7f0f038f +int style Widget.Material3.MaterialCalendar.Day.Invalid 0x7f0f0390 +int style Widget.Material3.MaterialCalendar.Day.Selected 0x7f0f0391 +int style Widget.Material3.MaterialCalendar.Day.Today 0x7f0f0392 +int style Widget.Material3.MaterialCalendar.DayOfWeekLabel 0x7f0f0393 +int style Widget.Material3.MaterialCalendar.DayTextView 0x7f0f0394 +int style Widget.Material3.MaterialCalendar.Fullscreen 0x7f0f0395 +int style Widget.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f0396 +int style Widget.Material3.MaterialCalendar.HeaderDivider 0x7f0f0397 +int style Widget.Material3.MaterialCalendar.HeaderLayout 0x7f0f0398 +int style Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f0399 +int style Widget.Material3.MaterialCalendar.HeaderSelection 0x7f0f039a +int style Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f039b +int style Widget.Material3.MaterialCalendar.HeaderTitle 0x7f0f039c +int style Widget.Material3.MaterialCalendar.HeaderToggleButton 0x7f0f039d +int style Widget.Material3.MaterialCalendar.Item 0x7f0f039e +int style Widget.Material3.MaterialCalendar.MonthNavigationButton 0x7f0f039f +int style Widget.Material3.MaterialCalendar.MonthTextView 0x7f0f03a0 +int style Widget.Material3.MaterialCalendar.Year 0x7f0f03a1 +int style Widget.Material3.MaterialCalendar.Year.Selected 0x7f0f03a2 +int style Widget.Material3.MaterialCalendar.Year.Today 0x7f0f03a3 +int style Widget.Material3.MaterialCalendar.YearNavigationButton 0x7f0f03a4 +int style Widget.Material3.MaterialDivider 0x7f0f03a5 +int style Widget.Material3.MaterialDivider.Heavy 0x7f0f03a6 +int style Widget.Material3.MaterialTimePicker 0x7f0f03a7 +int style Widget.Material3.MaterialTimePicker.Button 0x7f0f03a8 +int style Widget.Material3.MaterialTimePicker.Clock 0x7f0f03a9 +int style Widget.Material3.MaterialTimePicker.Display 0x7f0f03aa +int style Widget.Material3.MaterialTimePicker.Display.Divider 0x7f0f03ab +int style Widget.Material3.MaterialTimePicker.Display.HelperText 0x7f0f03ac +int style Widget.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f03ad +int style Widget.Material3.MaterialTimePicker.Display.TextInputLayout 0x7f0f03ae +int style Widget.Material3.MaterialTimePicker.ImageButton 0x7f0f03af +int style Widget.Material3.NavigationRailView 0x7f0f03b0 +int style Widget.Material3.NavigationRailView.ActiveIndicator 0x7f0f03b1 +int style Widget.Material3.NavigationView 0x7f0f03b2 +int style Widget.Material3.PopupMenu 0x7f0f03b3 +int style Widget.Material3.PopupMenu.ContextMenu 0x7f0f03b4 +int style Widget.Material3.PopupMenu.ListPopupWindow 0x7f0f03b5 +int style Widget.Material3.PopupMenu.Overflow 0x7f0f03b6 +int style Widget.Material3.Search.ActionButton.Overflow 0x7f0f03b7 +int style Widget.Material3.Search.Toolbar.Button.Navigation 0x7f0f03b8 +int style Widget.Material3.SearchBar 0x7f0f03b9 +int style Widget.Material3.SearchBar.Outlined 0x7f0f03ba +int style Widget.Material3.SearchView 0x7f0f03bb +int style Widget.Material3.SearchView.Prefix 0x7f0f03bc +int style Widget.Material3.SearchView.Toolbar 0x7f0f03bd +int style Widget.Material3.SideSheet 0x7f0f03be +int style Widget.Material3.SideSheet.Detached 0x7f0f03bf +int style Widget.Material3.SideSheet.Modal 0x7f0f03c0 +int style Widget.Material3.SideSheet.Modal.Detached 0x7f0f03c1 +int style Widget.Material3.Slider 0x7f0f03c2 +int style Widget.Material3.Slider.Label 0x7f0f03c3 +int style Widget.Material3.Snackbar 0x7f0f03c4 +int style Widget.Material3.Snackbar.FullWidth 0x7f0f03c5 +int style Widget.Material3.Snackbar.TextView 0x7f0f03c6 +int style Widget.Material3.TabLayout 0x7f0f03c7 +int style Widget.Material3.TabLayout.OnSurface 0x7f0f03c8 +int style Widget.Material3.TabLayout.Secondary 0x7f0f03c9 +int style Widget.Material3.TextInputEditText.FilledBox 0x7f0f03ca +int style Widget.Material3.TextInputEditText.FilledBox.Dense 0x7f0f03cb +int style Widget.Material3.TextInputEditText.OutlinedBox 0x7f0f03cc +int style Widget.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f03cd +int style Widget.Material3.TextInputLayout.FilledBox 0x7f0f03ce +int style Widget.Material3.TextInputLayout.FilledBox.Dense 0x7f0f03cf +int style Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f03d0 +int style Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f03d1 +int style Widget.Material3.TextInputLayout.OutlinedBox 0x7f0f03d2 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense 0x7f0f03d3 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f03d4 +int style Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f03d5 +int style Widget.Material3.Toolbar 0x7f0f03d6 +int style Widget.Material3.Toolbar.OnSurface 0x7f0f03d7 +int style Widget.Material3.Toolbar.Surface 0x7f0f03d8 +int style Widget.Material3.Tooltip 0x7f0f03d9 +int style Widget.MaterialComponents.ActionBar.Primary 0x7f0f03da +int style Widget.MaterialComponents.ActionBar.PrimarySurface 0x7f0f03db +int style Widget.MaterialComponents.ActionBar.Solid 0x7f0f03dc +int style Widget.MaterialComponents.ActionBar.Surface 0x7f0f03dd +int style Widget.MaterialComponents.ActionMode 0x7f0f03de +int style Widget.MaterialComponents.AppBarLayout.Primary 0x7f0f03df +int style Widget.MaterialComponents.AppBarLayout.PrimarySurface 0x7f0f03e0 +int style Widget.MaterialComponents.AppBarLayout.Surface 0x7f0f03e1 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f03e2 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f03e3 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f03e4 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f03e5 +int style Widget.MaterialComponents.Badge 0x7f0f03e6 +int style Widget.MaterialComponents.BottomAppBar 0x7f0f03e7 +int style Widget.MaterialComponents.BottomAppBar.Colored 0x7f0f03e8 +int style Widget.MaterialComponents.BottomAppBar.PrimarySurface 0x7f0f03e9 +int style Widget.MaterialComponents.BottomNavigationView 0x7f0f03ea +int style Widget.MaterialComponents.BottomNavigationView.Colored 0x7f0f03eb +int style Widget.MaterialComponents.BottomNavigationView.PrimarySurface 0x7f0f03ec +int style Widget.MaterialComponents.BottomSheet 0x7f0f03ed +int style Widget.MaterialComponents.BottomSheet.Modal 0x7f0f03ee +int style Widget.MaterialComponents.Button 0x7f0f03ef +int style Widget.MaterialComponents.Button.Icon 0x7f0f03f0 +int style Widget.MaterialComponents.Button.OutlinedButton 0x7f0f03f1 +int style Widget.MaterialComponents.Button.OutlinedButton.Icon 0x7f0f03f2 +int style Widget.MaterialComponents.Button.TextButton 0x7f0f03f3 +int style Widget.MaterialComponents.Button.TextButton.Dialog 0x7f0f03f4 +int style Widget.MaterialComponents.Button.TextButton.Dialog.Flush 0x7f0f03f5 +int style Widget.MaterialComponents.Button.TextButton.Dialog.Icon 0x7f0f03f6 +int style Widget.MaterialComponents.Button.TextButton.Icon 0x7f0f03f7 +int style Widget.MaterialComponents.Button.TextButton.Snackbar 0x7f0f03f8 +int style Widget.MaterialComponents.Button.UnelevatedButton 0x7f0f03f9 +int style Widget.MaterialComponents.Button.UnelevatedButton.Icon 0x7f0f03fa +int style Widget.MaterialComponents.CardView 0x7f0f03fb +int style Widget.MaterialComponents.CheckedTextView 0x7f0f03fc +int style Widget.MaterialComponents.Chip.Action 0x7f0f03fd +int style Widget.MaterialComponents.Chip.Choice 0x7f0f03fe +int style Widget.MaterialComponents.Chip.Entry 0x7f0f03ff +int style Widget.MaterialComponents.Chip.Filter 0x7f0f0400 +int style Widget.MaterialComponents.ChipGroup 0x7f0f0401 +int style Widget.MaterialComponents.CircularProgressIndicator 0x7f0f0402 +int style Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall 0x7f0f0403 +int style Widget.MaterialComponents.CircularProgressIndicator.Medium 0x7f0f0404 +int style Widget.MaterialComponents.CircularProgressIndicator.Small 0x7f0f0405 +int style Widget.MaterialComponents.CollapsingToolbar 0x7f0f0406 +int style Widget.MaterialComponents.CompoundButton.CheckBox 0x7f0f0407 +int style Widget.MaterialComponents.CompoundButton.RadioButton 0x7f0f0408 +int style Widget.MaterialComponents.CompoundButton.Switch 0x7f0f0409 +int style Widget.MaterialComponents.ExtendedFloatingActionButton 0x7f0f040a +int style Widget.MaterialComponents.ExtendedFloatingActionButton.Icon 0x7f0f040b +int style Widget.MaterialComponents.FloatingActionButton 0x7f0f040c +int style Widget.MaterialComponents.Light.ActionBar.Solid 0x7f0f040d +int style Widget.MaterialComponents.LinearProgressIndicator 0x7f0f040e +int style Widget.MaterialComponents.MaterialButtonToggleGroup 0x7f0f040f +int style Widget.MaterialComponents.MaterialCalendar 0x7f0f0410 +int style Widget.MaterialComponents.MaterialCalendar.Day 0x7f0f0411 +int style Widget.MaterialComponents.MaterialCalendar.Day.Invalid 0x7f0f0412 +int style Widget.MaterialComponents.MaterialCalendar.Day.Selected 0x7f0f0413 +int style Widget.MaterialComponents.MaterialCalendar.Day.Today 0x7f0f0414 +int style Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel 0x7f0f0415 +int style Widget.MaterialComponents.MaterialCalendar.DayTextView 0x7f0f0416 +int style Widget.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f0417 +int style Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton 0x7f0f0418 +int style Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton 0x7f0f0419 +int style Widget.MaterialComponents.MaterialCalendar.HeaderDivider 0x7f0f041a +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout 0x7f0f041b +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f041c +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection 0x7f0f041d +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f041e +int style Widget.MaterialComponents.MaterialCalendar.HeaderTitle 0x7f0f041f +int style Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0420 +int style Widget.MaterialComponents.MaterialCalendar.Item 0x7f0f0421 +int style Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton 0x7f0f0422 +int style Widget.MaterialComponents.MaterialCalendar.MonthTextView 0x7f0f0423 +int style Widget.MaterialComponents.MaterialCalendar.Year 0x7f0f0424 +int style Widget.MaterialComponents.MaterialCalendar.Year.Selected 0x7f0f0425 +int style Widget.MaterialComponents.MaterialCalendar.Year.Today 0x7f0f0426 +int style Widget.MaterialComponents.MaterialCalendar.YearNavigationButton 0x7f0f0427 +int style Widget.MaterialComponents.MaterialDivider 0x7f0f0428 +int style Widget.MaterialComponents.NavigationRailView 0x7f0f0429 +int style Widget.MaterialComponents.NavigationRailView.Colored 0x7f0f042a +int style Widget.MaterialComponents.NavigationRailView.Colored.Compact 0x7f0f042b +int style Widget.MaterialComponents.NavigationRailView.Compact 0x7f0f042c +int style Widget.MaterialComponents.NavigationRailView.PrimarySurface 0x7f0f042d +int style Widget.MaterialComponents.NavigationView 0x7f0f042e +int style Widget.MaterialComponents.PopupMenu 0x7f0f042f +int style Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f0430 +int style Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f0431 +int style Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f0432 +int style Widget.MaterialComponents.ProgressIndicator 0x7f0f0433 +int style Widget.MaterialComponents.ShapeableImageView 0x7f0f0434 +int style Widget.MaterialComponents.Slider 0x7f0f0435 +int style Widget.MaterialComponents.Snackbar 0x7f0f0436 +int style Widget.MaterialComponents.Snackbar.FullWidth 0x7f0f0437 +int style Widget.MaterialComponents.Snackbar.TextView 0x7f0f0438 +int style Widget.MaterialComponents.TabLayout 0x7f0f0439 +int style Widget.MaterialComponents.TabLayout.Colored 0x7f0f043a +int style Widget.MaterialComponents.TabLayout.PrimarySurface 0x7f0f043b +int style Widget.MaterialComponents.TextInputEditText.FilledBox 0x7f0f043c +int style Widget.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f043d +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f043e +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f043f +int style Widget.MaterialComponents.TextInputLayout.FilledBox 0x7f0f0440 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense 0x7f0f0441 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f0442 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f0443 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox 0x7f0f0444 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense 0x7f0f0445 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f0446 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f0447 +int style Widget.MaterialComponents.TextView 0x7f0f0448 +int style Widget.MaterialComponents.TimePicker 0x7f0f0449 +int style Widget.MaterialComponents.TimePicker.Button 0x7f0f044a +int style Widget.MaterialComponents.TimePicker.Clock 0x7f0f044b +int style Widget.MaterialComponents.TimePicker.Display 0x7f0f044c +int style Widget.MaterialComponents.TimePicker.Display.Divider 0x7f0f044d +int style Widget.MaterialComponents.TimePicker.Display.HelperText 0x7f0f044e +int style Widget.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f044f +int style Widget.MaterialComponents.TimePicker.Display.TextInputLayout 0x7f0f0450 +int style Widget.MaterialComponents.TimePicker.ImageButton 0x7f0f0451 +int style Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance 0x7f0f0452 +int style Widget.MaterialComponents.Toolbar 0x7f0f0453 +int style Widget.MaterialComponents.Toolbar.Primary 0x7f0f0454 +int style Widget.MaterialComponents.Toolbar.PrimarySurface 0x7f0f0455 +int style Widget.MaterialComponents.Toolbar.Surface 0x7f0f0456 +int style Widget.MaterialComponents.Tooltip 0x7f0f0457 +int style Widget.Support.CoordinatorLayout 0x7f0f0458 +int style collectionViewTheme 0x7f0f0459 +int style scrollViewScrollBars 0x7f0f045a +int style scrollViewTheme 0x7f0f045b +int[] styleable ActionBar { 0x7f030047, 0x7f03004e, 0x7f03004f, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030166, 0x7f03017d, 0x7f03017e, 0x7f03019d, 0x7f030219, 0x7f030221, 0x7f030227, 0x7f030228, 0x7f03022c, 0x7f03023d, 0x7f030253, 0x7f0302cf, 0x7f03034f, 0x7f030387, 0x7f03038f, 0x7f030390, 0x7f030413, 0x7f030417, 0x7f03049e, 0x7f0304ac } +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f030047, 0x7f03004e, 0x7f0300e5, 0x7f030219, 0x7f030417, 0x7f0304ac } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f0301ba, 0x7f030243 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable ActivityFilter { 0x7f030027, 0x7f030029 } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityNavigator { 0x7f030002, 0x01010003, 0x7f03016a, 0x7f03016b, 0x7f030440 } +int styleable ActivityNavigator_action 0 +int styleable ActivityNavigator_android_name 1 +int styleable ActivityNavigator_data 2 +int styleable ActivityNavigator_dataPattern 3 +int styleable ActivityNavigator_targetPackage 4 +int[] styleable ActivityRule { 0x7f030033, 0x7f03043e } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030091, 0x7f030094, 0x7f0302c4, 0x7f0302c5, 0x7f03034a, 0x7f0303d2, 0x7f0303da } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x01010199, 0x010100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x0101044a, 0x0101044b, 0x01010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x010100d4, 0x01010540, 0x0101048f, 0x7f03019d, 0x7f0301bb, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f030408 } +int[] styleable AppBarLayoutStates { 0x7f0303ff, 0x7f030400, 0x7f030404, 0x7f030405 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f0302b5, 0x7f0302b6, 0x7f0302b7 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x01010119, 0x7f0303f3, 0x7f03049b, 0x7f03049c } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f030495, 0x7f030496, 0x7f030497 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f030041, 0x7f030042, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f0301a1, 0x7f0301de, 0x7f030202, 0x7f03020b, 0x7f03026d, 0x7f0302bd, 0x7f030444, 0x7f03047b } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030028, 0x7f03002b, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x010100ae, 0x01010057, 0x7f030040, 0x7f030075, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f030095, 0x7f030096, 0x7f0300b0, 0x7f0300bb, 0x7f0300f3, 0x7f0300f4, 0x7f0300f5, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fa, 0x7f030113, 0x7f030115, 0x7f03012a, 0x7f030149, 0x7f03017a, 0x7f03017b, 0x7f03017c, 0x7f030180, 0x7f030185, 0x7f030197, 0x7f030196, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f030227, 0x7f030237, 0x7f0302c0, 0x7f0302c1, 0x7f0302c2, 0x7f0302c3, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302cc, 0x7f0302cd, 0x7f0302ce, 0x7f03036a, 0x7f03036b, 0x7f03036c, 0x7f030386, 0x7f030388, 0x7f030397, 0x7f030399, 0x7f03039a, 0x7f03039b, 0x7f0303b5, 0x7f0303b8, 0x7f0303b9, 0x7f0303ba, 0x7f0303e4, 0x7f0303e5, 0x7f03041f, 0x7f03045b, 0x7f03045d, 0x7f03045e, 0x7f03045f, 0x7f030461, 0x7f030462, 0x7f030463, 0x7f030464, 0x7f03046f, 0x7f030470, 0x7f0304af, 0x7f0304b0, 0x7f0304b2, 0x7f0304b3, 0x7f0304d7, 0x7f0304e5, 0x7f0304e6, 0x7f0304e7, 0x7f0304e8, 0x7f0304e9, 0x7f0304ea, 0x7f0304eb, 0x7f0304ec, 0x7f0304ed, 0x7f0304ee } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 67 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 66 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable Badge { 0x7f030048, 0x7f030052, 0x7f030053, 0x7f030054, 0x7f030055, 0x7f030056, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030229, 0x7f03022a, 0x7f030305, 0x7f030356, 0x7f030358, 0x7f0304d5, 0x7f0304d6 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeHeight 2 +int styleable Badge_badgeRadius 3 +int styleable Badge_badgeShapeAppearance 4 +int styleable Badge_badgeShapeAppearanceOverlay 5 +int styleable Badge_badgeTextAppearance 6 +int styleable Badge_badgeTextColor 7 +int styleable Badge_badgeWidePadding 8 +int styleable Badge_badgeWidth 9 +int styleable Badge_badgeWithTextHeight 10 +int styleable Badge_badgeWithTextRadius 11 +int styleable Badge_badgeWithTextShapeAppearance 12 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 13 +int styleable Badge_badgeWithTextWidth 14 +int styleable Badge_horizontalOffset 15 +int styleable Badge_horizontalOffsetWithText 16 +int styleable Badge_maxCharacterCount 17 +int styleable Badge_number 18 +int styleable Badge_offsetAlignmentMode 19 +int styleable Badge_verticalOffset 20 +int styleable Badge_verticalOffsetWithText 21 +int[] styleable BaseProgressIndicator { 0x01010139, 0x7f03021e, 0x7f03023e, 0x7f030312, 0x7f0303cb, 0x7f0303cd, 0x7f0304bb, 0x7f0304be, 0x7f0304c3 } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f03002a, 0x7f030050, 0x7f03019d, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f030222, 0x7f03030d, 0x7f03034e, 0x7f030363, 0x7f030365, 0x7f030366, 0x7f0303a5 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x01010140, 0x7f030130, 0x7f03024d } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int[] styleable BottomSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030050, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030070, 0x7f030212, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f030363, 0x7f030365, 0x7f030366, 0x7f030369, 0x7f0303be, 0x7f0303c6, 0x7f0303ca } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_maxWidth 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x7f03002f } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x7f030396, 0x7f0303c9 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x01010140, 0x0101013f, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f030140, 0x7f030141, 0x7f030143, 0x7f030144, 0x7f030146 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300a4, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable CheckedTextView { 0x01010108, 0x7f0300ad, 0x7f0300ae, 0x7f0300af } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x010101e5, 0x010100ab, 0x0101011f, 0x0101014f, 0x01010034, 0x01010098, 0x01010095, 0x7f0300b3, 0x7f0300b4, 0x7f0300b8, 0x7f0300b9, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300cf, 0x7f0300de, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4, 0x7f0301ad, 0x7f03021f, 0x7f03022d, 0x7f030231, 0x7f0303a8, 0x7f0303be, 0x7f0303c6, 0x7f0303cf, 0x7f030471, 0x7f030480 } +int[] styleable ChipGroup { 0x7f0300b2, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f0303bb, 0x7f0303db, 0x7f0303dc } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable CircularProgressIndicator { 0x7f03023f, 0x7f030241, 0x7f030242 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0300da, 0x7f0300dd } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0300db, 0x7f0302f3, 0x7f0303bc } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f030147, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301cc, 0x7f03020d, 0x7f030308, 0x7f0303af, 0x7f0303b1, 0x7f030409, 0x7f03049e, 0x7f0304a0, 0x7f0304a1, 0x7f0304a8, 0x7f0304ab, 0x7f0304ae } +int[] styleable CollapsingToolbarLayout_Layout { 0x7f030277, 0x7f030278 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable ColorStateListItem { 0x7f030030, 0x0101031f, 0x010101a5, 0x01010647, 0x7f030269 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x01010107, 0x7f03008e, 0x7f030097, 0x7f030098 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030034, 0x7f030035, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f0300ac, 0x7f030135, 0x7f030136, 0x7f030189, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030215, 0x7f030279, 0x7f03027a, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b3, 0x7f0302b8, 0x7f030344, 0x7f030345, 0x7f030372, 0x7f030379, 0x7f03037f, 0x7f030391, 0x7f030392, 0x7f030393, 0x7f0304c6, 0x7f0304c8, 0x7f0304ca, 0x7f0304dc } +int[] styleable ConstraintLayout_Layout { 0x01010440, 0x010100f5, 0x010100f6, 0x010100fa, 0x010103b6, 0x0101053b, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x0101053c, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010100d5, 0x010100d9, 0x010103b4, 0x010100d6, 0x010100d8, 0x010103b3, 0x010100d7, 0x010100dc, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f0300ac, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f030132, 0x7f030135, 0x7f030136, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030215, 0x7f030271, 0x7f030279, 0x7f03027a, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b3, 0x7f0302b4, 0x7f0302b8 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_guidelineUseRtl 55 +int styleable ConstraintLayout_Layout_layoutDescription 56 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 57 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 64 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 65 +int styleable ConstraintLayout_Layout_layout_constraintCircle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 67 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 68 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 70 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 73 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 78 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 81 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 84 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 87 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 89 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 90 +int styleable ConstraintLayout_Layout_layout_constraintTag 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 93 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 96 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 101 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 103 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 105 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 106 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 107 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 108 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 109 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 110 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 111 +int styleable ConstraintLayout_Layout_layout_marginBaseline 112 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 113 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 114 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f03039c, 0x7f03039d, 0x7f03039e, 0x7f03039f } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f030138, 0x7f03037e } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030034, 0x7f030035, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f0300ac, 0x7f030135, 0x7f030189, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030215, 0x7f030279, 0x7f03027a, 0x7f03027b, 0x7f03027f, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030296, 0x7f03029b, 0x7f03029c, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b3, 0x7f0302b8, 0x7f030344, 0x7f030345, 0x7f030346, 0x7f030372, 0x7f030379, 0x7f03037f, 0x7f030391, 0x7f030392, 0x7f030393, 0x7f0304c6, 0x7f0304c8, 0x7f0304ca, 0x7f0304dc } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_guidelineUseRtl 53 +int styleable ConstraintOverride_layout_constrainedHeight 54 +int styleable ConstraintOverride_layout_constrainedWidth 55 +int styleable ConstraintOverride_layout_constraintBaseline_creator 56 +int styleable ConstraintOverride_layout_constraintBottom_creator 57 +int styleable ConstraintOverride_layout_constraintCircleAngle 58 +int styleable ConstraintOverride_layout_constraintCircleRadius 59 +int styleable ConstraintOverride_layout_constraintDimensionRatio 60 +int styleable ConstraintOverride_layout_constraintGuide_begin 61 +int styleable ConstraintOverride_layout_constraintGuide_end 62 +int styleable ConstraintOverride_layout_constraintGuide_percent 63 +int styleable ConstraintOverride_layout_constraintHeight 64 +int styleable ConstraintOverride_layout_constraintHeight_default 65 +int styleable ConstraintOverride_layout_constraintHeight_max 66 +int styleable ConstraintOverride_layout_constraintHeight_min 67 +int styleable ConstraintOverride_layout_constraintHeight_percent 68 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 69 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 70 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 71 +int styleable ConstraintOverride_layout_constraintLeft_creator 72 +int styleable ConstraintOverride_layout_constraintRight_creator 73 +int styleable ConstraintOverride_layout_constraintTag 74 +int styleable ConstraintOverride_layout_constraintTop_creator 75 +int styleable ConstraintOverride_layout_constraintVertical_bias 76 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 77 +int styleable ConstraintOverride_layout_constraintVertical_weight 78 +int styleable ConstraintOverride_layout_constraintWidth 79 +int styleable ConstraintOverride_layout_constraintWidth_default 80 +int styleable ConstraintOverride_layout_constraintWidth_max 81 +int styleable ConstraintOverride_layout_constraintWidth_min 82 +int styleable ConstraintOverride_layout_constraintWidth_percent 83 +int styleable ConstraintOverride_layout_editor_absoluteX 84 +int styleable ConstraintOverride_layout_editor_absoluteY 85 +int styleable ConstraintOverride_layout_goneMarginBaseline 86 +int styleable ConstraintOverride_layout_goneMarginBottom 87 +int styleable ConstraintOverride_layout_goneMarginEnd 88 +int styleable ConstraintOverride_layout_goneMarginLeft 89 +int styleable ConstraintOverride_layout_goneMarginRight 90 +int styleable ConstraintOverride_layout_goneMarginStart 91 +int styleable ConstraintOverride_layout_goneMarginTop 92 +int styleable ConstraintOverride_layout_marginBaseline 93 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 94 +int styleable ConstraintOverride_motionProgress 95 +int styleable ConstraintOverride_motionStagger 96 +int styleable ConstraintOverride_motionTarget 97 +int styleable ConstraintOverride_pathMotionArc 98 +int styleable ConstraintOverride_pivotAnchor 99 +int styleable ConstraintOverride_polarRelativeTo 100 +int styleable ConstraintOverride_quantizeMotionInterpolator 101 +int styleable ConstraintOverride_quantizeMotionPhase 102 +int styleable ConstraintOverride_quantizeMotionSteps 103 +int styleable ConstraintOverride_transformPivotTarget 104 +int styleable ConstraintOverride_transitionEasing 105 +int styleable ConstraintOverride_transitionPathRotate 106 +int styleable ConstraintOverride_visibilityMode 107 +int[] styleable ConstraintSet { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010101b5, 0x010101b6, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030034, 0x7f030035, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f0300ac, 0x7f030131, 0x7f030135, 0x7f030136, 0x7f030178, 0x7f030189, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030215, 0x7f030279, 0x7f03027a, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b3, 0x7f0302b8, 0x7f030344, 0x7f030345, 0x7f030372, 0x7f030379, 0x7f03037f, 0x7f030393, 0x7f0304c8, 0x7f0304ca } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animateCircleAngleTo 29 +int styleable ConstraintSet_animateRelativeTo 30 +int styleable ConstraintSet_barrierAllowsGoneWidgets 31 +int styleable ConstraintSet_barrierDirection 32 +int styleable ConstraintSet_barrierMargin 33 +int styleable ConstraintSet_chainUseRtl 34 +int styleable ConstraintSet_constraintRotate 35 +int styleable ConstraintSet_constraint_referenced_ids 36 +int styleable ConstraintSet_constraint_referenced_tags 37 +int styleable ConstraintSet_deriveConstraintsFrom 38 +int styleable ConstraintSet_drawPath 39 +int styleable ConstraintSet_flow_firstHorizontalBias 40 +int styleable ConstraintSet_flow_firstHorizontalStyle 41 +int styleable ConstraintSet_flow_firstVerticalBias 42 +int styleable ConstraintSet_flow_firstVerticalStyle 43 +int styleable ConstraintSet_flow_horizontalAlign 44 +int styleable ConstraintSet_flow_horizontalBias 45 +int styleable ConstraintSet_flow_horizontalGap 46 +int styleable ConstraintSet_flow_horizontalStyle 47 +int styleable ConstraintSet_flow_lastHorizontalBias 48 +int styleable ConstraintSet_flow_lastHorizontalStyle 49 +int styleable ConstraintSet_flow_lastVerticalBias 50 +int styleable ConstraintSet_flow_lastVerticalStyle 51 +int styleable ConstraintSet_flow_maxElementsWrap 52 +int styleable ConstraintSet_flow_verticalAlign 53 +int styleable ConstraintSet_flow_verticalBias 54 +int styleable ConstraintSet_flow_verticalGap 55 +int styleable ConstraintSet_flow_verticalStyle 56 +int styleable ConstraintSet_flow_wrapMode 57 +int styleable ConstraintSet_guidelineUseRtl 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_barrierAllowsGoneWidgets 29 +int styleable Constraint_barrierDirection 30 +int styleable Constraint_barrierMargin 31 +int styleable Constraint_chainUseRtl 32 +int styleable Constraint_constraint_referenced_ids 33 +int styleable Constraint_constraint_referenced_tags 34 +int styleable Constraint_drawPath 35 +int styleable Constraint_flow_firstHorizontalBias 36 +int styleable Constraint_flow_firstHorizontalStyle 37 +int styleable Constraint_flow_firstVerticalBias 38 +int styleable Constraint_flow_firstVerticalStyle 39 +int styleable Constraint_flow_horizontalAlign 40 +int styleable Constraint_flow_horizontalBias 41 +int styleable Constraint_flow_horizontalGap 42 +int styleable Constraint_flow_horizontalStyle 43 +int styleable Constraint_flow_lastHorizontalBias 44 +int styleable Constraint_flow_lastHorizontalStyle 45 +int styleable Constraint_flow_lastVerticalBias 46 +int styleable Constraint_flow_lastVerticalStyle 47 +int styleable Constraint_flow_maxElementsWrap 48 +int styleable Constraint_flow_verticalAlign 49 +int styleable Constraint_flow_verticalBias 50 +int styleable Constraint_flow_verticalGap 51 +int styleable Constraint_flow_verticalStyle 52 +int styleable Constraint_flow_wrapMode 53 +int styleable Constraint_guidelineUseRtl 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable CoordinatorLayout { 0x7f030268, 0x7f030407 } +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f030274, 0x7f030275, 0x7f030276, 0x7f0302a7, 0x7f0302b1, 0x7f0302b2 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CustomAttribute { 0x7f03003e, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030163, 0x7f030164, 0x7f030165, 0x7f030167, 0x7f030168, 0x7f030169, 0x7f03030f } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable DialogFragmentNavigator { 0x01010003 } +int styleable DialogFragmentNavigator_android_name 0 +int[] styleable DrawerArrowToggle { 0x7f03003c, 0x7f03003d, 0x7f030061, 0x7f0300f2, 0x7f03018e, 0x7f030211, 0x7f0303e3, 0x7f030486 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable DrawerLayout { 0x7f03019d } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x7f0300e8, 0x7f03019d, 0x7f0301c5, 0x7f0301c6, 0x7f03021f, 0x7f0303cf, 0x7f0303d3 } +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f030065, 0x7f030066 } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable FloatingActionButton { 0x0101000e, 0x7f030050, 0x7f030051, 0x7f030074, 0x7f03019d, 0x7f0301ad, 0x7f0301d4, 0x7f0301d5, 0x7f03021f, 0x7f03022b, 0x7f030307, 0x7f03038d, 0x7f0303a8, 0x7f0303be, 0x7f0303c6, 0x7f0303cf, 0x7f0304d2 } +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030065 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FlowLayout { 0x7f03025e, 0x7f0302be } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f030208, 0x7f030209 } +int[] styleable FontFamilyFont { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f030201, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f0304cf } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f03020f } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x010100d0, 0x01010003, 0x010100d1 } +int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable FragmentNavigator { 0x01010003 } +int styleable FragmentNavigator_android_name 0 +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable GradientColor { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 } +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable ImageFilterView { 0x7f030032, 0x7f030071, 0x7f030088, 0x7f030148, 0x7f03015d, 0x7f030238, 0x7f030239, 0x7f03023a, 0x7f03023b, 0x7f030361, 0x7f0303aa, 0x7f0303ab, 0x7f0303ad, 0x7f0304de } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f030363, 0x7f030365, 0x7f030366, 0x7f030369 } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingTopSystemWindowInsets 6 +int[] styleable ItemsViewRendererTheme { 0x7f0300f1 } +int styleable ItemsViewRendererTheme_collectionViewStyle 0 +int[] styleable KeyAttribute { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f03015f, 0x7f030210, 0x7f030344, 0x7f030346, 0x7f0304c6, 0x7f0304c8, 0x7f0304ca } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f03015f, 0x7f030210, 0x7f030344, 0x7f030346, 0x7f0304c8, 0x7f0304ca, 0x7f0304e0, 0x7f0304e1, 0x7f0304e2, 0x7f0304e3, 0x7f0304e4 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f03015f, 0x7f030189, 0x7f030210, 0x7f030266, 0x7f030346, 0x7f030372, 0x7f030374, 0x7f030375, 0x7f030376, 0x7f030377, 0x7f0303dd, 0x7f0304c8 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f03015f, 0x7f030210, 0x7f030344, 0x7f030346, 0x7f0304c8, 0x7f0304ca, 0x7f0304df, 0x7f0304e0, 0x7f0304e1, 0x7f0304e2, 0x7f0304e3 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f030210, 0x7f030346, 0x7f030347, 0x7f030348, 0x7f030359, 0x7f03035b, 0x7f03035c, 0x7f0304cc, 0x7f0304cd, 0x7f0304ce, 0x7f0304d9, 0x7f0304da, 0x7f0304db } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x010100c4, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f0300ac, 0x7f030135, 0x7f030136, 0x7f030215, 0x7f030279, 0x7f03027a, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b3, 0x7f0302b8, 0x7f030306, 0x7f03030a, 0x7f030311, 0x7f030315 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_guidelineUseRtl 15 +int styleable Layout_layout_constrainedHeight 16 +int styleable Layout_layout_constrainedWidth 17 +int styleable Layout_layout_constraintBaseline_creator 18 +int styleable Layout_layout_constraintBaseline_toBaselineOf 19 +int styleable Layout_layout_constraintBaseline_toBottomOf 20 +int styleable Layout_layout_constraintBaseline_toTopOf 21 +int styleable Layout_layout_constraintBottom_creator 22 +int styleable Layout_layout_constraintBottom_toBottomOf 23 +int styleable Layout_layout_constraintBottom_toTopOf 24 +int styleable Layout_layout_constraintCircle 25 +int styleable Layout_layout_constraintCircleAngle 26 +int styleable Layout_layout_constraintCircleRadius 27 +int styleable Layout_layout_constraintDimensionRatio 28 +int styleable Layout_layout_constraintEnd_toEndOf 29 +int styleable Layout_layout_constraintEnd_toStartOf 30 +int styleable Layout_layout_constraintGuide_begin 31 +int styleable Layout_layout_constraintGuide_end 32 +int styleable Layout_layout_constraintGuide_percent 33 +int styleable Layout_layout_constraintHeight 34 +int styleable Layout_layout_constraintHeight_default 35 +int styleable Layout_layout_constraintHeight_max 36 +int styleable Layout_layout_constraintHeight_min 37 +int styleable Layout_layout_constraintHeight_percent 38 +int styleable Layout_layout_constraintHorizontal_bias 39 +int styleable Layout_layout_constraintHorizontal_chainStyle 40 +int styleable Layout_layout_constraintHorizontal_weight 41 +int styleable Layout_layout_constraintLeft_creator 42 +int styleable Layout_layout_constraintLeft_toLeftOf 43 +int styleable Layout_layout_constraintLeft_toRightOf 44 +int styleable Layout_layout_constraintRight_creator 45 +int styleable Layout_layout_constraintRight_toLeftOf 46 +int styleable Layout_layout_constraintRight_toRightOf 47 +int styleable Layout_layout_constraintStart_toEndOf 48 +int styleable Layout_layout_constraintStart_toStartOf 49 +int styleable Layout_layout_constraintTop_creator 50 +int styleable Layout_layout_constraintTop_toBottomOf 51 +int styleable Layout_layout_constraintTop_toTopOf 52 +int styleable Layout_layout_constraintVertical_bias 53 +int styleable Layout_layout_constraintVertical_chainStyle 54 +int styleable Layout_layout_constraintVertical_weight 55 +int styleable Layout_layout_constraintWidth 56 +int styleable Layout_layout_constraintWidth_default 57 +int styleable Layout_layout_constraintWidth_max 58 +int styleable Layout_layout_constraintWidth_min 59 +int styleable Layout_layout_constraintWidth_percent 60 +int styleable Layout_layout_editor_absoluteX 61 +int styleable Layout_layout_editor_absoluteY 62 +int styleable Layout_layout_goneMarginBaseline 63 +int styleable Layout_layout_goneMarginBottom 64 +int styleable Layout_layout_goneMarginEnd 65 +int styleable Layout_layout_goneMarginLeft 66 +int styleable Layout_layout_goneMarginRight 67 +int styleable Layout_layout_goneMarginStart 68 +int styleable Layout_layout_goneMarginTop 69 +int styleable Layout_layout_marginBaseline 70 +int styleable Layout_layout_wrapBehaviorInParent 71 +int styleable Layout_maxHeight 72 +int styleable Layout_maxWidth 73 +int styleable Layout_minHeight 74 +int styleable Layout_minWidth 75 +int[] styleable LinearLayoutCompat { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f03017e, 0x7f030183, 0x7f03030b, 0x7f0303ce } +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearProgressIndicator { 0x7f03023c, 0x7f030240 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f03004c } +int[] styleable MaterialAlertDialogTheme { 0x7f0302d7, 0x7f0302d8, 0x7f0302d9, 0x7f0302da, 0x7f0302db, 0x7f0302dc } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAutoCompleteTextView { 0x01010220, 0x0101048c, 0x7f0303d6, 0x7f0303d9, 0x7f0303d7, 0x7f0303d8 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 2 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 4 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 5 +int styleable MaterialAutoCompleteTextView_simpleItems 3 +int[] styleable MaterialButton { 0x010100d4, 0x010101e5, 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f030050, 0x7f030051, 0x7f030151, 0x7f03019d, 0x7f03022c, 0x7f03022e, 0x7f03022f, 0x7f030230, 0x7f030232, 0x7f030233, 0x7f0303a8, 0x7f0303be, 0x7f0303c6, 0x7f03040b, 0x7f03040c, 0x7f0304ad } +int[] styleable MaterialButtonToggleGroup { 0x0101000e, 0x7f0300b1, 0x7f0303bb, 0x7f0303dc } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialCalendar { 0x0101020d, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030354, 0x7f030398, 0x7f0304ef, 0x7f0304f0, 0x7f0304f1 } +int[] styleable MaterialCalendarItem { 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f03024b, 0x7f030257, 0x7f030258, 0x7f03025f, 0x7f030260, 0x7f030264 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCardView { 0x010101e5, 0x7f03009c, 0x7f0300b3, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0303a8, 0x7f0303be, 0x7f0303c6, 0x7f030401, 0x7f03040b, 0x7f03040c } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x01010107, 0x7f03008e, 0x7f030090, 0x7f030092, 0x7f030093, 0x7f030097, 0x7f0300ab, 0x7f0300ba, 0x7f0301af, 0x7f0301b6, 0x7f0304d3 } +int[] styleable MaterialCheckBoxStates { 0x7f030402, 0x7f030403 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialDivider { 0x7f03017f, 0x7f030181, 0x7f030182, 0x7f030184, 0x7f03026e } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x7f030097, 0x7f0304d3 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0303be, 0x7f0303c6 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x7f030489, 0x7f03048a, 0x7f03048b, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconTint 1 +int styleable MaterialSwitch_thumbIconTintMode 2 +int styleable MaterialSwitch_trackDecoration 3 +int styleable MaterialSwitch_trackDecorationTint 4 +int styleable MaterialSwitch_trackDecorationTintMode 5 +int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f0302bd } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x0101057f, 0x01010034, 0x7f0302bd } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0300dc, 0x7f030267 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0302d0, 0x7f0302d2, 0x7f03034e, 0x7f030414, 0x7f03049f } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030031, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f030139, 0x7f030232, 0x7f030233, 0x7f030357, 0x7f0303cc, 0x7f0304b5 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f03038c, 0x7f03040d } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f030316, 0x7f030317, 0x7f030318, 0x7f030319, 0x7f03031a, 0x7f03031b } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x7f030034, 0x7f030035, 0x7f030189, 0x7f030343, 0x7f030345, 0x7f030372, 0x7f030391, 0x7f030392, 0x7f030393, 0x7f0304c8 } +int[] styleable MotionEffect { 0x7f030339, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d, 0x7f03033e, 0x7f03033f, 0x7f030340 } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f03035a, 0x7f03035d } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x01010535, 0x010103ac, 0x010100af, 0x01010164, 0x0101014f, 0x01010098, 0x01010095, 0x01010097, 0x01010096, 0x7f030072, 0x7f030073, 0x7f0303ae, 0x7f03046a, 0x7f03046b, 0x7f03046c, 0x7f03046d, 0x7f03046e, 0x7f03047c, 0x7f03047d, 0x7f03047e, 0x7f03047f, 0x7f030481, 0x7f030482, 0x7f030483, 0x7f030484 } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f030039, 0x7f03015e, 0x7f030271, 0x7f03031c, 0x7f030344, 0x7f0303d0 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f030170, 0x7f030272 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f030441, 0x7f030442, 0x7f030443 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_drawPath 2 +int styleable Motion_motionPathRotate 3 +int styleable Motion_motionStagger 4 +int styleable Motion_pathMotionArc 5 +int styleable Motion_quantizeMotionInterpolator 6 +int styleable Motion_quantizeMotionPhase 7 +int styleable Motion_quantizeMotionSteps 8 +int styleable Motion_transitionEasing 9 +int[] styleable NavAction { 0x010100d0, 0x7f030179, 0x7f0301ae, 0x7f0301b9, 0x7f03026f, 0x7f030380, 0x7f030381, 0x7f030382, 0x7f030383, 0x7f030384, 0x7f0303a6 } +int styleable NavAction_android_id 0 +int styleable NavAction_destination 1 +int styleable NavAction_enterAnim 2 +int styleable NavAction_exitAnim 3 +int styleable NavAction_launchSingleTop 4 +int styleable NavAction_popEnterAnim 5 +int styleable NavAction_popExitAnim 6 +int styleable NavAction_popUpTo 7 +int styleable NavAction_popUpToInclusive 8 +int styleable NavAction_popUpToSaveState 9 +int styleable NavAction_restoreState 10 +int[] styleable NavArgument { 0x010101ed, 0x01010003, 0x7f03003b, 0x7f030355 } +int styleable NavArgument_android_defaultValue 0 +int styleable NavArgument_android_name 1 +int styleable NavArgument_argType 2 +int styleable NavArgument_nullable 3 +int[] styleable NavDeepLink { 0x7f030002, 0x010104ee, 0x7f030310, 0x7f0304d1 } +int styleable NavDeepLink_action 0 +int styleable NavDeepLink_android_autoVerify 1 +int styleable NavDeepLink_mimeType 2 +int styleable NavDeepLink_uri 3 +int[] styleable NavGraphNavigator { 0x7f0303f6 } +int styleable NavGraphNavigator_startDestination 0 +int[] styleable NavHost { 0x7f03034b } +int[] styleable NavHostFragment { 0x7f030172 } +int styleable NavHostFragment_defaultNavHost 0 +int styleable NavHost_navGraph 0 +int[] styleable NavInclude { 0x7f030214 } +int styleable NavInclude_graph 0 +int[] styleable NavigationBarActiveIndicator { 0x010101a5, 0x01010155, 0x01010159, 0x7f0302d3, 0x7f0303be } +int styleable NavigationBarActiveIndicator_android_color 0 +int styleable NavigationBarActiveIndicator_android_height 1 +int styleable NavigationBarActiveIndicator_android_width 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x7f030050, 0x7f03019d, 0x7f030249, 0x7f03024a, 0x7f03024f, 0x7f030250, 0x7f030254, 0x7f030255, 0x7f030256, 0x7f030262, 0x7f030263, 0x7f030264, 0x7f03026c, 0x7f03030c } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemActiveIndicatorStyle 2 +int styleable NavigationBarView_itemBackground 3 +int styleable NavigationBarView_itemIconSize 4 +int styleable NavigationBarView_itemIconTint 5 +int styleable NavigationBarView_itemPaddingBottom 6 +int styleable NavigationBarView_itemPaddingTop 7 +int styleable NavigationBarView_itemRippleColor 8 +int styleable NavigationBarView_itemTextAppearanceActive 9 +int styleable NavigationBarView_itemTextAppearanceInactive 10 +int styleable NavigationBarView_itemTextColor 11 +int styleable NavigationBarView_labelVisibilityMode 12 +int styleable NavigationBarView_menu 13 +int[] styleable NavigationRailView { 0x7f030218, 0x7f030252, 0x7f03030e, 0x7f030363, 0x7f030369 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingTopSystemWindowInsets 4 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x010100b3, 0x0101011f, 0x7f030077, 0x7f030181, 0x7f030182, 0x7f030194, 0x7f03019d, 0x7f030218, 0x7f03024a, 0x7f03024c, 0x7f03024e, 0x7f03024f, 0x7f030250, 0x7f030251, 0x7f030256, 0x7f030257, 0x7f030258, 0x7f030259, 0x7f03025a, 0x7f03025b, 0x7f03025c, 0x7f03025d, 0x7f030261, 0x7f030264, 0x7f030265, 0x7f03030c, 0x7f0303be, 0x7f0303c6, 0x7f03040e, 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f0304b6 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_layout_gravity 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextColor 25 +int styleable NavigationView_itemVerticalPadding 26 +int styleable NavigationView_menu 27 +int styleable NavigationView_shapeAppearance 28 +int styleable NavigationView_shapeAppearanceOverlay 29 +int styleable NavigationView_subheaderColor 30 +int styleable NavigationView_subheaderInsetEnd 31 +int styleable NavigationView_subheaderInsetStart 32 +int styleable NavigationView_subheaderTextAppearance 33 +int styleable NavigationView_topInsetScrimEnabled 34 +int[] styleable Navigator { 0x010100d0, 0x01010001, 0x7f0303ac } +int styleable Navigator_android_id 0 +int styleable Navigator_android_label 1 +int styleable Navigator_route 2 +int[] styleable OnClick { 0x7f0300d9, 0x7f03043f } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f03003f, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f0302bc, 0x7f030302, 0x7f030309, 0x7f030349, 0x7f030352, 0x7f03035f, 0x7f0303a9, 0x7f0303ee, 0x7f0303ef, 0x7f0303f0, 0x7f0303f1, 0x7f0303f2, 0x7f0304b7, 0x7f0304b8, 0x7f0304b9 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PopupWindow { 0x010102c9, 0x01010176, 0x7f030360 } +int[] styleable PopupWindowBackgroundState { 0x7f0303fe } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PropertySet { 0x0101031f, 0x010100dc, 0x7f03029b, 0x7f030344, 0x7f0304dc } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f0302f3 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f030313, 0x7f0304d4 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f030362, 0x7f030368 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100eb, 0x010100f1, 0x010100c4, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f030273, 0x7f0303a7, 0x7f0303e2, 0x7f0303f4 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x7f030244 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollViewRendererTheme { 0x7f0303b2 } +int styleable ScrollViewRendererTheme_scrollViewStyle 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f03006c } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x01010150, 0x0101014f, 0x01010034, 0x7f030171, 0x7f030174, 0x7f03019d, 0x7f03020e, 0x7f030220, 0x7f03034e, 0x7f03040b, 0x7f03040c, 0x7f03049d } +int styleable SearchBar_android_hint 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_textAppearance 2 +int styleable SearchBar_defaultMarginsEnabled 3 +int styleable SearchBar_defaultScrollFlagsEnabled 4 +int styleable SearchBar_elevation 5 +int styleable SearchBar_forceDefaultNavigationOnClickListener 6 +int styleable SearchBar_hideNavigationIcon 7 +int styleable SearchBar_navigationIconTint 8 +int styleable SearchBar_strokeColor 9 +int styleable SearchBar_strokeWidth 10 +int styleable SearchBar_tintNavigationIcon 11 +int[] styleable SearchView { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f0300de, 0x7f03012f, 0x7f030173, 0x7f030213, 0x7f030234, 0x7f030270, 0x7f030394, 0x7f030395, 0x7f0303b3, 0x7f0303b4, 0x7f030412, 0x7f03041b, 0x7f0304dd } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f0303be, 0x7f0303c6, 0x7f03040b, 0x7f03040c } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030050, 0x7f030067, 0x7f03014b, 0x7f0303be, 0x7f0303c6 } +int styleable SideSheetBehavior_Layout_android_elevation 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_maxWidth 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x0101000e, 0x01010146, 0x01010024, 0x010102de, 0x010102df, 0x7f030216, 0x7f030217, 0x7f03026a, 0x7f03026b, 0x7f030314, 0x7f030487, 0x7f030488, 0x7f03048c, 0x7f03048d, 0x7f03048e, 0x7f030492, 0x7f030493, 0x7f030494, 0x7f030498, 0x7f030499, 0x7f03049a, 0x7f0304bb, 0x7f0304bc, 0x7f0304bd, 0x7f0304c2 } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbRadius 12 +int styleable Slider_thumbStrokeColor 13 +int styleable Slider_thumbStrokeWidth 14 +int styleable Slider_tickColor 15 +int styleable Slider_tickColorActive 16 +int styleable Slider_tickColorInactive 17 +int styleable Slider_tickRadiusActive 18 +int styleable Slider_tickRadiusInactive 19 +int styleable Slider_tickVisible 20 +int styleable Slider_trackColor 21 +int styleable Slider_trackColorActive 22 +int styleable Slider_trackColorInactive 23 +int styleable Slider_trackHeight 24 +int[] styleable Snackbar { 0x7f0303df, 0x7f0303e0, 0x7f0303e1 } +int[] styleable SnackbarLayout { 0x7f030025, 0x0101011f, 0x7f030037, 0x7f03004d, 0x7f030050, 0x7f030051, 0x7f03019d, 0x7f030303, 0x7f0303be, 0x7f0303c6 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable Spinner { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f030387 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable SplitPairFilter { 0x7f03038e, 0x7f0303b6, 0x7f0303b7 } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x7f030036, 0x7f0300d7, 0x7f0301dc, 0x7f0301dd, 0x7f0303e6, 0x7f0303e7, 0x7f0303e8, 0x7f0303e9, 0x7f0303ea, 0x7f0303eb, 0x7f0303ec, 0x7f03043e } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x7f030036, 0x7f0301db, 0x7f03037a, 0x7f0303e6, 0x7f0303e7, 0x7f0303e8, 0x7f0303e9, 0x7f0303ea, 0x7f0303eb, 0x7f0303ec, 0x7f03040a, 0x7f03043e } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 +int[] styleable State { 0x010100d0, 0x7f030137 } +int[] styleable StateListDrawable { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateSet { 0x7f030175 } +int styleable StateSet_defaultState 0 +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable SwipeRefreshLayout { 0x7f03041c } +int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 +int[] styleable SwitchCompat { 0x01010125, 0x01010124, 0x01010142, 0x7f0303d1, 0x7f0303ed, 0x7f03041d, 0x7f03041e, 0x7f030420, 0x7f03048f, 0x7f030490, 0x7f030491, 0x7f0304ba, 0x7f0304c4, 0x7f0304c5 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f0304d3 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f030421, 0x7f030422, 0x7f030423, 0x7f030424, 0x7f030425, 0x7f030426, 0x7f030427, 0x7f030428, 0x7f030429, 0x7f03042a, 0x7f03042b, 0x7f03042c, 0x7f03042d, 0x7f03042e, 0x7f03042f, 0x7f030430, 0x7f030431, 0x7f030432, 0x7f030433, 0x7f030434, 0x7f030435, 0x7f030436, 0x7f030438, 0x7f030439, 0x7f03043b, 0x7f03043c, 0x7f03043d } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x0101009b, 0x01010585, 0x01010095, 0x01010097, 0x01010096, 0x7f030202, 0x7f03020b, 0x7f030444, 0x7f03047b } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x0101014f, 0x01010095, 0x01010097, 0x01010096, 0x7f030072, 0x7f030073, 0x7f030472, 0x7f03047c, 0x7f03047d } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f030476 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x0101000e, 0x01010150, 0x01010157, 0x0101011f, 0x0101015a, 0x0101013f, 0x0101009a, 0x7f03007d, 0x7f03007e, 0x7f03007f, 0x7f030080, 0x7f030081, 0x7f030082, 0x7f030083, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b7, 0x7f0301b8, 0x7f0301bc, 0x7f03021a, 0x7f03021b, 0x7f03021c, 0x7f03021d, 0x7f030223, 0x7f030224, 0x7f030225, 0x7f030226, 0x7f03036d, 0x7f03036e, 0x7f03036f, 0x7f030370, 0x7f030371, 0x7f03037b, 0x7f03037c, 0x7f03037d, 0x7f030389, 0x7f03038a, 0x7f03038b, 0x7f0303be, 0x7f0303c6, 0x7f0303f7, 0x7f0303f8, 0x7f0303f9, 0x7f0303fa, 0x7f0303fb, 0x7f0303fc, 0x7f0303fd, 0x7f030418, 0x7f030419, 0x7f03041a } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxEms 2 +int styleable TextInputLayout_android_maxWidth 3 +int styleable TextInputLayout_android_minEms 4 +int styleable TextInputLayout_android_minWidth 5 +int styleable TextInputLayout_android_textColorHint 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_endIconCheckable 24 +int styleable TextInputLayout_endIconContentDescription 25 +int styleable TextInputLayout_endIconDrawable 26 +int styleable TextInputLayout_endIconMinSize 27 +int styleable TextInputLayout_endIconMode 28 +int styleable TextInputLayout_endIconScaleType 29 +int styleable TextInputLayout_endIconTint 30 +int styleable TextInputLayout_endIconTintMode 31 +int styleable TextInputLayout_errorAccessibilityLiveRegion 32 +int styleable TextInputLayout_errorContentDescription 33 +int styleable TextInputLayout_errorEnabled 34 +int styleable TextInputLayout_errorIconDrawable 35 +int styleable TextInputLayout_errorIconTint 36 +int styleable TextInputLayout_errorIconTintMode 37 +int styleable TextInputLayout_errorTextAppearance 38 +int styleable TextInputLayout_errorTextColor 39 +int styleable TextInputLayout_expandedHintEnabled 40 +int styleable TextInputLayout_helperText 41 +int styleable TextInputLayout_helperTextEnabled 42 +int styleable TextInputLayout_helperTextTextAppearance 43 +int styleable TextInputLayout_helperTextTextColor 44 +int styleable TextInputLayout_hintAnimationEnabled 45 +int styleable TextInputLayout_hintEnabled 46 +int styleable TextInputLayout_hintTextAppearance 47 +int styleable TextInputLayout_hintTextColor 48 +int styleable TextInputLayout_passwordToggleContentDescription 49 +int styleable TextInputLayout_passwordToggleDrawable 50 +int styleable TextInputLayout_passwordToggleEnabled 51 +int styleable TextInputLayout_passwordToggleTint 52 +int styleable TextInputLayout_passwordToggleTintMode 53 +int styleable TextInputLayout_placeholderText 54 +int styleable TextInputLayout_placeholderTextAppearance 55 +int styleable TextInputLayout_placeholderTextColor 56 +int styleable TextInputLayout_prefixText 57 +int styleable TextInputLayout_prefixTextAppearance 58 +int styleable TextInputLayout_prefixTextColor 59 +int styleable TextInputLayout_shapeAppearance 60 +int styleable TextInputLayout_shapeAppearanceOverlay 61 +int styleable TextInputLayout_startIconCheckable 62 +int styleable TextInputLayout_startIconContentDescription 63 +int styleable TextInputLayout_startIconDrawable 64 +int styleable TextInputLayout_startIconMinSize 65 +int styleable TextInputLayout_startIconScaleType 66 +int styleable TextInputLayout_startIconTint 67 +int styleable TextInputLayout_startIconTintMode 68 +int styleable TextInputLayout_suffixText 69 +int styleable TextInputLayout_suffixTextAppearance 70 +int styleable TextInputLayout_suffixTextColor 71 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0301ab, 0x7f0301ac } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f03008f, 0x7f0300e6, 0x7f0300e7, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f0302cf, 0x7f0302d1, 0x7f030304, 0x7f03030c, 0x7f03034c, 0x7f03034d, 0x7f030387, 0x7f030413, 0x7f030415, 0x7f030416, 0x7f03049e, 0x7f0304a2, 0x7f0304a3, 0x7f0304a4, 0x7f0304a7, 0x7f0304a5, 0x7f0304a6, 0x7f0304a9, 0x7f0304aa } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 26 +int styleable Toolbar_titleMarginTop 27 +int styleable Toolbar_titleMargins 25 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x010100f6, 0x01010140, 0x0101013f, 0x010100d5, 0x0101014f, 0x01010034, 0x01010098, 0x7f030050 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_android_textColor 6 +int styleable Tooltip_backgroundTint 7 +int[] styleable Transform { 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f0304c6 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x010100d0, 0x7f030046, 0x7f030133, 0x7f030134, 0x7f030198, 0x7f030272, 0x7f030341, 0x7f030372, 0x7f0303f5, 0x7f0304c7, 0x7f0304c9 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f030137, 0x7f0303a1, 0x7f0303a2, 0x7f0303a3, 0x7f0303a4 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x010100da, 0x01010000, 0x7f030364, 0x7f030367, 0x7f030485 } +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030050, 0x7f030051 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x010100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f3, 0x010100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x010100d0, 0x7f0300d8, 0x7f030198, 0x7f030235, 0x7f030236, 0x7f030341, 0x7f030346, 0x7f03035e, 0x7f030372, 0x7f0303bd, 0x7f030000, 0x7f030001, 0x7f0304c7, 0x7f0304d0, 0x7f0304d8 } +int styleable ViewTransition_SharedValue 10 +int styleable ViewTransition_SharedValueId 11 +int styleable ViewTransition_android_id 0 +int styleable ViewTransition_clearsTag 1 +int styleable ViewTransition_duration 2 +int styleable ViewTransition_ifTagNotSet 3 +int styleable ViewTransition_ifTagSet 4 +int styleable ViewTransition_motionInterpolator 5 +int styleable ViewTransition_motionTarget 6 +int styleable ViewTransition_onStateTransition 7 +int styleable ViewTransition_pathMotionArc 8 +int styleable ViewTransition_setsTag 9 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable include { 0x7f030132 } +int styleable include_constraintSet 0 +int xml image_share_filepaths 0x7f110000 +int xml microsoft_maui_essentials_fileprovider_file_paths 0x7f110001 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/_Microsoft.Android.Resource.Designer.dll b/App/MauiApp1/obj/Debug/net8.0-android/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000000000000000000000000000000000000..11ac718d8096cf208e0fd98d60c2e62a4b3ea254 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/_Microsoft.Android.Resource.Designer.dll differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/__Microsoft.Android.Resource.Designer.cs b/App/MauiApp1/obj/Debug/net8.0-android/__Microsoft.Android.Resource.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..c6b3945536aca44968bbb4043897bd54f77e6e6e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/__Microsoft.Android.Resource.Designer.cs @@ -0,0 +1,13 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. DO NOT EDIT +// </auto-generated> +//------------------------------------------------------------------------------ +using System; + +namespace MauiApp1 { + #pragma warning disable IDE0002 + public partial class Resource : _Microsoft.Android.Resource.Designer.ResourceConstant { + } + #pragma warning restore IDE0002 +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/case_map.txt b/App/MauiApp1/obj/Debug/net8.0-android/case_map.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc54e9e8e99ab1a26e921bb6928ec3abb9d1638c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/case_map.txt @@ -0,0 +1,23 @@ +animation\enterfromleft;animation\enterfromleft +animation\enterfromright;animation\enterfromright +animation\exittoleft;animation\exittoleft +animation\exittoright;animation\exittoright +animation\nav_default_enter_anim;animation\nav_default_enter_anim +animation\nav_default_exit_anim;animation\nav_default_exit_anim +animation\nav_default_pop_enter_anim;animation\nav_default_pop_enter_anim +animation\nav_default_pop_exit_anim;animation\nav_default_pop_exit_anim +drawable\maui_splash;drawable\maui_splash +drawable\maui_splash_image;drawable\maui_splash_image +layout\drawer_layout;layout\drawer_layout +layout\flyoutcontent;compatibility\Android\Resources\layout\flyoutcontent +layout\fragment_backstack;layout\fragment_backstack +layout\navigationlayout;layout\navigationlayout +layout\shellcontent;compatibility\Android\Resources\layout\shellcontent +layout\tabbar;android\Resources\layout\Tabbar +layout\toolbar;android\Resources\layout\Toolbar +values\attr;values\attr +values\attrs;android\Resources\values\attrs +values\colors;values\colors +values\strings;values\strings +values\styles;android\Resources\values\styles +xml\microsoft_maui_essentials_fileprovider_file_paths;resources\xml\microsoft_maui_essentials_fileprovider_file_paths diff --git a/App/MauiApp1/obj/Debug/net8.0-android/designtime/build.props b/App/MauiApp1/obj/Debug/net8.0-android/designtime/build.props new file mode 100644 index 0000000000000000000000000000000000000000..13ecaac7ff8a68b5983bc20d58d4b78ea1a207ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/designtime/build.props @@ -0,0 +1,31 @@ +aotassemblies=false +androidaddkeepalives= +androidaotmode=interpreter +androidembedprofilers= +androidenableprofiledaot= +androiddextool=d8 +androidlinktool= +androidlinkresources= +androidpackageformat=apk +embedassembliesintoapk=false +androidlinkmode=none +androidlinkskip= +androidsdkbuildtoolsversion=34.0.0 +androidsdkpath=c:\program files (x86)\android\android-sdk\ +androidndkpath= +javasdkpath=c:\program files (x86)\android\openjdk\jdk-17.0.8.101-hotspot\ +androidsequencepointsmode=none +androidnetsdkversion=34.0.113 +monosymbolarchive=false +androiduselatestplatformsdk=false +targetframeworkversion=v8.0 +androidcreatepackageperabi= +androidgeneratejnimarshalmethods=false +os=windows_nt +androidincludedebugsymbols=true +androidpackagenamingpolicy=lowercasecrc64 +_nugetassetstimestamp=638640778901272925 +typemapkind=strings-asm +androidmanifestplaceholders= +projectfullpath=d:\github\robobin\app\mauiapp1\mauiapp1.csproj +androidusedesignerassembly=true diff --git a/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryimports.cache b/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryimports.cache new file mode 100644 index 0000000000000000000000000000000000000000..693fe5a98f1ffe001281227339d38f21d9b7b365 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryimports.cache @@ -0,0 +1 @@ +<Paths><ManifestDocuments><ManifestDocument>obj\Debug\net8.0-android\lp\100\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\101\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\102\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\103\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\104\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\105\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\106\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\107\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\108\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\109\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\110\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\111\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\112\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\113\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\114\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\115\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\116\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\117\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\118\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\119\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\120\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\121\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\122\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\123\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\124\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\125\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\126\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\127\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\128\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\129\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\130\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\131\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\132\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\133\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\134\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\135\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\136\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\137\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\138\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\139\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\140\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\141\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\142\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\143\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\144\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\145\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\146\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\147\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\148\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\149\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\150\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\155\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\90\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\91\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\92\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\93\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\94\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\95\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\96\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\97\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\98\jl\AndroidManifest.xml</ManifestDocument><ManifestDocument>obj\Debug\net8.0-android\lp\99\jl\AndroidManifest.xml</ManifestDocument></ManifestDocuments><NativeLibraries /><Jars><Jar>obj\Debug\net8.0-android\lp\100\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\101\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\102\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\103\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\104\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\105\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\106\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\107\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\108\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\109\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\110\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\111\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\112\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\113\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\114\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\115\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\116\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\117\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\118\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\119\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\120\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\120\jl\libs\repackaged.jar</Jar><Jar>obj\Debug\net8.0-android\lp\121\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\122\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\123\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\124\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\125\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\126\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\127\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\128\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\129\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\130\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\131\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\132\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\133\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\134\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\135\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\136\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\137\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\138\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\139\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\140\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\141\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\142\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\143\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\144\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\145\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\146\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\147\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\148\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\149\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\150\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\151\jl\libs\ED64959F88B22E6D.jar</Jar><Jar>obj\Debug\net8.0-android\lp\152\jl\libs\2E7FD15AFA9B216B.jar</Jar><Jar>obj\Debug\net8.0-android\lp\155\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\158\jl\libs\F975D0960055A5E3.jar</Jar><Jar>obj\Debug\net8.0-android\lp\159\jl\libs\B71CFF5D5A0B3AEB.jar</Jar><Jar>obj\Debug\net8.0-android\lp\90\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\91\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\92\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\93\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\94\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\95\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\96\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\97\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\98\jl\classes.jar</Jar><Jar>obj\Debug\net8.0-android\lp\99\jl\classes.jar</Jar></Jars></Paths> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache b/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache new file mode 100644 index 0000000000000000000000000000000000000000..12d83fe825591f7c76251ff0c8bf1d6c8ebac347 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache @@ -0,0 +1 @@ +<Paths><Jars><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\90\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\91\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\92\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\93\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\94\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\95\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\96\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\97\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\98\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\99\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\100\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\101\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\102\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\103\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\104\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\105\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\106\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\107\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\108\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\109\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\110\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\111\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\112\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\113\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\114\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\115\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\116\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\117\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\118\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\119\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\120\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\120\jl\libs\repackaged.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\121\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\122\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\123\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\124\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\125\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\126\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\127\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\128\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\129\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\130\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\131\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\132\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\133\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\134\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\135\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\136\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\137\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\138\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\139\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\140\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\141\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\142\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\143\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\144\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\145\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\146\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\147\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\148\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\149\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\150\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\151\jl\libs\ED64959F88B22E6D.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\152\jl\libs\2E7FD15AFA9B216B.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\155\jl\classes.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\158\jl\libs\F975D0960055A5E3.jar</Jar><Jar>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\159\jl\libs\B71CFF5D5A0B3AEB.jar</Jar></Jars><ResolvedResourceDirectories><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.versionedparcelable\1.1.1.19\aar\androidx.versionedparcelable.versionedparcelable.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\90\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\90\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.tracing.tracing\1.1.0.6\aar\androidx.tracing.tracing.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\91\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\91\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.startup.startupruntime\1.1.1.7\aar\androidx.startup.startup-runtime.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\92\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\92\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.profileinstaller.profileinstaller\1.3.1.2\aar\androidx.profileinstaller.profileinstaller.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\93\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\93\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.arch.core.runtime\2.2.0.3\aar\androidx.arch.core.core-runtime.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\94\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\94\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.runtime\2.6.1.3\aar\androidx.lifecycle.lifecycle-runtime.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\95\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\95\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.interpolator\1.0.0.19\aar\androidx.interpolator.interpolator.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\96\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\96\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.annotation.experimental\1.3.1.1\aar\androidx.annotation.annotation-experimental.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\97\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\97\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.core\1.10.1.2\aar\androidx.core.core.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\98\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\98\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.customview\1.1.0.18\aar\androidx.customview.customview.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\99\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\99\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.viewpager\1.0.0.19\aar\androidx.viewpager.viewpager.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\100\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\100\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.savedstate\1.2.1.3\aar\androidx.savedstate.savedstate.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\101\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\101\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.core.core.ktx\1.10.1.2\aar\androidx.core.core-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\102\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\102\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.customview.poolingcontainer\1.0.0.5\aar\androidx.customview.customview-poolingcontainer.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\103\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\103\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.recyclerview\1.3.0.3\aar\androidx.recyclerview.recyclerview.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\104\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\104\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.viewmodel\2.6.1.3\aar\androidx.lifecycle.lifecycle-viewmodel.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\105\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\105\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.livedata.core\2.6.1.3\aar\androidx.lifecycle.lifecycle-livedata-core.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\106\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\106\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.loader\1.1.0.19\aar\androidx.loader.loader.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\107\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\107\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.viewmodelsavedstate\2.6.1.3\aar\androidx.lifecycle.lifecycle-viewmodel-savedstate.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\108\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\108\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.activity\1.7.2.1\aar\androidx.activity.activity.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\109\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\109\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.fragment\1.6.0.1\aar\androidx.fragment.fragment.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\110\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\110\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.viewpager2\1.0.0.21\aar\androidx.viewpager2.viewpager2.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\111\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\111\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.vectordrawable\1.1.0.19\aar\androidx.vectordrawable.vectordrawable.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\112\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\112\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.vectordrawable.animated\1.1.0.19\aar\androidx.vectordrawable.vectordrawable-animated.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\113\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\113\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.transition\1.4.1.12\aar\androidx.transition.transition.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\114\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\114\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.print\1.0.0.19\aar\androidx.print.print.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\115\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\115\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.localbroadcastmanager\1.1.0.7\aar\androidx.localbroadcastmanager.localbroadcastmanager.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\116\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\116\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.process\2.6.1.3\aar\androidx.lifecycle.lifecycle-process.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\117\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\117\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.documentfile\1.0.1.19\aar\androidx.documentfile.documentfile.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\118\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\118\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.legacy.support.core.utils\1.0.0.19\aar\androidx.legacy.legacy-support-core-utils.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\119\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\119\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.emoji2\1.3.0.3\aar\androidx.emoji2.emoji2.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\120\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\120\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.emoji2.viewshelper\1.3.0.3\aar\androidx.emoji2.emoji2-views-helper.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\121\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\121\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.dynamicanimation\1.0.0.19\aar\androidx.dynamicanimation.dynamicanimation.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\122\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\122\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.drawerlayout\1.2.0.3\aar\androidx.drawerlayout.drawerlayout.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\123\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\123\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.cursoradapter\1.0.0.19\aar\androidx.cursoradapter.cursoradapter.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\124\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\124\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.coordinatorlayout\1.2.0.7\aar\androidx.coordinatorlayout.coordinatorlayout.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\125\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\125\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.appcompat.appcompatresources\1.6.1.3\aar\androidx.appcompat.appcompat-resources.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\126\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\126\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.appcompat\1.6.1.3\aar\androidx.appcompat.appcompat.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\127\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\127\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.constraintlayout\2.1.4.6\aar\androidx.constraintlayout.constraintlayout.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\128\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\128\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.cardview\1.0.0.21\aar\androidx.cardview.cardview.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\129\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\129\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.google.android.material\1.9.0.2\aar\com.google.android.material.material.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\130\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\130\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.window.extensions.core.core\1.0.0.1\aar\androidx.window.extensions.core.core.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\131\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\131\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.window\1.1.0.1\aar\androidx.window.window.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\132\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\132\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.swiperefreshlayout\1.1.0.14\aar\androidx.swiperefreshlayout.swiperefreshlayout.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\133\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\133\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.slidingpanelayout\1.2.0.7\aar\androidx.slidingpanelayout.slidingpanelayout.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\134\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\134\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.security.securitycrypto\1.1.0.1-alpha06\aar\androidx.security.security-crypto.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\135\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\135\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.savedstate.savedstate.ktx\1.2.1.3\aar\androidx.savedstate.savedstate-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\136\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\136\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.viewmodel.ktx\2.6.1.3\aar\androidx.lifecycle.lifecycle-viewmodel-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\137\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\137\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.runtime.ktx\2.6.1.3\aar\androidx.lifecycle.lifecycle-runtime-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\138\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\138\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.navigation.common\2.6.0.1\aar\androidx.navigation.navigation-common.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\139\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\139\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.activity.ktx\1.7.2.1\aar\androidx.activity.activity-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\140\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\140\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.navigation.runtime\2.6.0.1\aar\androidx.navigation.navigation-runtime.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\141\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\141\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.navigation.ui\2.6.0.1\aar\androidx.navigation.navigation-ui.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\142\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\142\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.livedata.core.ktx\2.6.1.3\aar\androidx.lifecycle.lifecycle-livedata-core-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\143\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\143\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.fragment.ktx\1.6.0.1\aar\androidx.fragment.fragment-ktx.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\144\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\144\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.navigation.fragment\2.6.0.1\aar\androidx.navigation.navigation-fragment.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\145\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\145\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.lifecycle.livedata\2.6.1.3\aar\androidx.lifecycle.lifecycle-livedata.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\146\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\146\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.exifinterface\1.3.6.2\aar\androidx.exifinterface.exifinterface.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\147\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\147\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.androidx.browser\1.5.0.3\aar\androidx.browser.browser.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\148\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\148\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.android.glide.gifdecoder\4.15.1.2\aar\gifdecoder.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\149\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\149\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\xamarin.android.glide\4.15.1.2\aar\glide.aar" AndroidSkipResourceProcessing="true" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\150\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\150\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\microsoft.maui.controls.compatibility\8.0.82\lib\net8.0-android34.0\Microsoft.Maui.Controls.Compatibility.aar" AndroidSkipResourceProcessing="false" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\153\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\153\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\microsoft.maui.controls.core\8.0.82\lib\net8.0-android34.0\Microsoft.Maui.Controls.aar" AndroidSkipResourceProcessing="false" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\154\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\154\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\microsoft.maui.core\8.0.82\lib\net8.0-android34.0\maui.aar" AndroidSkipResourceProcessing="false" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\155\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\155\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\microsoft.maui.core\8.0.82\lib\net8.0-android34.0\Microsoft.Maui.aar" AndroidSkipResourceProcessing="false" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\156\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\156\jl\res</ResolvedResourceDirectory><ResolvedResourceDirectory OriginalFile="C:\Users\paulw\.nuget\packages\microsoft.maui.essentials\8.0.82\lib\net8.0-android34.0\Microsoft.Maui.Essentials.aar" AndroidSkipResourceProcessing="false" ResourceDirectoryArchive="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\157\jl\res.zip">D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\157\jl\res</ResolvedResourceDirectory></ResolvedResourceDirectories><ResolvedAssetDirectories /><ResolvedEnvironmentFiles /><ResolvedResourceDirectoryStamps><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\90.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\91.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\92.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\93.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\94.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\95.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\96.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\97.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\98.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\99.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\100.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\101.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\102.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\103.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\104.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\105.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\106.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\107.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\108.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\109.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\110.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\111.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\112.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\113.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\114.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\115.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\116.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\117.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\118.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\119.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\120.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\121.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\122.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\123.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\124.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\125.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\126.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\127.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\128.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\129.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\130.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\131.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\132.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\133.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\134.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\135.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\136.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\137.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\138.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\139.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\140.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\141.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\142.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\143.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\144.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\145.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\146.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\147.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\148.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\149.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\150.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\153.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\154.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\155.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\156.stamp</ResolvedResourceDirectoryStamp><ResolvedResourceDirectoryStamp>D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\lp\157.stamp</ResolvedResourceDirectoryStamp></ResolvedResourceDirectoryStamps><ProguardConfigFiles /></Paths> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/100.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/100.stamp new file mode 100644 index 0000000000000000000000000000000000000000..0497907c4b65e6447abb615b1d4970c6f7bf6f4c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/100.stamp @@ -0,0 +1 @@ +78E23953B2E72E7F \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..65ceb761b1d2c18c7b7fef1b4b714d2dccb30a21 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.viewpager" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1228a574e2861196a08ae1e5856706152685aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/R.txt @@ -0,0 +1,131 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f080001 +int dimen compat_button_inset_vertical_material 0x7f080002 +int dimen compat_button_padding_horizontal_material 0x7f080003 +int dimen compat_button_padding_vertical_material 0x7f080004 +int dimen compat_control_corner_material 0x7f080005 +int dimen compat_notification_large_icon_max_height 0x7f080006 +int dimen compat_notification_large_icon_max_width 0x7f080007 +int dimen notification_action_icon_size 0x7f080008 +int dimen notification_action_text_size 0x7f080009 +int dimen notification_big_circle_margin 0x7f08000a +int dimen notification_content_margin_start 0x7f08000b +int dimen notification_large_icon_height 0x7f08000c +int dimen notification_large_icon_width 0x7f08000d +int dimen notification_main_column_padding_top 0x7f08000e +int dimen notification_media_narrow_margin 0x7f08000f +int dimen notification_right_icon_size 0x7f080010 +int dimen notification_right_side_padding_top 0x7f080011 +int dimen notification_small_icon_background_padding 0x7f080012 +int dimen notification_small_icon_size_as_large 0x7f080013 +int dimen notification_subtext_size 0x7f080014 +int dimen notification_top_pad 0x7f080015 +int dimen notification_top_pad_large_text 0x7f080016 +int drawable notification_action_background 0x7f090001 +int drawable notification_bg 0x7f090002 +int drawable notification_bg_low 0x7f090003 +int drawable notification_bg_low_normal 0x7f090004 +int drawable notification_bg_low_pressed 0x7f090005 +int drawable notification_bg_normal 0x7f090006 +int drawable notification_bg_normal_pressed 0x7f090007 +int drawable notification_icon_background 0x7f090008 +int drawable notification_template_icon_bg 0x7f090009 +int drawable notification_template_icon_low_bg 0x7f09000a +int drawable notification_tile_bg 0x7f09000b +int drawable notify_panel_notification_icon_bg 0x7f09000c +int id action_container 0x7f0c0001 +int id action_divider 0x7f0c0002 +int id action_image 0x7f0c0003 +int id action_text 0x7f0c0004 +int id actions 0x7f0c0005 +int id async 0x7f0c0006 +int id blocking 0x7f0c0007 +int id chronometer 0x7f0c0008 +int id forever 0x7f0c0009 +int id icon 0x7f0c000a +int id icon_group 0x7f0c000b +int id info 0x7f0c000c +int id italic 0x7f0c000d +int id line1 0x7f0c000e +int id line3 0x7f0c000f +int id normal 0x7f0c0010 +int id notification_background 0x7f0c0011 +int id notification_main_column 0x7f0c0012 +int id notification_main_column_container 0x7f0c0013 +int id right_icon 0x7f0c0014 +int id right_side 0x7f0c0015 +int id tag_transition_group 0x7f0c0016 +int id tag_unhandled_key_event_manager 0x7f0c0017 +int id tag_unhandled_key_listeners 0x7f0c0018 +int id text 0x7f0c0019 +int id text2 0x7f0c001a +int id time 0x7f0c001b +int id title 0x7f0c001c +int integer status_bar_notification_info_maxnum 0x7f0d0001 +int layout notification_action 0x7f0f0001 +int layout notification_action_tombstone 0x7f0f0002 +int layout notification_template_custom_big 0x7f0f0003 +int layout notification_template_icon_group 0x7f0f0004 +int layout notification_template_part_chronometer 0x7f0f0005 +int layout notification_template_part_time 0x7f0f0006 +int string status_bar_notification_info_overflow 0x7f150001 +int style TextAppearance_Compat_Notification 0x7f160001 +int style TextAppearance_Compat_Notification_Info 0x7f160002 +int style TextAppearance_Compat_Notification_Line2 0x7f160003 +int style TextAppearance_Compat_Notification_Time 0x7f160004 +int style TextAppearance_Compat_Notification_Title 0x7f160005 +int style Widget_Compat_NotificationActionContainer 0x7f160006 +int style Widget_Compat_NotificationActionText 0x7f160007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..6ccda32b27a329d4e9295d60a03f179b6272fb68 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/100/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/101.stamp new file mode 100644 index 0000000000000000000000000000000000000000..211d1b720e634b5da760d37dbcb96f910d6ae12f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101.stamp @@ -0,0 +1 @@ +22230B73D906B544 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9ff51d667e2d10bf822effed9caa43dd50b8c34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.savedstate" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc9af07af861db0b47d9026b8f49c176732f9da3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/R.txt @@ -0,0 +1 @@ +int id view_tree_saved_state_registry_owner 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..b73828b5c5f95918c7abd1123fcc9f5b0c4becb9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..61105c05d0862022751427462d605177295f2232 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/proguard.txt @@ -0,0 +1,17 @@ +# Copyright (C) 2019 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +-keepclassmembers,allowobfuscation class * implements androidx.savedstate.SavedStateRegistry$AutoRecreated { + <init>(); +} diff --git a/example2.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/public.txt similarity index 100% rename from example2.txt rename to App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/public.txt diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..65bbf587cc57d0685c608200fa666d4f0381ffe2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..b0dddbd41d38a8d58817be347c8fe667f126d830 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <id name="view_tree_saved_state_registry_owner"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/102.stamp new file mode 100644 index 0000000000000000000000000000000000000000..25e5d6fbe83f6fcaf7d7ee99f8b9073070e2eb32 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/102.stamp @@ -0,0 +1 @@ +E25D53FF83D2E93F \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..3bb3036d90329a128707598a4707e4c681cc0d53 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.core.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/example3.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/R.txt similarity index 100% rename from example3.txt rename to App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/R.txt diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..83fbb5622e4478c9bede3b12ee4e135d869388c1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/103.stamp new file mode 100644 index 0000000000000000000000000000000000000000..a88b9138276f4a56d32cf0e53de0fe627f6e6860 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/103.stamp @@ -0,0 +1 @@ +04FF5580150F8ECB \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b59cb6aa33e32c8c33be6b2f12e658c611893d6e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.customview.poolingcontainer" > + + <uses-sdk + android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..1dd4b2ca92b151141a6171d522edec27d0e8fe7f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=32 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..03dcd8b0ebca9c104e24f3f210a5215162655d47 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/R.txt @@ -0,0 +1,2 @@ +int id is_pooling_container_tag 0x0 +int id pooling_container_listener_holder_tag 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..dcde0b9af8a69659e0c6d4c96804d700cf8d0519 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..af3b9278b3096bc4a9fb126d437fd8fa9848389b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..62e9f44a055ac0ab908a43e38012bcf06e43578b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="is_pooling_container_tag" type="id"/> + <item name="pooling_container_listener_holder_tag" type="id"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/104.stamp new file mode 100644 index 0000000000000000000000000000000000000000..d120a0e39f1bfc670707f2416d48c2b306863b73 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104.stamp @@ -0,0 +1 @@ +5FF27023FD0703B5 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9ea9564a691fd98e4e04982c28a535807571ec0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.recyclerview" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..00ee528c8667654429ec070ec7f9da5ea2793164 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/R.txt @@ -0,0 +1,30 @@ +int attr fastScrollEnabled 0x0 +int attr fastScrollHorizontalThumbDrawable 0x0 +int attr fastScrollHorizontalTrackDrawable 0x0 +int attr fastScrollVerticalThumbDrawable 0x0 +int attr fastScrollVerticalTrackDrawable 0x0 +int attr layoutManager 0x0 +int attr recyclerViewStyle 0x0 +int attr reverseLayout 0x0 +int attr spanCount 0x0 +int attr stackFromEnd 0x0 +int dimen fastscroll_default_thickness 0x0 +int dimen fastscroll_margin 0x0 +int dimen fastscroll_minimum_range 0x0 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x0 +int dimen item_touch_helper_swipe_escape_max_velocity 0x0 +int dimen item_touch_helper_swipe_escape_velocity 0x0 +int id item_touch_helper_previous_elevation 0x0 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..5c549bc2a641d0255a12743f3c9bba243d8297ab Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..b28edbe25d90e9ee9d284e7df5e99a5aaf716a3a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt @@ -0,0 +1,548 @@ +HSPLandroidx/recyclerview/R$styleable;-><clinit>()V +HSPLandroidx/recyclerview/widget/AdapterHelper$UpdateOp;-><init>(IIILjava/lang/Object;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;-><init>(Landroidx/recyclerview/widget/AdapterHelper$Callback;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;-><init>(Landroidx/recyclerview/widget/AdapterHelper$Callback;Z)V +HSPLandroidx/recyclerview/widget/AdapterHelper;->applyAdd(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;->consumePostponedUpdates()V +HSPLandroidx/recyclerview/widget/AdapterHelper;->consumeUpdatesInOnePass()V +HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(I)I +HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(II)I +HSPLandroidx/recyclerview/widget/AdapterHelper;->hasPendingUpdates()Z +HSPLandroidx/recyclerview/widget/AdapterHelper;->obtainUpdateOp(IIILjava/lang/Object;)Landroidx/recyclerview/widget/AdapterHelper$UpdateOp; +HSPLandroidx/recyclerview/widget/AdapterHelper;->onItemRangeInserted(II)Z +HSPLandroidx/recyclerview/widget/AdapterHelper;->postponeAndUpdateViewHolders(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;->preProcess()V +HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOp(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOpsAndClearList(Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/AdapterHelper;->reset()V +HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;-><init>(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V +HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;->onInserted(II)V +HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;-><clinit>()V +HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;-><init>(Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V +HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->build()Landroidx/recyclerview/widget/AsyncDifferConfig; +HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->setBackgroundThreadExecutor(Ljava/util/concurrent/Executor;)Landroidx/recyclerview/widget/AsyncDifferConfig$Builder; +HSPLandroidx/recyclerview/widget/AsyncDifferConfig;-><init>(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V +HSPLandroidx/recyclerview/widget/AsyncDifferConfig;->getMainThreadExecutor()Ljava/util/concurrent/Executor; +HSPLandroidx/recyclerview/widget/AsyncListDiffer$MainThreadExecutor;-><init>()V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;-><clinit>()V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;-><init>(Landroidx/recyclerview/widget/ListUpdateCallback;Landroidx/recyclerview/widget/AsyncDifferConfig;)V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;->addListListener(Landroidx/recyclerview/widget/AsyncListDiffer$ListListener;)V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;->getCurrentList()Ljava/util/List; +HSPLandroidx/recyclerview/widget/AsyncListDiffer;->onCurrentListChanged(Ljava/util/List;Ljava/lang/Runnable;)V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;Ljava/lang/Runnable;)V +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;-><init>()V +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->clear(I)V +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->countOnesBefore(I)I +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->get(I)Z +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->insert(IZ)V +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->remove(I)Z +HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->reset()V +HSPLandroidx/recyclerview/widget/ChildHelper;-><init>(Landroidx/recyclerview/widget/ChildHelper$Callback;)V +HSPLandroidx/recyclerview/widget/ChildHelper;->addView(Landroid/view/View;IZ)V +HSPLandroidx/recyclerview/widget/ChildHelper;->findHiddenNonRemovedView(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/ChildHelper;->getChildAt(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/ChildHelper;->getChildCount()I +HSPLandroidx/recyclerview/widget/ChildHelper;->getOffset(I)I +HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildAt(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildCount()I +HSPLandroidx/recyclerview/widget/ChildHelper;->isHidden(Landroid/view/View;)Z +HSPLandroidx/recyclerview/widget/ChildHelper;->removeAllViewsUnfiltered()V +HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewAt(I)V +HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewIfHidden(Landroid/view/View;)Z +HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;-><init>(Landroidx/recyclerview/widget/DefaultItemAnimator;Ljava/util/ArrayList;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;->run()V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;-><init>(Landroidx/recyclerview/widget/DefaultItemAnimator;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroid/view/View;Landroid/view/ViewPropertyAnimator;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationEnd(Landroid/animation/Animator;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationStart(Landroid/animation/Animator;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;-><init>()V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAdd(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAddImpl(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->dispatchFinishedWhenDone()V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimations()V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endChangeAnimation(Ljava/util/List;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->isRunning()Z +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->resetAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->runPendingAnimations()V +HSPLandroidx/recyclerview/widget/DiffUtil$ItemCallback;-><init>()V +HSPLandroidx/recyclerview/widget/GapWorker$1;-><init>()V +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;-><init>()V +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->addPosition(II)V +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->clearPrefetchPositions()V +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->collectPrefetchPositionsFromView(Landroidx/recyclerview/widget/RecyclerView;Z)V +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->lastPrefetchIncludedPosition(I)Z +HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->setPrefetchVector(II)V +HSPLandroidx/recyclerview/widget/GapWorker$Task;-><init>()V +HSPLandroidx/recyclerview/widget/GapWorker$Task;->clear()V +HSPLandroidx/recyclerview/widget/GapWorker;-><clinit>()V +HSPLandroidx/recyclerview/widget/GapWorker;-><init>()V +HSPLandroidx/recyclerview/widget/GapWorker;->add(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/GapWorker;->buildTaskList()V +HSPLandroidx/recyclerview/widget/GapWorker;->flushTaskWithDeadline(Landroidx/recyclerview/widget/GapWorker$Task;J)V +HSPLandroidx/recyclerview/widget/GapWorker;->flushTasksWithDeadline(J)V +HSPLandroidx/recyclerview/widget/GapWorker;->isPrefetchPositionAttached(Landroidx/recyclerview/widget/RecyclerView;I)Z +HSPLandroidx/recyclerview/widget/GapWorker;->postFromTraversal(Landroidx/recyclerview/widget/RecyclerView;II)V +HSPLandroidx/recyclerview/widget/GapWorker;->prefetch(J)V +HSPLandroidx/recyclerview/widget/GapWorker;->prefetchPositionWithDeadline(Landroidx/recyclerview/widget/RecyclerView;IJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/GapWorker;->run()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;-><init>()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->assignCoordinateFromPadding()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->reset()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;-><init>()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;->resetInternal()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;-><init>()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->hasMore(Landroidx/recyclerview/widget/RecyclerView$State;)Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->next(Landroidx/recyclerview/widget/RecyclerView$Recycler;)Landroid/view/View; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->calculateExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;[I)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollHorizontally()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollVertically()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectAdjacentPrefetchPositions(IILandroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectPrefetchPositionsForLayoutState(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->createLayoutState()Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->ensureLayoutState()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fill(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$State;Z)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToEnd(ZZ)Landroid/view/View; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToStart(ZZ)Landroid/view/View; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleItemPosition()I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findLastVisibleItemPosition()I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findOneVisibleChild(IIZZ)Landroid/view/View; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutEndGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutStartGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToEnd()Landroid/view/View; +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isAutoMeasureEnabled()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isLayoutRTL()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutChunk(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutForPredictiveAnimations(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onAnchorReady(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;I)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleByLayoutState(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleViewsFromStart(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveIsInfinite()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveShouldLayoutReverse()V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollVerticallyBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setOrientation(I)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setReverseLayout(Z)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setStackFromEnd(Z)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->supportsPredictiveItemAnimations()Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromPendingData(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorInfoForLayout(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutState(IIZLandroidx/recyclerview/widget/RecyclerView$State;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(II)V +HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V +HSPLandroidx/recyclerview/widget/ListAdapter$1;-><init>(Landroidx/recyclerview/widget/ListAdapter;)V +HSPLandroidx/recyclerview/widget/ListAdapter$1;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/ListAdapter;-><init>(Landroidx/recyclerview/widget/AsyncDifferConfig;)V +HSPLandroidx/recyclerview/widget/ListAdapter;->getItem(I)Ljava/lang/Object; +HSPLandroidx/recyclerview/widget/ListAdapter;->getItemCount()I +HSPLandroidx/recyclerview/widget/ListAdapter;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/ListAdapter;->submitList(Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/OpReorderer;-><init>(Landroidx/recyclerview/widget/OpReorderer$Callback;)V +HSPLandroidx/recyclerview/widget/OpReorderer;->getLastMoveOutOfOrder(Ljava/util/List;)I +HSPLandroidx/recyclerview/widget/OpReorderer;->reorderOps(Ljava/util/List;)V +HSPLandroidx/recyclerview/widget/OrientationHelper$2;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedEnd(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurement(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurementInOther(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedStart(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndAfterPadding()I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndPadding()I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getMode()I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getStartAfterPadding()I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTotalSpace()I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTransformedEndWithDecoration(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/OrientationHelper$2;->offsetChildren(I)V +HSPLandroidx/recyclerview/widget/OrientationHelper;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V +HSPLandroidx/recyclerview/widget/OrientationHelper;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroidx/recyclerview/widget/OrientationHelper$1;)V +HSPLandroidx/recyclerview/widget/OrientationHelper;->createOrientationHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;I)Landroidx/recyclerview/widget/OrientationHelper; +HSPLandroidx/recyclerview/widget/OrientationHelper;->createVerticalHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroidx/recyclerview/widget/OrientationHelper; +HSPLandroidx/recyclerview/widget/OrientationHelper;->onLayoutComplete()V +HSPLandroidx/recyclerview/widget/RecyclerView$1;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$2;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$2;->run()V +HSPLandroidx/recyclerview/widget/RecyclerView$3;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$4;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$4;->processAppeared(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V +HSPLandroidx/recyclerview/widget/RecyclerView$5;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$5;->addView(Landroid/view/View;I)V +HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildAt(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildCount()I +HSPLandroidx/recyclerview/widget/RecyclerView$5;->indexOfChild(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeAllViews()V +HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeViewAt(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$6;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$6;->dispatchUpdate(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V +HSPLandroidx/recyclerview/widget/RecyclerView$6;->offsetPositionsForAdd(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$6;->onDispatchSecondPass(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;-><clinit>()V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;-><init>(Ljava/lang/String;I)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->bindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->createViewHolder(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->getItemViewType(I)I +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->hasStableIds()Z +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->notifyItemRangeInserted(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onAttachedToRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onBindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;ILjava/util/List;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->registerAdapterDataObserver(Landroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;)V +HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;->notifyItemRangeInserted(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$EdgeEffectFactory;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo; +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo; +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationsFinished()V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->getAddDuration()J +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->obtainHolderInfo()Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo; +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->recordPostLayoutInformation(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo; +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->setListener(Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemAnimatorListener;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$1;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildAt(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildEnd(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildStart(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentEnd()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentStart()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;I)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addViewInt(Landroid/view/View;IZ)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->checkLayoutParams(Landroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->chooseSize(III)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->detachAndScrapAttachedViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->generateLayoutParams(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/recyclerview/widget/RecyclerView$LayoutParams; +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getBottomDecorationHeight(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildAt(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildCount()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildMeasureSpec(IIIIZ)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getColumnCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedBottom(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredHeight(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredWidth(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedTop(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getFocusedChild()Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeight()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeightMode()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getLayoutDirection()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingBottom()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingLeft()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingRight()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingTop()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPosition(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getProperties(Landroid/content/Context;Landroid/util/AttributeSet;II)Landroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties; +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getRowCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getSelectionModeForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTopDecorationHeight(Landroid/view/View;)I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTransformedBoundingBox(Landroid/view/View;ZLandroid/graphics/Rect;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidth()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidthMode()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isItemPrefetchEnabled()Z +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isLayoutHierarchical(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)Z +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->layoutDecoratedWithMargins(Landroid/view/View;IIII)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->measureChildWithMargins(Landroid/view/View;II)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->offsetChildrenVertical(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onItemsAdded(Landroidx/recyclerview/widget/RecyclerView;II)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onMeasure(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onScrollStateChanged(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleAllViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleScrapInt(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleViewAt(ILandroidx/recyclerview/widget/RecyclerView$Recycler;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeViewAt(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->requestLayout()V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setExactMeasureSpecsFrom(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setMeasureSpecs(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->shouldMeasureChild(Landroid/view/View;IILandroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->stopSmoothScroller()V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->getViewLayoutPosition()I +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemChanged()Z +HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemRemoved()Z +HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;->onScrollStateChanged(Landroidx/recyclerview/widget/RecyclerView;I)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->attach()V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->clear()V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInBindTime(IJ)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInCreateTime(IJ)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getRecycledView(I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getScrapDataForType(I)Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData; +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->putRecycledView(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->runningAverage(JJ)J +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willBindInTime(IJJ)Z +HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willCreateInTime(IJJ)Z +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->addViewHolderToRecycledViewPool(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Z)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->attachAccessibilityDelegateOnBind(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clear()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearOldPositions()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearScrap()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->dispatchViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getRecycledViewPool()Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapCount()I +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapList()Ljava/util/List; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapOrHiddenOrCachedHolderForPosition(IZ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(I)Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(IZ)Landroid/view/View; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markItemDecorInsetsDirty()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markKnownViewsInvalid()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->offsetPositionRecordsForInsert(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleAndClearCachedViews()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleCachedViewAt(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleView(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleViewHolderInternal(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryBindViewHolderByDeadline(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;IIJ)Z +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryGetViewHolderForPositionByDeadline(IZJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->updateViewCacheSize()V +HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->validateViewHolderForOffsetPosition(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z +HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->onItemRangeInserted(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->triggerUpdateProcessor()V +HSPLandroidx/recyclerview/widget/RecyclerView$State;-><init>()V +HSPLandroidx/recyclerview/widget/RecyclerView$State;->assertLayoutStep(I)V +HSPLandroidx/recyclerview/widget/RecyclerView$State;->getItemCount()I +HSPLandroidx/recyclerview/widget/RecyclerView$State;->hasTargetScrollPosition()Z +HSPLandroidx/recyclerview/widget/RecyclerView$State;->isPreLayout()Z +HSPLandroidx/recyclerview/widget/RecyclerView$State;->willRunPredictiveAnimations()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->fling(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->internalPostOnAnimation()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->postOnAnimation()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->run()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->stop()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;-><clinit>()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;-><init>(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->clearPayload()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->doesTransientStatePreventRecycling()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getItemViewType()I +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getLayoutPosition()I +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getUnmodifiedPayloads()Ljava/util/List; +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->hasAnyOfTheFlags(I)Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isAttachedToTransitionOverlay()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isBound()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isInvalid()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRecyclable()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRemoved()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isScrap()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isTmpDetached()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isUpdated()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->needsUpdate()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->resetInternal()V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setFlags(II)V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setIsRecyclable(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldBeKeptAsChild()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldIgnore()Z +HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->wasReturnedFromScrap()Z +HSPLandroidx/recyclerview/widget/RecyclerView;-><clinit>()V +HSPLandroidx/recyclerview/widget/RecyclerView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/recyclerview/widget/RecyclerView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->absorbGlows(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->access$200(Landroidx/recyclerview/widget/RecyclerView;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->addOnScrollListener(Landroidx/recyclerview/widget/RecyclerView$OnScrollListener;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->assertNotInLayoutOrScroll(Ljava/lang/String;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->clearNestedRecyclerViewIfNotNested(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->clearOldPositions()V +HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollExtent()I +HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollOffset()I +HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollRange()I +HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollExtent()I +HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollOffset()I +HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollRange()I +HSPLandroidx/recyclerview/widget/RecyclerView;->considerReleasingGlowsOnScroll(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->consumePendingUpdateOperations()V +HSPLandroidx/recyclerview/widget/RecyclerView;->createLayoutManager(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->defaultOnMeasure(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->didChildRangeChange(II)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildAttached(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildDetached(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchContentChangedIfNecessary()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayout()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep1()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep2()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep3()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedFling(FFZ)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreFling(FF)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreScroll(II[I[II)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedScroll(IIII[II[I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrollStateChanged(I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrolled(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchPendingImportantForAccessibilityChanges()V +HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchToOnItemTouchListeners(Landroid/view/MotionEvent;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->draw(Landroid/graphics/Canvas;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->fillRemainingScrollValues(Landroidx/recyclerview/widget/RecyclerView$State;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->findInterceptingOnItemTouchListener(Landroid/view/MotionEvent;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->findMinMaxChildLayoutPositions([I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->findNestedRecyclerView(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView; +HSPLandroidx/recyclerview/widget/RecyclerView;->fling(II)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams; +HSPLandroidx/recyclerview/widget/RecyclerView;->getAccessibilityClassName()Ljava/lang/CharSequence; +HSPLandroidx/recyclerview/widget/RecyclerView;->getChangedHolderKey(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)J +HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolder(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolderInt(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/RecyclerView;->getFullClassName(Landroid/content/Context;Ljava/lang/String;)Ljava/lang/String; +HSPLandroidx/recyclerview/widget/RecyclerView;->getItemDecorInsetsForChild(Landroid/view/View;)Landroid/graphics/Rect; +HSPLandroidx/recyclerview/widget/RecyclerView;->getLayoutManager()Landroidx/recyclerview/widget/RecyclerView$LayoutManager; +HSPLandroidx/recyclerview/widget/RecyclerView;->getNanoTime()J +HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollState()I +HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollingChildHelper()Landroidx/core/view/NestedScrollingChildHelper; +HSPLandroidx/recyclerview/widget/RecyclerView;->hasPendingAdapterUpdates()Z +HSPLandroidx/recyclerview/widget/RecyclerView;->initAdapterManager()V +HSPLandroidx/recyclerview/widget/RecyclerView;->initAutofill()V +HSPLandroidx/recyclerview/widget/RecyclerView;->initChildrenHelper()V +HSPLandroidx/recyclerview/widget/RecyclerView;->invalidateGlows()V +HSPLandroidx/recyclerview/widget/RecyclerView;->isAccessibilityEnabled()Z +HSPLandroidx/recyclerview/widget/RecyclerView;->isAttachedToWindow()Z +HSPLandroidx/recyclerview/widget/RecyclerView;->isComputingLayout()Z +HSPLandroidx/recyclerview/widget/RecyclerView;->markItemDecorInsetsDirty()V +HSPLandroidx/recyclerview/widget/RecyclerView;->markKnownViewsInvalid()V +HSPLandroidx/recyclerview/widget/RecyclerView;->offsetChildrenVertical(I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->offsetPositionRecordsForInsert(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onAttachedToWindow()V +HSPLandroidx/recyclerview/widget/RecyclerView;->onChildAttachedToWindow(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onChildDetachedFromWindow(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onDraw(Landroid/graphics/Canvas;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onEnterLayoutOrScroll()V +HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll()V +HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onInterceptTouchEvent(Landroid/view/MotionEvent;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->onLayout(ZIIII)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onMeasure(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onScrollStateChanged(I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onScrolled(II)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onSizeChanged(IIII)V +HSPLandroidx/recyclerview/widget/RecyclerView;->onTouchEvent(Landroid/view/MotionEvent;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->postAnimationRunner()V +HSPLandroidx/recyclerview/widget/RecyclerView;->predictiveItemAnimationsEnabled()Z +HSPLandroidx/recyclerview/widget/RecyclerView;->processAdapterUpdatesAndSetAnimationFlags()V +HSPLandroidx/recyclerview/widget/RecyclerView;->processDataSetCompletelyChanged(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView;->pullGlows(FFFF)V +HSPLandroidx/recyclerview/widget/RecyclerView;->recoverFocusFromState()V +HSPLandroidx/recyclerview/widget/RecyclerView;->releaseGlows()V +HSPLandroidx/recyclerview/widget/RecyclerView;->removeAndRecycleViews()V +HSPLandroidx/recyclerview/widget/RecyclerView;->removeAnimatingView(Landroid/view/View;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->repositionShadowingViews()V +HSPLandroidx/recyclerview/widget/RecyclerView;->requestLayout()V +HSPLandroidx/recyclerview/widget/RecyclerView;->resetFocusInfo()V +HSPLandroidx/recyclerview/widget/RecyclerView;->resetScroll()V +HSPLandroidx/recyclerview/widget/RecyclerView;->saveFocusInfo()V +HSPLandroidx/recyclerview/widget/RecyclerView;->saveOldPositions()V +HSPLandroidx/recyclerview/widget/RecyclerView;->scrollByInternal(IILandroid/view/MotionEvent;I)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->scrollStep(II[I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->sendAccessibilityEventUnchecked(Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setAccessibilityDelegateCompat(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapter(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapterInternal(Landroidx/recyclerview/widget/RecyclerView$Adapter;ZZ)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutFrozen(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutManager(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setNestedScrollingEnabled(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView;->setScrollState(I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->shouldDeferAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->startInterceptRequestLayout()V +HSPLandroidx/recyclerview/widget/RecyclerView;->startNestedScroll(II)Z +HSPLandroidx/recyclerview/widget/RecyclerView;->stopInterceptRequestLayout(Z)V +HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll()V +HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll(I)V +HSPLandroidx/recyclerview/widget/RecyclerView;->stopScroll()V +HSPLandroidx/recyclerview/widget/RecyclerView;->stopScrollersInternal()V +HSPLandroidx/recyclerview/widget/RecyclerView;->suppressLayout(Z)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;-><init>(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAccessibilityNodeProvider(Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat; +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAndRemoveOriginalDelegateForItem(Landroid/view/View;)Landroidx/core/view/AccessibilityDelegateCompat; +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->saveOriginalDelegate(Landroid/view/View;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->getItemDelegate()Landroidx/core/view/AccessibilityDelegateCompat; +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V +HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->shouldIgnore()Z +HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I +HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;ZZ)I +HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;-><init>()V +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)Z +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;-><init>()V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->addFlags(I)V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->boundsMatch()Z +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->compare(II)I +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->resetFlags()V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->setBounds(IIII)V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck;-><init>(Landroidx/recyclerview/widget/ViewBoundsCheck$Callback;)V +HSPLandroidx/recyclerview/widget/ViewBoundsCheck;->findOneViewWithinBoundFlags(IIII)Landroid/view/View; +HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;-><clinit>()V +HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;-><init>()V +HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->obtain()Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord; +HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->recycle(Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord;)V +HSPLandroidx/recyclerview/widget/ViewInfoStore;-><init>()V +HSPLandroidx/recyclerview/widget/ViewInfoStore;->addToPostLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V +HSPLandroidx/recyclerview/widget/ViewInfoStore;->clear()V +HSPLandroidx/recyclerview/widget/ViewInfoStore;->getFromOldChangeHolders(J)Landroidx/recyclerview/widget/RecyclerView$ViewHolder; +HSPLandroidx/recyclerview/widget/ViewInfoStore;->process(Landroidx/recyclerview/widget/ViewInfoStore$ProcessCallback;)V +HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeFromDisappearedInLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V +PLandroidx/recyclerview/widget/GapWorker;->remove(Landroidx/recyclerview/widget/RecyclerView;)V +PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState$1;-><init>()V +PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;-><clinit>()V +PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;-><init>()V +PLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToStart()Landroid/view/View; +PLandroidx/recyclerview/widget/LinearLayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +PLandroidx/recyclerview/widget/LinearLayoutManager;->onSaveInstanceState()Landroid/os/Parcelable; +PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;)V +PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V +PLandroidx/recyclerview/widget/RecyclerView$SavedState$1;-><init>()V +PLandroidx/recyclerview/widget/RecyclerView$SavedState;-><clinit>()V +PLandroidx/recyclerview/widget/RecyclerView$SavedState;-><init>(Landroid/os/Parcelable;)V +PLandroidx/recyclerview/widget/RecyclerView;->dispatchSaveInstanceState(Landroid/util/SparseArray;)V +PLandroidx/recyclerview/widget/RecyclerView;->onDetachedFromWindow()V +PLandroidx/recyclerview/widget/RecyclerView;->onSaveInstanceState()Landroid/os/Parcelable; +PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V +PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->sendAccessibilityEventUnchecked(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V +PLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->drainCache()V +PLandroidx/recyclerview/widget/ViewInfoStore;->onDetach()V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..d692e4c580b894232a45dec518b7314ffad6f4a1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..c258298d5340490337b8f0536aa825b26420de30 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/proguard.txt @@ -0,0 +1,25 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# When layoutManager xml attribute is used, RecyclerView inflates +#LayoutManagers' constructors using reflection. +-keep public class * extends androidx.recyclerview.widget.RecyclerView$LayoutManager { + public <init>(android.content.Context, android.util.AttributeSet, int, int); + public <init>(); +} + +-keepclassmembers class androidx.recyclerview.widget.RecyclerView { + public void suppressLayout(boolean); + public boolean isLayoutSuppressed(); +} \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..475bfc43d0b50eef49b94b8d84a977448611f542 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/public.txt @@ -0,0 +1,9 @@ +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr layoutManager +attr reverseLayout +attr spanCount +attr stackFromEnd diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..394afeb332dee625d4757c2e64c641b88896f76a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..72849ef957e82ad7e75fda09e19ca3364cdc3bf8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="reference" name="recyclerViewStyle"/> + <dimen name="fastscroll_default_thickness">8dp</dimen> + <dimen name="fastscroll_margin">0dp</dimen> + <dimen name="fastscroll_minimum_range">50dp</dimen> + <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen> + <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen> + <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen> + <item name="item_touch_helper_previous_elevation" type="id"/> + <declare-styleable name="RecyclerView"> + + <attr format="string" name="layoutManager"/> + + + + + <eat-comment/> + + <attr name="android:orientation"/> + <attr name="android:descendantFocusability"/> + <attr name="android:clipToPadding"/> + <attr format="integer" name="spanCount"/> + <attr format="boolean" name="reverseLayout"/> + <attr format="boolean" name="stackFromEnd"/> + <attr format="boolean" name="fastScrollEnabled"/> + <attr format="reference" name="fastScrollVerticalThumbDrawable"/> + <attr format="reference" name="fastScrollVerticalTrackDrawable"/> + <attr format="reference" name="fastScrollHorizontalThumbDrawable"/> + <attr format="reference" name="fastScrollHorizontalTrackDrawable"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/105.stamp new file mode 100644 index 0000000000000000000000000000000000000000..3de3745125e66fd85e1d44c00edabbba16a42ec1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105.stamp @@ -0,0 +1 @@ +E49989E04848909F \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..45c0d57da26d3326030b2d4eb51e40003941768b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.viewmodel" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd745fc77c51f4124c8031367d0dff98c832b80b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/R.txt @@ -0,0 +1 @@ +int id view_tree_view_model_store_owner 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..3475936205eb857f55176474abdb88bc4d1dd815 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt @@ -0,0 +1,15 @@ +# Baseline profiles for Lifecycle ViewModel + +HSPLandroidx/lifecycle/ViewModel;-><init>()V +HSPLandroidx/lifecycle/ViewModelLazy;-><init>(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/ViewModelProvider;-><init>(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;-><init>()V +HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V +PLandroidx/lifecycle/ViewModel;->clear()V +PLandroidx/lifecycle/ViewModel;->onCleared()V +PLandroidx/lifecycle/ViewModelStore;->clear()V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..21e175579eb0016600a709446f09918400490ad3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e79ffe1c0f2783ceaf27ce9d6b5432d5e584704 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/proguard.txt @@ -0,0 +1,7 @@ +-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel { + <init>(); +} + +-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel { + <init>(android.app.Application); +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..9103a53af3f0b0324308e76340df0a858e9a15b6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..46ed616bdf320edd1dae96b072127a8e93df0b99 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <id name="view_tree_view_model_store_owner"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/106.stamp new file mode 100644 index 0000000000000000000000000000000000000000..48b050869fa2d87c984db54e5d177f95187f11f3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/106.stamp @@ -0,0 +1 @@ +D9451A8FC41F64B0 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..21681ccd0a5928cbec6f00ef039c002fcd341de7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.livedata.core" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab4ae84a68ecfb3031961680671b8a41d8ca8b1e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt @@ -0,0 +1,40 @@ +# Baseline profiles for lifecycle-livedata-core + +HSPLandroidx/lifecycle/LiveData$1;-><init>(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/LiveData$1;->run()V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V +HSPLandroidx/lifecycle/LiveData;-><clinit>()V +HSPLandroidx/lifecycle/LiveData;-><init>()V +HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V +HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/LiveData;->getVersion()I +HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z +HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->onActive()V +HSPLandroidx/lifecycle/LiveData;->onInactive()V +HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V +HSPLandroidx/lifecycle/MediatorLiveData;-><init>()V +HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V +HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V +HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/MutableLiveData;-><init>()V +HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V +PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..4f1af9bca92d520ee2cf0e031ca5b85c180488bf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/107.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/107.stamp new file mode 100644 index 0000000000000000000000000000000000000000..63e082879d0eed76f2dfdd6dc3dda3594e6f7ef4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/107.stamp @@ -0,0 +1 @@ +109841B2AB535CED \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ac8728b1a628d52da4dc6e7727ffc7c6ded326ba --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.loader" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="28" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c5f8bc570fd7f005ad9771a25328bd84dea9ffc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/R.txt @@ -0,0 +1,131 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f070001 +int dimen compat_button_inset_vertical_material 0x7f070002 +int dimen compat_button_padding_horizontal_material 0x7f070003 +int dimen compat_button_padding_vertical_material 0x7f070004 +int dimen compat_control_corner_material 0x7f070005 +int dimen compat_notification_large_icon_max_height 0x7f070006 +int dimen compat_notification_large_icon_max_width 0x7f070007 +int dimen notification_action_icon_size 0x7f070008 +int dimen notification_action_text_size 0x7f070009 +int dimen notification_big_circle_margin 0x7f07000a +int dimen notification_content_margin_start 0x7f07000b +int dimen notification_large_icon_height 0x7f07000c +int dimen notification_large_icon_width 0x7f07000d +int dimen notification_main_column_padding_top 0x7f07000e +int dimen notification_media_narrow_margin 0x7f07000f +int dimen notification_right_icon_size 0x7f070010 +int dimen notification_right_side_padding_top 0x7f070011 +int dimen notification_small_icon_background_padding 0x7f070012 +int dimen notification_small_icon_size_as_large 0x7f070013 +int dimen notification_subtext_size 0x7f070014 +int dimen notification_top_pad 0x7f070015 +int dimen notification_top_pad_large_text 0x7f070016 +int drawable notification_action_background 0x7f080001 +int drawable notification_bg 0x7f080002 +int drawable notification_bg_low 0x7f080003 +int drawable notification_bg_low_normal 0x7f080004 +int drawable notification_bg_low_pressed 0x7f080005 +int drawable notification_bg_normal 0x7f080006 +int drawable notification_bg_normal_pressed 0x7f080007 +int drawable notification_icon_background 0x7f080008 +int drawable notification_template_icon_bg 0x7f080009 +int drawable notification_template_icon_low_bg 0x7f08000a +int drawable notification_tile_bg 0x7f08000b +int drawable notify_panel_notification_icon_bg 0x7f08000c +int id action_container 0x7f0b0001 +int id action_divider 0x7f0b0002 +int id action_image 0x7f0b0003 +int id action_text 0x7f0b0004 +int id actions 0x7f0b0005 +int id async 0x7f0b0006 +int id blocking 0x7f0b0007 +int id chronometer 0x7f0b0008 +int id forever 0x7f0b0009 +int id icon 0x7f0b000a +int id icon_group 0x7f0b000b +int id info 0x7f0b000c +int id italic 0x7f0b000d +int id line1 0x7f0b000e +int id line3 0x7f0b000f +int id normal 0x7f0b0010 +int id notification_background 0x7f0b0011 +int id notification_main_column 0x7f0b0012 +int id notification_main_column_container 0x7f0b0013 +int id right_icon 0x7f0b0014 +int id right_side 0x7f0b0015 +int id tag_transition_group 0x7f0b0016 +int id tag_unhandled_key_event_manager 0x7f0b0017 +int id tag_unhandled_key_listeners 0x7f0b0018 +int id text 0x7f0b0019 +int id text2 0x7f0b001a +int id time 0x7f0b001b +int id title 0x7f0b001c +int integer status_bar_notification_info_maxnum 0x7f0c0001 +int layout notification_action 0x7f0e0001 +int layout notification_action_tombstone 0x7f0e0002 +int layout notification_template_custom_big 0x7f0e0003 +int layout notification_template_icon_group 0x7f0e0004 +int layout notification_template_part_chronometer 0x7f0e0005 +int layout notification_template_part_time 0x7f0e0006 +int string status_bar_notification_info_overflow 0x7f140001 +int style TextAppearance_Compat_Notification 0x7f150001 +int style TextAppearance_Compat_Notification_Info 0x7f150002 +int style TextAppearance_Compat_Notification_Line2 0x7f150003 +int style TextAppearance_Compat_Notification_Time 0x7f150004 +int style TextAppearance_Compat_Notification_Title 0x7f150005 +int style Widget_Compat_NotificationActionContainer 0x7f150006 +int style Widget_Compat_NotificationActionText 0x7f150007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..6ea5e5596920f736823aff14c8e49fd1f52906cc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/107/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/108.stamp new file mode 100644 index 0000000000000000000000000000000000000000..b9fe437df2ee143ad9fa22cf5d7c01c6a6382a44 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/108.stamp @@ -0,0 +1 @@ +0BC41994815A9546 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ad8bde4603e7207800b55c73ffe46f841417c7b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.viewmodel.savedstate" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..92d99be4a0ea7f9c6ce14ec848c72ff404154137 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..3df87f32bcf82c7a54245491ddd42132ecb05c4c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/proguard.txt @@ -0,0 +1,7 @@ +-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel { + <init>(androidx.lifecycle.SavedStateHandle); +} + +-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel { + <init>(android.app.Application,androidx.lifecycle.SavedStateHandle); +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/109.stamp new file mode 100644 index 0000000000000000000000000000000000000000..db025377b767109e8be0b0223b7fce4f94d40d3c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109.stamp @@ -0,0 +1 @@ +833E0FC36DC26A71 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..92e8b1e7ad6ba2f6aaa1c7be740e38d1b434d782 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.activity" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..2968aafa243c3a174bde87e86573aa3836a62868 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/R.txt @@ -0,0 +1,2 @@ +int id report_drawn 0x0 +int id view_tree_on_back_pressed_dispatcher_owner 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd738a57182b7bbb5737d9a81ad8b20e03873686 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt @@ -0,0 +1,86 @@ +# Baseline profiles for androidx.activity + +HSPLandroidx/activity/ComponentActivity$1;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$2;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$5;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$6;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;-><init>(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;->onContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/ComponentActivity;-><init>()V +HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V +HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/activity/OnBackPressedCallback;-><init>(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V +HSPLandroidx/activity/OnBackPressedCallback;->remove()V +HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable; +HSPLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/result/ActivityResultLauncher;-><init>()V +HSPLandroidx/activity/result/ActivityResultRegistry$3;-><init>(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;ILandroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;-><init>(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry;-><init>()V +HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I +HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)I +HSPLandroidx/activity/result/contract/ActivityResultContract;-><init>()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><init>()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><init>()V +Landroidx/activity/Cancellable; +Landroidx/activity/ComponentActivity$1; +Landroidx/activity/ComponentActivity$2; +Landroidx/activity/ComponentActivity$3; +Landroidx/activity/ComponentActivity$4; +Landroidx/activity/ComponentActivity$5; +Landroidx/activity/ComponentActivity$6; +Landroidx/activity/ComponentActivity$7; +Landroidx/activity/ComponentActivity$NonConfigurationInstances; +Landroidx/activity/ComponentActivity; +Landroidx/activity/OnBackPressedCallback; +Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher; +Landroidx/activity/OnBackPressedDispatcherOwner; +Landroidx/activity/contextaware/ContextAware; +Landroidx/activity/contextaware/ContextAwareHelper; +Landroidx/activity/contextaware/OnContextAvailableListener; +Landroidx/activity/result/ActivityResult; +Landroidx/activity/result/ActivityResultCallback; +Landroidx/activity/result/ActivityResultCaller; +Landroidx/activity/result/ActivityResultLauncher; +Landroidx/activity/result/ActivityResultRegistry$3; +Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract; +Landroidx/activity/result/ActivityResultRegistry; +Landroidx/activity/result/ActivityResultRegistryOwner; +Landroidx/activity/result/contract/ActivityResultContract; +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions; +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult; +PLandroidx/activity/ComponentActivity$1;->run()V +PLandroidx/activity/ComponentActivity;->access$001(Landroidx/activity/ComponentActivity;)V +PLandroidx/activity/ComponentActivity;->onBackPressed()V +PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z +PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V +PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher;->onBackPressed()V +PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V +PLandroidx/activity/result/ActivityResultRegistry$3;->unregister()V +PLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..4befd3ddda0cd9662739d0eb4203a911099b1735 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..b43da820e4546c37c94794c9b17bf2bae1c15cf9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..aeb54c16dacb41cf8639006638ba8d545b52012f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="report_drawn" type="id"/> + <id name="view_tree_on_back_pressed_dispatcher_owner"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/110.stamp new file mode 100644 index 0000000000000000000000000000000000000000..0c793cb5c054097d894a9274393913541b07898c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110.stamp @@ -0,0 +1 @@ +53E2709788A75ACB \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..c189f70b4188912118250f0b3fb8762b509753d6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.fragment" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..2aa6043607ae73d5ee6e24f8d9daa2d04118a488 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/R.txt @@ -0,0 +1,17 @@ +int anim fragment_fast_out_extra_slow_in 0x0 +int animator fragment_close_enter 0x0 +int animator fragment_close_exit 0x0 +int animator fragment_fade_enter 0x0 +int animator fragment_fade_exit 0x0 +int animator fragment_open_enter 0x0 +int animator fragment_open_exit 0x0 +int id fragment_container_view_tag 0x0 +int id special_effects_controller_view_tag 0x0 +int id visible_removing_fragment_view_tag 0x0 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..e26e00068bad77f026aa5fd0efd9919676839d21 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aa2ee21de56dc717c8bf17e69e198e9a5041f56 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt @@ -0,0 +1,477 @@ +# Baseline profiles for androidx.fragment + +HSPLandroidx/fragment/R$styleable;-><clinit>()V +HSPLandroidx/fragment/app/BackStackRecord;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/BackStackRecord;->bumpBackStackNesting(I)V +HSPLandroidx/fragment/app/BackStackRecord;->commit()I +HSPLandroidx/fragment/app/BackStackRecord;->commitInternal(Z)I +HSPLandroidx/fragment/app/BackStackRecord;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V +HSPLandroidx/fragment/app/BackStackRecord;->executeOps()V +HSPLandroidx/fragment/app/BackStackRecord;->expandOps(Ljava/util/ArrayList;Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/BackStackRecord;->generateOps(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z +HSPLandroidx/fragment/app/BackStackRecord;->runOnCommitRunnables()V +HSPLandroidx/fragment/app/BackStackRecord;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/DefaultSpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V +HSPLandroidx/fragment/app/Fragment$1;-><init>(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/Fragment$4;-><init>(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/Fragment$4;->onFindViewById(I)Landroid/view/View; +HSPLandroidx/fragment/app/Fragment$4;->onHasView()Z +HSPLandroidx/fragment/app/Fragment$5;-><init>(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/Fragment$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/fragment/app/Fragment$AnimationInfo;-><init>()V +HSPLandroidx/fragment/app/Fragment;-><clinit>()V +HSPLandroidx/fragment/app/Fragment;-><init>()V +HSPLandroidx/fragment/app/Fragment;->createFragmentContainer()Landroidx/fragment/app/FragmentContainer; +HSPLandroidx/fragment/app/Fragment;->ensureAnimationInfo()Landroidx/fragment/app/Fragment$AnimationInfo; +HSPLandroidx/fragment/app/Fragment;->equals(Ljava/lang/Object;)Z +HSPLandroidx/fragment/app/Fragment;->getActivity()Landroidx/fragment/app/FragmentActivity; +HSPLandroidx/fragment/app/Fragment;->getChildFragmentManager()Landroidx/fragment/app/FragmentManager; +HSPLandroidx/fragment/app/Fragment;->getContext()Landroid/content/Context; +HSPLandroidx/fragment/app/Fragment;->getFocusedView()Landroid/view/View; +HSPLandroidx/fragment/app/Fragment;->getId()I +HSPLandroidx/fragment/app/Fragment;->getLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater; +HSPLandroidx/fragment/app/Fragment;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/fragment/app/Fragment;->getMinimumMaxLifecycleState()I +HSPLandroidx/fragment/app/Fragment;->getParentFragment()Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/Fragment;->getParentFragmentManager()Landroidx/fragment/app/FragmentManager; +HSPLandroidx/fragment/app/Fragment;->getPostOnViewCreatedAlpha()F +HSPLandroidx/fragment/app/Fragment;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/fragment/app/Fragment;->getTag()Ljava/lang/String; +HSPLandroidx/fragment/app/Fragment;->getView()Landroid/view/View; +HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwner()Landroidx/lifecycle/LifecycleOwner; +HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwnerLiveData()Landroidx/lifecycle/LiveData; +HSPLandroidx/fragment/app/Fragment;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/fragment/app/Fragment;->initLifecycle()V +HSPLandroidx/fragment/app/Fragment;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/Fragment;->isAdded()Z +HSPLandroidx/fragment/app/Fragment;->isMenuVisible()Z +HSPLandroidx/fragment/app/Fragment;->noteStateNotSaved()V +HSPLandroidx/fragment/app/Fragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/app/Activity;)V +HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/content/Context;)V +HSPLandroidx/fragment/app/Fragment;->onAttachFragment(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/Fragment;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater; +HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/app/Activity;Landroid/util/AttributeSet;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->onPrimaryNavigationFragmentChanged(Z)V +HSPLandroidx/fragment/app/Fragment;->onResume()V +HSPLandroidx/fragment/app/Fragment;->onStart()V +HSPLandroidx/fragment/app/Fragment;->onViewCreated(Landroid/view/View;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->onViewStateRestored(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->performActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->performAttach()V +HSPLandroidx/fragment/app/Fragment;->performCreate(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->performCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z +HSPLandroidx/fragment/app/Fragment;->performCreateView(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->performGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater; +HSPLandroidx/fragment/app/Fragment;->performPrepareOptionsMenu(Landroid/view/Menu;)Z +HSPLandroidx/fragment/app/Fragment;->performPrimaryNavigationFragmentChanged()V +HSPLandroidx/fragment/app/Fragment;->performResume()V +HSPLandroidx/fragment/app/Fragment;->performStart()V +HSPLandroidx/fragment/app/Fragment;->performViewCreated()V +HSPLandroidx/fragment/app/Fragment;->requireContext()Landroid/content/Context; +HSPLandroidx/fragment/app/Fragment;->requireView()Landroid/view/View; +HSPLandroidx/fragment/app/Fragment;->restoreChildFragmentState(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->restoreViewState()V +HSPLandroidx/fragment/app/Fragment;->restoreViewState(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->setAnimations(IIII)V +HSPLandroidx/fragment/app/Fragment;->setArguments(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/Fragment;->setFocusedView(Landroid/view/View;)V +HSPLandroidx/fragment/app/Fragment;->setNextTransition(I)V +HSPLandroidx/fragment/app/Fragment;->setPopDirection(Z)V +HSPLandroidx/fragment/app/Fragment;->setPostOnViewCreatedAlpha(F)V +HSPLandroidx/fragment/app/Fragment;->setSharedElementNames(Ljava/util/ArrayList;Ljava/util/ArrayList;)V +HSPLandroidx/fragment/app/Fragment;->toString()Ljava/lang/String; +HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentActivity;)V +HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;->onContextAvailable(Landroid/content/Context;)V +HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/fragment/app/FragmentActivity;)V +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;-><init>(Landroidx/fragment/app/FragmentActivity;)V +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetLayoutInflater()Landroid/view/LayoutInflater; +HSPLandroidx/fragment/app/FragmentActivity;-><init>()V +HSPLandroidx/fragment/app/FragmentActivity;->dispatchFragmentsOnCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/fragment/app/FragmentActivity;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager; +HSPLandroidx/fragment/app/FragmentActivity;->init()V +HSPLandroidx/fragment/app/FragmentActivity;->lambda$init$1$androidx-fragment-app-FragmentActivity(Landroid/content/Context;)V +HSPLandroidx/fragment/app/FragmentActivity;->onAttachFragment(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/FragmentActivity;->onCreatePanelMenu(ILandroid/view/Menu;)Z +HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/fragment/app/FragmentActivity;->onPostResume()V +HSPLandroidx/fragment/app/FragmentActivity;->onPrepareOptionsPanel(Landroid/view/View;Landroid/view/Menu;)Z +HSPLandroidx/fragment/app/FragmentActivity;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z +HSPLandroidx/fragment/app/FragmentActivity;->onResume()V +HSPLandroidx/fragment/app/FragmentActivity;->onResumeFragments()V +HSPLandroidx/fragment/app/FragmentActivity;->onStart()V +HSPLandroidx/fragment/app/FragmentActivity;->onStateNotSaved()V +HSPLandroidx/fragment/app/FragmentContainer;-><init>()V +HSPLandroidx/fragment/app/FragmentContainer;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentContainerView;-><init>(Landroid/content/Context;)V +HSPLandroidx/fragment/app/FragmentContainerView;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V +HSPLandroidx/fragment/app/FragmentContainerView;->dispatchDraw(Landroid/graphics/Canvas;)V +HSPLandroidx/fragment/app/FragmentContainerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z +HSPLandroidx/fragment/app/FragmentController;-><init>(Landroidx/fragment/app/FragmentHostCallback;)V +HSPLandroidx/fragment/app/FragmentController;->attachHost(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentController;->createController(Landroidx/fragment/app/FragmentHostCallback;)Landroidx/fragment/app/FragmentController; +HSPLandroidx/fragment/app/FragmentController;->dispatchActivityCreated()V +HSPLandroidx/fragment/app/FragmentController;->dispatchCreate()V +HSPLandroidx/fragment/app/FragmentController;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z +HSPLandroidx/fragment/app/FragmentController;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z +HSPLandroidx/fragment/app/FragmentController;->dispatchResume()V +HSPLandroidx/fragment/app/FragmentController;->dispatchStart()V +HSPLandroidx/fragment/app/FragmentController;->execPendingActions()Z +HSPLandroidx/fragment/app/FragmentController;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager; +HSPLandroidx/fragment/app/FragmentController;->noteStateNotSaved()V +HSPLandroidx/fragment/app/FragmentController;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/fragment/app/FragmentFactory;-><clinit>()V +HSPLandroidx/fragment/app/FragmentFactory;-><init>()V +HSPLandroidx/fragment/app/FragmentFactory;->isFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Z +HSPLandroidx/fragment/app/FragmentFactory;->loadClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class; +HSPLandroidx/fragment/app/FragmentFactory;->loadFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class; +HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroid/app/Activity;Landroid/content/Context;Landroid/os/Handler;I)V +HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroidx/fragment/app/FragmentActivity;)V +HSPLandroidx/fragment/app/FragmentHostCallback;->getActivity()Landroid/app/Activity; +HSPLandroidx/fragment/app/FragmentHostCallback;->getContext()Landroid/content/Context; +HSPLandroidx/fragment/app/FragmentHostCallback;->getHandler()Landroid/os/Handler; +HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;-><init>(Landroidx/fragment/app/FragmentLayoutInflaterFactory;Landroidx/fragment/app/FragmentStateManager;)V +HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewAttachedToWindow(Landroid/view/View;)V +HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;-><init>(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentActivityCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentAttached(Landroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreAttached(Landroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentResumed(Landroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStarted(Landroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewCreated(Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;Z)V +HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V +HSPLandroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$1;-><init>(Landroidx/fragment/app/FragmentManager;Z)V +HSPLandroidx/fragment/app/FragmentManager$2;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$2;->instantiate(Ljava/lang/ClassLoader;Ljava/lang/String;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager$3;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$3;->createController(Landroid/view/ViewGroup;)Landroidx/fragment/app/SpecialEffectsController; +HSPLandroidx/fragment/app/FragmentManager$4;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$6;-><init>(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager$6;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager$7;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$8;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$9;-><init>(Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;-><init>()V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;-><init>()V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentActivityCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentResumed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStarted(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/FragmentManager;-><clinit>()V +HSPLandroidx/fragment/app/FragmentManager;-><init>()V +HSPLandroidx/fragment/app/FragmentManager;->addFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager; +HSPLandroidx/fragment/app/FragmentManager;->addFragmentOnAttachListener(Landroidx/fragment/app/FragmentOnAttachListener;)V +HSPLandroidx/fragment/app/FragmentManager;->attachController(Landroidx/fragment/app/FragmentHostCallback;Landroidx/fragment/app/FragmentContainer;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/FragmentManager;->checkForMenus()Z +HSPLandroidx/fragment/app/FragmentManager;->checkStateLoss()V +HSPLandroidx/fragment/app/FragmentManager;->cleanupExec()V +HSPLandroidx/fragment/app/FragmentManager;->collectAllSpecialEffectsController()Ljava/util/Set; +HSPLandroidx/fragment/app/FragmentManager;->collectChangedControllers(Ljava/util/ArrayList;II)Ljava/util/Set; +HSPLandroidx/fragment/app/FragmentManager;->createOrGetFragmentStateManager(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager; +HSPLandroidx/fragment/app/FragmentManager;->dispatchActivityCreated()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchAttach()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchCreate()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z +HSPLandroidx/fragment/app/FragmentManager;->dispatchOnAttachFragment(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager;->dispatchParentPrimaryNavigationFragmentChanged(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z +HSPLandroidx/fragment/app/FragmentManager;->dispatchPrimaryNavigationFragmentChanged()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchResume()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchStart()V +HSPLandroidx/fragment/app/FragmentManager;->dispatchStateChange(I)V +HSPLandroidx/fragment/app/FragmentManager;->dispatchViewCreated()V +HSPLandroidx/fragment/app/FragmentManager;->doPendingDeferredStart()V +HSPLandroidx/fragment/app/FragmentManager;->enqueueAction(Landroidx/fragment/app/FragmentManager$OpGenerator;Z)V +HSPLandroidx/fragment/app/FragmentManager;->ensureExecReady(Z)V +HSPLandroidx/fragment/app/FragmentManager;->execPendingActions(Z)Z +HSPLandroidx/fragment/app/FragmentManager;->executeOps(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V +HSPLandroidx/fragment/app/FragmentManager;->executeOpsTogether(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V +HSPLandroidx/fragment/app/FragmentManager;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager;->findFragmentById(I)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager;->generateOpsForPendingActions(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z +HSPLandroidx/fragment/app/FragmentManager;->getBackStackEntryCount()I +HSPLandroidx/fragment/app/FragmentManager;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel; +HSPLandroidx/fragment/app/FragmentManager;->getContainer()Landroidx/fragment/app/FragmentContainer; +HSPLandroidx/fragment/app/FragmentManager;->getFragmentContainer(Landroidx/fragment/app/Fragment;)Landroid/view/ViewGroup; +HSPLandroidx/fragment/app/FragmentManager;->getFragmentFactory()Landroidx/fragment/app/FragmentFactory; +HSPLandroidx/fragment/app/FragmentManager;->getHost()Landroidx/fragment/app/FragmentHostCallback; +HSPLandroidx/fragment/app/FragmentManager;->getLayoutInflaterFactory()Landroid/view/LayoutInflater$Factory2; +HSPLandroidx/fragment/app/FragmentManager;->getLifecycleCallbacksDispatcher()Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher; +HSPLandroidx/fragment/app/FragmentManager;->getParent()Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager;->getPrimaryNavigationFragment()Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager;->getSpecialEffectsControllerFactory()Landroidx/fragment/app/SpecialEffectsControllerFactory; +HSPLandroidx/fragment/app/FragmentManager;->getStrictModePolicy()Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy; +HSPLandroidx/fragment/app/FragmentManager;->getViewFragment(Landroid/view/View;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentManager;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/fragment/app/FragmentManager;->isLoggingEnabled(I)Z +HSPLandroidx/fragment/app/FragmentManager;->isMenuAvailable(Landroidx/fragment/app/Fragment;)Z +HSPLandroidx/fragment/app/FragmentManager;->isParentMenuVisible(Landroidx/fragment/app/Fragment;)Z +HSPLandroidx/fragment/app/FragmentManager;->isPrimaryNavigation(Landroidx/fragment/app/Fragment;)Z +HSPLandroidx/fragment/app/FragmentManager;->isStateAtLeast(I)Z +HSPLandroidx/fragment/app/FragmentManager;->isStateSaved()Z +HSPLandroidx/fragment/app/FragmentManager;->moveToState(IZ)V +HSPLandroidx/fragment/app/FragmentManager;->noteStateNotSaved()V +HSPLandroidx/fragment/app/FragmentManager;->performPendingDeferredStart(Landroidx/fragment/app/FragmentStateManager;)V +HSPLandroidx/fragment/app/FragmentManager;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V +HSPLandroidx/fragment/app/FragmentManager;->removeRedundantOperationsAndExecute(Ljava/util/ArrayList;Ljava/util/ArrayList;)V +HSPLandroidx/fragment/app/FragmentManager;->scheduleCommit()V +HSPLandroidx/fragment/app/FragmentManager;->setExitAnimationOrder(Landroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentManager;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentManager;->startPendingDeferredFragments()V +HSPLandroidx/fragment/app/FragmentManager;->updateOnBackPressedCallbackEnabled()V +HSPLandroidx/fragment/app/FragmentManagerImpl;-><init>()V +HSPLandroidx/fragment/app/FragmentManagerViewModel$1;-><init>()V +HSPLandroidx/fragment/app/FragmentManagerViewModel$1;->create(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/fragment/app/FragmentManagerViewModel;-><clinit>()V +HSPLandroidx/fragment/app/FragmentManagerViewModel;-><init>(Z)V +HSPLandroidx/fragment/app/FragmentManagerViewModel;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel; +HSPLandroidx/fragment/app/FragmentManagerViewModel;->getInstance(Landroidx/lifecycle/ViewModelStore;)Landroidx/fragment/app/FragmentManagerViewModel; +HSPLandroidx/fragment/app/FragmentManagerViewModel;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/fragment/app/FragmentManagerViewModel;->setIsStateSaved(Z)V +HSPLandroidx/fragment/app/FragmentStateManager$1;-><init>(Landroidx/fragment/app/FragmentStateManager;Landroid/view/View;)V +HSPLandroidx/fragment/app/FragmentStateManager$1;->onViewAttachedToWindow(Landroid/view/View;)V +HSPLandroidx/fragment/app/FragmentStateManager$2;-><clinit>()V +HSPLandroidx/fragment/app/FragmentStateManager;-><init>(Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;Landroidx/fragment/app/FragmentStore;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentStateManager;->activityCreated()V +HSPLandroidx/fragment/app/FragmentStateManager;->addViewToContainer()V +HSPLandroidx/fragment/app/FragmentStateManager;->attach()V +HSPLandroidx/fragment/app/FragmentStateManager;->computeExpectedState()I +HSPLandroidx/fragment/app/FragmentStateManager;->create()V +HSPLandroidx/fragment/app/FragmentStateManager;->createView()V +HSPLandroidx/fragment/app/FragmentStateManager;->ensureInflatedView()V +HSPLandroidx/fragment/app/FragmentStateManager;->getFragment()Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentStateManager;->moveToExpectedState()V +HSPLandroidx/fragment/app/FragmentStateManager;->restoreState(Ljava/lang/ClassLoader;)V +HSPLandroidx/fragment/app/FragmentStateManager;->resume()V +HSPLandroidx/fragment/app/FragmentStateManager;->setFragmentManagerState(I)V +HSPLandroidx/fragment/app/FragmentStateManager;->start()V +HSPLandroidx/fragment/app/FragmentStore;-><init>()V +HSPLandroidx/fragment/app/FragmentStore;->addFragment(Landroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentStore;->burpActive()V +HSPLandroidx/fragment/app/FragmentStore;->containsActiveFragment(Ljava/lang/String;)Z +HSPLandroidx/fragment/app/FragmentStore;->dispatchStateChange(I)V +HSPLandroidx/fragment/app/FragmentStore;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentStore;->findFragmentById(I)Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/FragmentStore;->findFragmentIndexInContainer(Landroidx/fragment/app/Fragment;)I +HSPLandroidx/fragment/app/FragmentStore;->getActiveFragmentStateManagers()Ljava/util/List; +HSPLandroidx/fragment/app/FragmentStore;->getActiveFragments()Ljava/util/List; +HSPLandroidx/fragment/app/FragmentStore;->getFragmentStateManager(Ljava/lang/String;)Landroidx/fragment/app/FragmentStateManager; +HSPLandroidx/fragment/app/FragmentStore;->getFragments()Ljava/util/List; +HSPLandroidx/fragment/app/FragmentStore;->makeActive(Landroidx/fragment/app/FragmentStateManager;)V +HSPLandroidx/fragment/app/FragmentStore;->moveToExpectedState()V +HSPLandroidx/fragment/app/FragmentStore;->setNonConfig(Landroidx/fragment/app/FragmentManagerViewModel;)V +HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;)V +HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;Z)V +HSPLandroidx/fragment/app/FragmentTransaction;-><init>(Landroidx/fragment/app/FragmentFactory;Ljava/lang/ClassLoader;)V +HSPLandroidx/fragment/app/FragmentTransaction;->addOp(Landroidx/fragment/app/FragmentTransaction$Op;)V +HSPLandroidx/fragment/app/FragmentTransaction;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V +HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/FragmentTransaction;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/FragmentTransaction;->setReorderingAllowed(Z)Landroidx/fragment/app/FragmentTransaction; +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;-><init>(Landroidx/fragment/app/Fragment;Landroidx/lifecycle/ViewModelStore;)V +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->initialize()V +HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->performRestore(Landroid/os/Bundle;)V +HSPLandroidx/fragment/app/FragmentViewModelLazyKt;->createViewModelLazy(Landroidx/fragment/app/Fragment;Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)Lkotlin/Lazy; +HSPLandroidx/fragment/app/SpecialEffectsController$1;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V +HSPLandroidx/fragment/app/SpecialEffectsController$1;->run()V +HSPLandroidx/fragment/app/SpecialEffectsController$2;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V +HSPLandroidx/fragment/app/SpecialEffectsController$2;->run()V +HSPLandroidx/fragment/app/SpecialEffectsController$3;-><clinit>()V +HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;Landroidx/core/os/CancellationSignal;)V +HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->complete()V +HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->onStart()V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$1;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation;)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><clinit>()V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><init>(Ljava/lang/String;I)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><clinit>()V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><init>(Ljava/lang/String;I)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->applyState(Landroid/view/View;)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->from(I)Landroidx/fragment/app/SpecialEffectsController$Operation$State; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$State; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/Fragment;Landroidx/core/os/CancellationSignal;)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->addCompletionListener(Ljava/lang/Runnable;)V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->cancel()V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->complete()V +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFinalState()Landroidx/fragment/app/SpecialEffectsController$Operation$State; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFragment()Landroidx/fragment/app/Fragment; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getLifecycleImpact()Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact; +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->isCanceled()Z +HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->mergeWith(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;)V +HSPLandroidx/fragment/app/SpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V +HSPLandroidx/fragment/app/SpecialEffectsController;->enqueue(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;)V +HSPLandroidx/fragment/app/SpecialEffectsController;->enqueueAdd(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/FragmentStateManager;)V +HSPLandroidx/fragment/app/SpecialEffectsController;->executePendingOperations()V +HSPLandroidx/fragment/app/SpecialEffectsController;->findPendingOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation; +HSPLandroidx/fragment/app/SpecialEffectsController;->findRunningOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation; +HSPLandroidx/fragment/app/SpecialEffectsController;->forceCompleteAllOperations()V +HSPLandroidx/fragment/app/SpecialEffectsController;->getAwaitingCompletionLifecycleImpact(Landroidx/fragment/app/FragmentStateManager;)Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact; +HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/FragmentManager;)Landroidx/fragment/app/SpecialEffectsController; +HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/SpecialEffectsControllerFactory;)Landroidx/fragment/app/SpecialEffectsController; +HSPLandroidx/fragment/app/SpecialEffectsController;->markPostponedState()V +HSPLandroidx/fragment/app/SpecialEffectsController;->updateFinalState()V +HSPLandroidx/fragment/app/SpecialEffectsController;->updateOperationDirection(Z)V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->$values()[Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag; +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><clinit>()V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><init>(Ljava/lang/String;I)V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>()V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><clinit>()V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><init>(Ljava/util/Set;Landroidx/fragment/app/strictmode/FragmentStrictMode$OnViolationListener;Ljava/util/Map;)V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->getFlags$fragment_release()Ljava/util/Set; +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><clinit>()V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><init>()V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->getNearestPolicy(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy; +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->logIfDebuggingEnabled(Landroidx/fragment/app/strictmode/Violation;)V +HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->onFragmentTagUsage(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V +HSPLandroidx/fragment/app/strictmode/FragmentTagUsageViolation;-><init>(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V +HSPLandroidx/fragment/app/strictmode/Violation;-><init>(Landroidx/fragment/app/Fragment;Ljava/lang/String;)V +Landroidx/fragment/R$id; +Landroidx/fragment/R$styleable; +Landroidx/fragment/app/BackStackRecord; +Landroidx/fragment/app/DefaultSpecialEffectsController; +Landroidx/fragment/app/Fragment$1; +Landroidx/fragment/app/Fragment$4; +Landroidx/fragment/app/Fragment$5; +Landroidx/fragment/app/Fragment$AnimationInfo; +Landroidx/fragment/app/Fragment; +Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0; +Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1; +Landroidx/fragment/app/FragmentActivity$HostCallbacks; +Landroidx/fragment/app/FragmentActivity; +Landroidx/fragment/app/FragmentContainer; +Landroidx/fragment/app/FragmentContainerView; +Landroidx/fragment/app/FragmentController; +Landroidx/fragment/app/FragmentFactory; +Landroidx/fragment/app/FragmentHostCallback; +Landroidx/fragment/app/FragmentLayoutInflaterFactory$1; +Landroidx/fragment/app/FragmentLayoutInflaterFactory; +Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder; +Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher; +Landroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0; +Landroidx/fragment/app/FragmentManager$1; +Landroidx/fragment/app/FragmentManager$2; +Landroidx/fragment/app/FragmentManager$3; +Landroidx/fragment/app/FragmentManager$4; +Landroidx/fragment/app/FragmentManager$6; +Landroidx/fragment/app/FragmentManager$7; +Landroidx/fragment/app/FragmentManager$8; +Landroidx/fragment/app/FragmentManager$9; +Landroidx/fragment/app/FragmentManager$BackStackEntry; +Landroidx/fragment/app/FragmentManager$FragmentIntentSenderContract; +Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks; +Landroidx/fragment/app/FragmentManager$OpGenerator; +Landroidx/fragment/app/FragmentManager; +Landroidx/fragment/app/FragmentManagerImpl; +Landroidx/fragment/app/FragmentManagerViewModel$1; +Landroidx/fragment/app/FragmentManagerViewModel; +Landroidx/fragment/app/FragmentOnAttachListener; +Landroidx/fragment/app/FragmentResultOwner; +Landroidx/fragment/app/FragmentStateManager$1; +Landroidx/fragment/app/FragmentStateManager$2; +Landroidx/fragment/app/FragmentStateManager; +Landroidx/fragment/app/FragmentStore; +Landroidx/fragment/app/FragmentTransaction$Op; +Landroidx/fragment/app/FragmentTransaction; +Landroidx/fragment/app/FragmentViewLifecycleOwner; +Landroidx/fragment/app/FragmentViewModelLazyKt; +Landroidx/fragment/app/SpecialEffectsController$1; +Landroidx/fragment/app/SpecialEffectsController$2; +Landroidx/fragment/app/SpecialEffectsController$3; +Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation; +Landroidx/fragment/app/SpecialEffectsController$Operation$1; +Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact; +Landroidx/fragment/app/SpecialEffectsController$Operation$State; +Landroidx/fragment/app/SpecialEffectsController$Operation; +Landroidx/fragment/app/SpecialEffectsController; +Landroidx/fragment/app/SpecialEffectsControllerFactory; +Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag; +Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion; +Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy; +Landroidx/fragment/app/strictmode/FragmentStrictMode; +Landroidx/fragment/app/strictmode/FragmentTagUsageViolation; +Landroidx/fragment/app/strictmode/Violation; +PLandroidx/fragment/app/Fragment$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V +PLandroidx/fragment/app/Fragment;->getHost()Ljava/lang/Object; +PLandroidx/fragment/app/Fragment;->initState()V +PLandroidx/fragment/app/Fragment;->onDestroy()V +PLandroidx/fragment/app/Fragment;->onDestroyView()V +PLandroidx/fragment/app/Fragment;->onDetach()V +PLandroidx/fragment/app/Fragment;->onPause()V +PLandroidx/fragment/app/Fragment;->onStop()V +PLandroidx/fragment/app/Fragment;->performDestroy()V +PLandroidx/fragment/app/Fragment;->performDestroyView()V +PLandroidx/fragment/app/Fragment;->performDetach()V +PLandroidx/fragment/app/Fragment;->performPause()V +PLandroidx/fragment/app/Fragment;->performStop()V +PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Landroidx/fragment/app/FragmentActivity; +PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Ljava/lang/Object; +PLandroidx/fragment/app/FragmentActivity;->markFragmentsCreated()V +PLandroidx/fragment/app/FragmentActivity;->markState(Landroidx/fragment/app/FragmentManager;Landroidx/lifecycle/Lifecycle$State;)Z +PLandroidx/fragment/app/FragmentActivity;->onDestroy()V +PLandroidx/fragment/app/FragmentActivity;->onPause()V +PLandroidx/fragment/app/FragmentActivity;->onStop()V +PLandroidx/fragment/app/FragmentContainerView;->addDisappearingFragmentView(Landroid/view/View;)V +PLandroidx/fragment/app/FragmentContainerView;->removeView(Landroid/view/View;)V +PLandroidx/fragment/app/FragmentController;->dispatchDestroy()V +PLandroidx/fragment/app/FragmentController;->dispatchPause()V +PLandroidx/fragment/app/FragmentController;->dispatchStop()V +PLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewDetachedFromWindow(Landroid/view/View;)V +PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDestroyed(Landroidx/fragment/app/Fragment;Z)V +PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDetached(Landroidx/fragment/app/Fragment;Z)V +PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPaused(Landroidx/fragment/app/Fragment;Z)V +PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStopped(Landroidx/fragment/app/Fragment;Z)V +PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewDestroyed(Landroidx/fragment/app/Fragment;Z)V +PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDetached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPaused(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStopped(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManager;->clearBackStackStateViewModels()V +PLandroidx/fragment/app/FragmentManager;->dispatchDestroy()V +PLandroidx/fragment/app/FragmentManager;->dispatchDestroyView()V +PLandroidx/fragment/app/FragmentManager;->dispatchPause()V +PLandroidx/fragment/app/FragmentManager;->dispatchStop()V +PLandroidx/fragment/app/FragmentManager;->endAnimatingAwayFragments()V +PLandroidx/fragment/app/FragmentManager;->getFragments()Ljava/util/List; +PLandroidx/fragment/app/FragmentManager;->isDestroyed()Z +PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigState(Landroidx/fragment/app/Fragment;)V +PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigStateInternal(Ljava/lang/String;)V +PLandroidx/fragment/app/FragmentManagerViewModel;->isCleared()Z +PLandroidx/fragment/app/FragmentManagerViewModel;->onCleared()V +PLandroidx/fragment/app/FragmentManagerViewModel;->shouldDestroy(Landroidx/fragment/app/Fragment;)Z +PLandroidx/fragment/app/FragmentStateManager;->destroy()V +PLandroidx/fragment/app/FragmentStateManager;->destroyFragmentView()V +PLandroidx/fragment/app/FragmentStateManager;->detach()V +PLandroidx/fragment/app/FragmentStateManager;->pause()V +PLandroidx/fragment/app/FragmentStateManager;->saveViewState()V +PLandroidx/fragment/app/FragmentStateManager;->stop()V +PLandroidx/fragment/app/FragmentStore;->getNonConfig()Landroidx/fragment/app/FragmentManagerViewModel; +PLandroidx/fragment/app/FragmentStore;->makeInactive(Landroidx/fragment/app/FragmentStateManager;)V +PLandroidx/fragment/app/FragmentViewLifecycleOwner;->performSave(Landroid/os/Bundle;)V +PLandroidx/fragment/app/FragmentViewLifecycleOwner;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +PLandroidx/fragment/app/SpecialEffectsController;->enqueueRemove(Landroidx/fragment/app/FragmentStateManager;)V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..290807bf61dc0be4aa1ef5b42a780284caaa56b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..02c0a3188e3bbee10f7e72fbf3ba31055b992b03 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/proguard.txt @@ -0,0 +1,29 @@ +# Copyright (C) 2020 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# The default FragmentFactory creates Fragment instances using reflection +-if public class ** extends androidx.fragment.app.Fragment +-keepclasseswithmembers,allowobfuscation public class <1> { + public <init>(); +} + +# FragmentTransition will reflectively lookup: +# androidx.transition.FragmentTransitionSupport +# We should ensure that we keep the constructor if the code using this is alive +-if class androidx.fragment.app.FragmentTransition { + private static androidx.fragment.app.FragmentTransitionImpl resolveSupportImpl(); +} +-keep class androidx.transition.FragmentTransitionSupport { + public <init>(); +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..337d2deb420dd1d5fda313c404bd92ab144ab656 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..97b9de9cdc20ecef9322c665245f3754b88f7cd6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<!--Taken from https://googleplex-android.googlesource.com/platform/frameworks/base/+/HEAD/core/res/res/interpolator/fast_out_extra_slow_in.xml--> +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..c3baa5df6cad4d72f02b1a470d9247aab465ca2a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<!--Taken from https://googleplex-android.googlesource.com/platform/frameworks/base/+/HEAD/core/res/res/interpolator/decelerate_quad.xml--> +<decelerateInterpolator/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..1408ac6ff2f1a7986f563bc918a800c5086b6fb8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" android:valueTo="0.0" + android:duration="66" /> + + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" android:valueTo="1.0" + android:duration="50"/> + </set> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleX" + android:valueFrom="1.1" android:valueTo="1.0" + android:duration="300"/> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleY" + android:valueFrom="1.1" android:valueTo="1.0" + android:duration="300"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c50d20491aaae70a36b4f07268785d8176298aa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" android:valueTo="1.0" + android:duration="66" /> + + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" android:valueTo="0.0" + android:duration="50"/> + </set> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleX" + android:valueFrom="1.0" android:valueTo="0.9" + android:duration="300"/> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleY" + android:valueFrom="1.0" android:valueTo="0.9" + android:duration="300"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..b948a228268e5eac540c40f7ff3c7b0bb5f17d40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" android:valueTo="1.0" + android:duration="150" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..841049ddc58bb96fd424fb55d0fe92ad809aac9c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" android:valueTo="0.0" + android:duration="150" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..01bd5c07edbecf36916e39c98d629b203a05cbec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" android:valueTo="0.0" + android:duration="50" /> + + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" android:valueTo="1.0" + android:duration="50"/> + </set> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleX" + android:valueFrom="0.85" android:valueTo="1.0" + android:duration="300"/> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleY" + android:valueFrom="0.85" android:valueTo="1.0" + android:duration="300"/> + +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc27998f4da46b464b4ed809d4a26888358a0316 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" android:valueTo="1.0" + android:duration="50" /> + + <objectAnimator + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" android:valueTo="0.0" + android:duration="50"/> + </set> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleX" + android:valueFrom="1.0" android:valueTo="1.15" + android:duration="300"/> + + <objectAnimator + android:interpolator="@anim/fragment_fast_out_extra_slow_in" + android:propertyName="scaleY" + android:valueFrom="1.0" android:valueTo="1.15" + android:duration="300"/> +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..cc72ed59a1f1bb5cb7625f9648f32e09588d5d22 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="fragment_container_view_tag" type="id"/> + <item name="special_effects_controller_view_tag" type="id"/> + <item name="visible_removing_fragment_view_tag" type="id"/> + <declare-styleable name="Fragment"> + <attr name="android:name"/> + <attr name="android:id"/> + <attr name="android:tag"/> + </declare-styleable> + <declare-styleable name="FragmentContainerView"> + <attr name="android:name"/> + <attr name="android:tag"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/111.stamp new file mode 100644 index 0000000000000000000000000000000000000000..beabdcc96892251b68d1fb2d0953338e6c16beae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/111.stamp @@ -0,0 +1 @@ +ADC14C1279024346 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..31925b1b71b286065a76907ebd7f1ac70e5c2854 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.viewpager2" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="28" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..842e7faa921c1c3e960156e158b90750aae8b2ac --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/R.txt @@ -0,0 +1,203 @@ +int attr alpha 0x0 +int attr fastScrollEnabled 0x0 +int attr fastScrollHorizontalThumbDrawable 0x0 +int attr fastScrollHorizontalTrackDrawable 0x0 +int attr fastScrollVerticalThumbDrawable 0x0 +int attr fastScrollVerticalTrackDrawable 0x0 +int attr font 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr layoutManager 0x0 +int attr recyclerViewStyle 0x0 +int attr reverseLayout 0x0 +int attr spanCount 0x0 +int attr stackFromEnd 0x0 +int attr ttcIndex 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_light 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen fastscroll_default_thickness 0x0 +int dimen fastscroll_margin 0x0 +int dimen fastscroll_minimum_range 0x0 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x0 +int dimen item_touch_helper_swipe_escape_max_velocity 0x0 +int dimen item_touch_helper_swipe_escape_velocity 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_container 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_text 0x0 +int id actions 0x0 +int id async 0x0 +int id blocking 0x0 +int id chronometer 0x0 +int id dialog_button 0x0 +int id forever 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 0x0 +int id item_touch_helper_previous_elevation 0x0 +int id line1 0x0 +int id line3 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id text 0x0 +int id text2 0x0 +int id time 0x0 +int id title 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int string status_bar_notification_info_overflow 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..2b4dbffac5d253ec46115f745f9d664fc45bf93e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..2e079822d1509c4d8a0dc0957b03144a7f04b2e8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..b0c952350e7b87cba9ff90eba5496f2f08c44bf5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..5170984c4dfd9f3db70e4e762121b68f92432834 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <declare-styleable name="ViewPager2"> + <attr name="android:orientation"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/112.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/112.stamp new file mode 100644 index 0000000000000000000000000000000000000000..004ef73059b3f86da0cf369ae5a8458b04253143 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/112.stamp @@ -0,0 +1 @@ +83E628A401FFEFB3 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..475fed433b370cb529c01db2451bc5e7b0328e19 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.vectordrawable" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="28" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf57bb9bf8112659370cb4e6eb81b833804b5b1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/R.txt @@ -0,0 +1,171 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f070001 +int dimen compat_button_inset_vertical_material 0x7f070002 +int dimen compat_button_padding_horizontal_material 0x7f070003 +int dimen compat_button_padding_vertical_material 0x7f070004 +int dimen compat_control_corner_material 0x7f070005 +int dimen compat_notification_large_icon_max_height 0x7f070006 +int dimen compat_notification_large_icon_max_width 0x7f070007 +int dimen notification_action_icon_size 0x7f070008 +int dimen notification_action_text_size 0x7f070009 +int dimen notification_big_circle_margin 0x7f07000a +int dimen notification_content_margin_start 0x7f07000b +int dimen notification_large_icon_height 0x7f07000c +int dimen notification_large_icon_width 0x7f07000d +int dimen notification_main_column_padding_top 0x7f07000e +int dimen notification_media_narrow_margin 0x7f07000f +int dimen notification_right_icon_size 0x7f070010 +int dimen notification_right_side_padding_top 0x7f070011 +int dimen notification_small_icon_background_padding 0x7f070012 +int dimen notification_small_icon_size_as_large 0x7f070013 +int dimen notification_subtext_size 0x7f070014 +int dimen notification_top_pad 0x7f070015 +int dimen notification_top_pad_large_text 0x7f070016 +int drawable notification_action_background 0x7f080001 +int drawable notification_bg 0x7f080002 +int drawable notification_bg_low 0x7f080003 +int drawable notification_bg_low_normal 0x7f080004 +int drawable notification_bg_low_pressed 0x7f080005 +int drawable notification_bg_normal 0x7f080006 +int drawable notification_bg_normal_pressed 0x7f080007 +int drawable notification_icon_background 0x7f080008 +int drawable notification_template_icon_bg 0x7f080009 +int drawable notification_template_icon_low_bg 0x7f08000a +int drawable notification_tile_bg 0x7f08000b +int drawable notify_panel_notification_icon_bg 0x7f08000c +int id accessibility_action_clickable_span 0x7f0b0001 +int id accessibility_custom_action_0 0x7f0b0002 +int id accessibility_custom_action_1 0x7f0b0003 +int id accessibility_custom_action_10 0x7f0b0004 +int id accessibility_custom_action_11 0x7f0b0005 +int id accessibility_custom_action_12 0x7f0b0006 +int id accessibility_custom_action_13 0x7f0b0007 +int id accessibility_custom_action_14 0x7f0b0008 +int id accessibility_custom_action_15 0x7f0b0009 +int id accessibility_custom_action_16 0x7f0b000a +int id accessibility_custom_action_17 0x7f0b000b +int id accessibility_custom_action_18 0x7f0b000c +int id accessibility_custom_action_19 0x7f0b000d +int id accessibility_custom_action_2 0x7f0b000e +int id accessibility_custom_action_20 0x7f0b000f +int id accessibility_custom_action_21 0x7f0b0010 +int id accessibility_custom_action_22 0x7f0b0011 +int id accessibility_custom_action_23 0x7f0b0012 +int id accessibility_custom_action_24 0x7f0b0013 +int id accessibility_custom_action_25 0x7f0b0014 +int id accessibility_custom_action_26 0x7f0b0015 +int id accessibility_custom_action_27 0x7f0b0016 +int id accessibility_custom_action_28 0x7f0b0017 +int id accessibility_custom_action_29 0x7f0b0018 +int id accessibility_custom_action_3 0x7f0b0019 +int id accessibility_custom_action_30 0x7f0b001a +int id accessibility_custom_action_31 0x7f0b001b +int id accessibility_custom_action_4 0x7f0b001c +int id accessibility_custom_action_5 0x7f0b001d +int id accessibility_custom_action_6 0x7f0b001e +int id accessibility_custom_action_7 0x7f0b001f +int id accessibility_custom_action_8 0x7f0b0020 +int id accessibility_custom_action_9 0x7f0b0021 +int id action_container 0x7f0b0022 +int id action_divider 0x7f0b0023 +int id action_image 0x7f0b0024 +int id action_text 0x7f0b0025 +int id actions 0x7f0b0026 +int id async 0x7f0b0027 +int id blocking 0x7f0b0028 +int id chronometer 0x7f0b0029 +int id dialog_button 0x7f0b002a +int id forever 0x7f0b002b +int id icon 0x7f0b002c +int id icon_group 0x7f0b002d +int id info 0x7f0b002e +int id italic 0x7f0b002f +int id line1 0x7f0b0030 +int id line3 0x7f0b0031 +int id normal 0x7f0b0032 +int id notification_background 0x7f0b0033 +int id notification_main_column 0x7f0b0034 +int id notification_main_column_container 0x7f0b0035 +int id right_icon 0x7f0b0036 +int id right_side 0x7f0b0037 +int id tag_accessibility_actions 0x7f0b0038 +int id tag_accessibility_clickable_spans 0x7f0b0039 +int id tag_accessibility_heading 0x7f0b003a +int id tag_accessibility_pane_title 0x7f0b003b +int id tag_screen_reader_focusable 0x7f0b003c +int id tag_transition_group 0x7f0b003d +int id tag_unhandled_key_event_manager 0x7f0b003e +int id tag_unhandled_key_listeners 0x7f0b003f +int id text 0x7f0b0040 +int id text2 0x7f0b0041 +int id time 0x7f0b0042 +int id title 0x7f0b0043 +int integer status_bar_notification_info_maxnum 0x7f0c0001 +int layout custom_dialog 0x7f0e0001 +int layout notification_action 0x7f0e0002 +int layout notification_action_tombstone 0x7f0e0003 +int layout notification_template_custom_big 0x7f0e0004 +int layout notification_template_icon_group 0x7f0e0005 +int layout notification_template_part_chronometer 0x7f0e0006 +int layout notification_template_part_time 0x7f0e0007 +int string status_bar_notification_info_overflow 0x7f140001 +int style TextAppearance_Compat_Notification 0x7f150001 +int style TextAppearance_Compat_Notification_Info 0x7f150002 +int style TextAppearance_Compat_Notification_Line2 0x7f150003 +int style TextAppearance_Compat_Notification_Time 0x7f150004 +int style TextAppearance_Compat_Notification_Title 0x7f150005 +int style Widget_Compat_NotificationActionContainer 0x7f150006 +int style Widget_Compat_NotificationActionText 0x7f150007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..ba190148b50407c9a6349755bb128c7fd2708b75 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/112/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/113.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/113.stamp new file mode 100644 index 0000000000000000000000000000000000000000..8f16a5e5aa67e08fa341600a4fa9a8f89d758247 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/113.stamp @@ -0,0 +1 @@ +6CEF3AA865FDE355 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..a35e0370f2e8d4e850d77e6be326c41c80cf1ead --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.vectordrawable.animated" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="28" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf57bb9bf8112659370cb4e6eb81b833804b5b1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/R.txt @@ -0,0 +1,171 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f070001 +int dimen compat_button_inset_vertical_material 0x7f070002 +int dimen compat_button_padding_horizontal_material 0x7f070003 +int dimen compat_button_padding_vertical_material 0x7f070004 +int dimen compat_control_corner_material 0x7f070005 +int dimen compat_notification_large_icon_max_height 0x7f070006 +int dimen compat_notification_large_icon_max_width 0x7f070007 +int dimen notification_action_icon_size 0x7f070008 +int dimen notification_action_text_size 0x7f070009 +int dimen notification_big_circle_margin 0x7f07000a +int dimen notification_content_margin_start 0x7f07000b +int dimen notification_large_icon_height 0x7f07000c +int dimen notification_large_icon_width 0x7f07000d +int dimen notification_main_column_padding_top 0x7f07000e +int dimen notification_media_narrow_margin 0x7f07000f +int dimen notification_right_icon_size 0x7f070010 +int dimen notification_right_side_padding_top 0x7f070011 +int dimen notification_small_icon_background_padding 0x7f070012 +int dimen notification_small_icon_size_as_large 0x7f070013 +int dimen notification_subtext_size 0x7f070014 +int dimen notification_top_pad 0x7f070015 +int dimen notification_top_pad_large_text 0x7f070016 +int drawable notification_action_background 0x7f080001 +int drawable notification_bg 0x7f080002 +int drawable notification_bg_low 0x7f080003 +int drawable notification_bg_low_normal 0x7f080004 +int drawable notification_bg_low_pressed 0x7f080005 +int drawable notification_bg_normal 0x7f080006 +int drawable notification_bg_normal_pressed 0x7f080007 +int drawable notification_icon_background 0x7f080008 +int drawable notification_template_icon_bg 0x7f080009 +int drawable notification_template_icon_low_bg 0x7f08000a +int drawable notification_tile_bg 0x7f08000b +int drawable notify_panel_notification_icon_bg 0x7f08000c +int id accessibility_action_clickable_span 0x7f0b0001 +int id accessibility_custom_action_0 0x7f0b0002 +int id accessibility_custom_action_1 0x7f0b0003 +int id accessibility_custom_action_10 0x7f0b0004 +int id accessibility_custom_action_11 0x7f0b0005 +int id accessibility_custom_action_12 0x7f0b0006 +int id accessibility_custom_action_13 0x7f0b0007 +int id accessibility_custom_action_14 0x7f0b0008 +int id accessibility_custom_action_15 0x7f0b0009 +int id accessibility_custom_action_16 0x7f0b000a +int id accessibility_custom_action_17 0x7f0b000b +int id accessibility_custom_action_18 0x7f0b000c +int id accessibility_custom_action_19 0x7f0b000d +int id accessibility_custom_action_2 0x7f0b000e +int id accessibility_custom_action_20 0x7f0b000f +int id accessibility_custom_action_21 0x7f0b0010 +int id accessibility_custom_action_22 0x7f0b0011 +int id accessibility_custom_action_23 0x7f0b0012 +int id accessibility_custom_action_24 0x7f0b0013 +int id accessibility_custom_action_25 0x7f0b0014 +int id accessibility_custom_action_26 0x7f0b0015 +int id accessibility_custom_action_27 0x7f0b0016 +int id accessibility_custom_action_28 0x7f0b0017 +int id accessibility_custom_action_29 0x7f0b0018 +int id accessibility_custom_action_3 0x7f0b0019 +int id accessibility_custom_action_30 0x7f0b001a +int id accessibility_custom_action_31 0x7f0b001b +int id accessibility_custom_action_4 0x7f0b001c +int id accessibility_custom_action_5 0x7f0b001d +int id accessibility_custom_action_6 0x7f0b001e +int id accessibility_custom_action_7 0x7f0b001f +int id accessibility_custom_action_8 0x7f0b0020 +int id accessibility_custom_action_9 0x7f0b0021 +int id action_container 0x7f0b0022 +int id action_divider 0x7f0b0023 +int id action_image 0x7f0b0024 +int id action_text 0x7f0b0025 +int id actions 0x7f0b0026 +int id async 0x7f0b0027 +int id blocking 0x7f0b0028 +int id chronometer 0x7f0b0029 +int id dialog_button 0x7f0b002a +int id forever 0x7f0b002b +int id icon 0x7f0b002c +int id icon_group 0x7f0b002d +int id info 0x7f0b002e +int id italic 0x7f0b002f +int id line1 0x7f0b0030 +int id line3 0x7f0b0031 +int id normal 0x7f0b0032 +int id notification_background 0x7f0b0033 +int id notification_main_column 0x7f0b0034 +int id notification_main_column_container 0x7f0b0035 +int id right_icon 0x7f0b0036 +int id right_side 0x7f0b0037 +int id tag_accessibility_actions 0x7f0b0038 +int id tag_accessibility_clickable_spans 0x7f0b0039 +int id tag_accessibility_heading 0x7f0b003a +int id tag_accessibility_pane_title 0x7f0b003b +int id tag_screen_reader_focusable 0x7f0b003c +int id tag_transition_group 0x7f0b003d +int id tag_unhandled_key_event_manager 0x7f0b003e +int id tag_unhandled_key_listeners 0x7f0b003f +int id text 0x7f0b0040 +int id text2 0x7f0b0041 +int id time 0x7f0b0042 +int id title 0x7f0b0043 +int integer status_bar_notification_info_maxnum 0x7f0c0001 +int layout custom_dialog 0x7f0e0001 +int layout notification_action 0x7f0e0002 +int layout notification_action_tombstone 0x7f0e0003 +int layout notification_template_custom_big 0x7f0e0004 +int layout notification_template_icon_group 0x7f0e0005 +int layout notification_template_part_chronometer 0x7f0e0006 +int layout notification_template_part_time 0x7f0e0007 +int string status_bar_notification_info_overflow 0x7f140001 +int style TextAppearance_Compat_Notification 0x7f150001 +int style TextAppearance_Compat_Notification_Info 0x7f150002 +int style TextAppearance_Compat_Notification_Line2 0x7f150003 +int style TextAppearance_Compat_Notification_Time 0x7f150004 +int style TextAppearance_Compat_Notification_Title 0x7f150005 +int style Widget_Compat_NotificationActionContainer 0x7f150006 +int style Widget_Compat_NotificationActionText 0x7f150007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..1ffce7770822cb9f0e8cefba1dafb9a1c97e875d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..e81eace75761d9965eda4838efb326ed4de1be3a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/113/jl/proguard.txt @@ -0,0 +1,19 @@ +# Copyright (C) 2016 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# keep setters in VectorDrawables so that animations can still work. +-keepclassmembers class androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$* { + void set*(***); + *** get*(); +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/114.stamp new file mode 100644 index 0000000000000000000000000000000000000000..4c0b6929cef02ed2970ac1920396db5fe3a3011b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114.stamp @@ -0,0 +1 @@ +EB015468CD35CB80 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..9bfa5da5f1b613703ab6cb485ec5f221992176f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.transition" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="30" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..d8560bd4e22fad481a9d1edd484574bd157147f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,2 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..b50114eb34f9732d40087e32fa85bc63b48659ab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/R.txt @@ -0,0 +1,1643 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim fragment_close_enter 0x0 +int anim fragment_close_exit 0x0 +int anim fragment_fade_enter 0x0 +int anim fragment_fade_exit 0x0 +int anim fragment_fast_out_extra_slow_in 0x0 +int anim fragment_open_enter 0x0 +int anim fragment_open_exit 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionViewClass 0x0 +int attr activityChooserViewStyle 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alpha 0x0 +int attr alphabeticModifiers 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr background 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr barLength 0x0 +int attr borderlessButtonStyle 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonGravity 0x0 +int attr buttonIconDimen 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr checkboxStyle 0x0 +int attr checkedTextViewStyle 0x0 +int attr closeIcon 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryDark 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr commitIcon 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr controlBackground 0x0 +int attr coordinatorLayoutStyle 0x0 +int attr customNavigationLayout 0x0 +int attr defaultQueryHint 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerHorizontal 0x0 +int attr dividerPadding 0x0 +int attr dividerVertical 0x0 +int attr drawableSize 0x0 +int attr drawerArrowStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr font 0x0 +int attr fontFamily 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr gapBetweenBars 0x0 +int attr goIcon 0x0 +int attr height 0x0 +int attr hideOnContentScroll 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr icon 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr imageButtonStyle 0x0 +int attr indeterminateProgressStyle 0x0 +int attr initialActivityCount 0x0 +int attr isLightTheme 0x0 +int attr itemPadding 0x0 +int attr keylines 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr layout 0x0 +int attr layout_anchor 0x0 +int attr layout_anchorGravity 0x0 +int attr layout_behavior 0x0 +int attr layout_dodgeInsetEdges 0x0 +int attr layout_insetEdge 0x0 +int attr layout_keyline 0x0 +int attr lineHeight 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr logo 0x0 +int attr logoDescription 0x0 +int attr maxButtonHeight 0x0 +int attr measureWithLargestChild 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationMode 0x0 +int attr numericModifiers 0x0 +int attr overlapAnchor 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingEnd 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr preserveIconSpacing 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr radioButtonStyle 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchViewStyle 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr showAsAction 0x0 +int attr showDividers 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr singleChoiceItemLayout 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitTrack 0x0 +int attr srcCompat 0x0 +int attr state_above_anchor 0x0 +int attr statusBarBackground 0x0 +int attr subMenuArrow 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr title 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextStyle 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipText 0x0 +int attr track 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr ttcIndex 0x0 +int attr viewInflaterClass 0x0 +int attr voiceIcon 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_allow_stacked_button_bar 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_input_method_navigation_guard 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_star_black_16dp 0x0 +int drawable abc_ic_star_black_36dp 0x0 +int drawable abc_ic_star_black_48dp 0x0 +int drawable abc_ic_star_half_black_16dp 0x0 +int drawable abc_ic_star_half_black_36dp 0x0 +int drawable abc_ic_star_half_black_48dp 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl_dark 0x0 +int drawable abc_text_select_handle_left_mtrl_light 0x0 +int drawable abc_text_select_handle_middle_mtrl_dark 0x0 +int drawable abc_text_select_handle_middle_mtrl_light 0x0 +int drawable abc_text_select_handle_right_mtrl_dark 0x0 +int drawable abc_text_select_handle_right_mtrl_light 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable abc_vector_test 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_container 0x0 +int id action_context_bar 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id action_text 0x0 +int id actions 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id alertTitle 0x0 +int id async 0x0 +int id blocking 0x0 +int id bottom 0x0 +int id buttonPanel 0x0 +int id checkbox 0x0 +int id chronometer 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id dialog_button 0x0 +int id edit_query 0x0 +int id end 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id forever 0x0 +int id fragment_container_view_tag 0x0 +int id ghost_view 0x0 +int id ghost_view_holder 0x0 +int id group_divider 0x0 +int id home 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id image 0x0 +int id info 0x0 +int id italic 0x0 +int id left 0x0 +int id line1 0x0 +int id line3 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id message 0x0 +int id multiply 0x0 +int id none 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id parentPanel 0x0 +int id parent_matrix 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id right 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id save_non_transition_alpha 0x0 +int id save_overlay_view 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id shortcut 0x0 +int id spacer 0x0 +int id split_action_bar 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id start 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id text 0x0 +int id text2 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id time 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id top 0x0 +int id topPanel 0x0 +int id transition_current_scene 0x0 +int id transition_layout_save 0x0 +int id transition_position 0x0 +int id transition_scene_layoutid_cache 0x0 +int id transition_transform 0x0 +int id uniform 0x0 +int id up 0x0 +int id visible_removing_fragment_view_tag 0x0 +int id wrap_content 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_font_family_body_1_material 0x0 +int string abc_font_family_body_2_material 0x0 +int string abc_font_family_button_material 0x0 +int string abc_font_family_caption_material 0x0 +int string abc_font_family_display_1_material 0x0 +int string abc_font_family_display_2_material 0x0 +int string abc_font_family_display_3_material 0x0 +int string abc_font_family_display_4_material 0x0 +int string abc_font_family_headline_material 0x0 +int string abc_font_family_menu_material 0x0 +int string abc_font_family_subhead_material 0x0 +int string abc_font_family_title_material 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string search_menu_title 0x0 +int string status_bar_notification_info_overflow 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int style Widget_Support_CoordinatorLayout 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_firstBaselineToTopHeight 6 +int styleable AppCompatTextView_fontFamily 7 +int styleable AppCompatTextView_lastBaselineToBottomHeight 8 +int styleable AppCompatTextView_lineHeight 9 +int styleable AppCompatTextView_textAllCaps 10 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listDividerAlertDialog 72 +int styleable AppCompatTheme_listMenuViewStyle 73 +int styleable AppCompatTheme_listPopupWindowStyle 74 +int styleable AppCompatTheme_listPreferredItemHeight 75 +int styleable AppCompatTheme_listPreferredItemHeightLarge 76 +int styleable AppCompatTheme_listPreferredItemHeightSmall 77 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 78 +int styleable AppCompatTheme_listPreferredItemPaddingRight 79 +int styleable AppCompatTheme_panelBackground 80 +int styleable AppCompatTheme_panelMenuListTheme 81 +int styleable AppCompatTheme_panelMenuListWidth 82 +int styleable AppCompatTheme_popupMenuStyle 83 +int styleable AppCompatTheme_popupWindowStyle 84 +int styleable AppCompatTheme_radioButtonStyle 85 +int styleable AppCompatTheme_ratingBarStyle 86 +int styleable AppCompatTheme_ratingBarStyleIndicator 87 +int styleable AppCompatTheme_ratingBarStyleSmall 88 +int styleable AppCompatTheme_searchViewStyle 89 +int styleable AppCompatTheme_seekBarStyle 90 +int styleable AppCompatTheme_selectableItemBackground 91 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 92 +int styleable AppCompatTheme_spinnerDropDownItemStyle 93 +int styleable AppCompatTheme_spinnerStyle 94 +int styleable AppCompatTheme_switchStyle 95 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 96 +int styleable AppCompatTheme_textAppearanceListItem 97 +int styleable AppCompatTheme_textAppearanceListItemSecondary 98 +int styleable AppCompatTheme_textAppearanceListItemSmall 99 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 100 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 102 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103 +int styleable AppCompatTheme_textColorAlertDialogListItem 104 +int styleable AppCompatTheme_textColorSearchUrl 105 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 106 +int styleable AppCompatTheme_toolbarStyle 107 +int styleable AppCompatTheme_tooltipForegroundColor 108 +int styleable AppCompatTheme_tooltipFrameBackground 109 +int styleable AppCompatTheme_viewInflaterClass 110 +int styleable AppCompatTheme_windowActionBar 111 +int styleable AppCompatTheme_windowActionBarOverlay 112 +int styleable AppCompatTheme_windowActionModeOverlay 113 +int styleable AppCompatTheme_windowFixedHeightMajor 114 +int styleable AppCompatTheme_windowFixedHeightMinor 115 +int styleable AppCompatTheme_windowFixedWidthMajor 116 +int styleable AppCompatTheme_windowFixedWidthMinor 117 +int styleable AppCompatTheme_windowMinWidthMajor 118 +int styleable AppCompatTheme_windowMinWidthMinor 119 +int styleable AppCompatTheme_windowNoTitle 120 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable CoordinatorLayout { 0x0, 0x0 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textSize 8 +int styleable TextAppearance_android_textStyle 9 +int styleable TextAppearance_android_typeface 10 +int styleable TextAppearance_fontFamily 11 +int styleable TextAppearance_textAllCaps 12 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_navigationContentDescription 14 +int styleable Toolbar_navigationIcon 15 +int styleable Toolbar_popupTheme 16 +int styleable Toolbar_subtitle 17 +int styleable Toolbar_subtitleTextAppearance 18 +int styleable Toolbar_subtitleTextColor 19 +int styleable Toolbar_title 20 +int styleable Toolbar_titleMargin 21 +int styleable Toolbar_titleMarginBottom 22 +int styleable Toolbar_titleMarginEnd 23 +int styleable Toolbar_titleMarginStart 24 +int styleable Toolbar_titleMarginTop 25 +int styleable Toolbar_titleMargins 26 +int styleable Toolbar_titleTextAppearance 27 +int styleable Toolbar_titleTextColor 28 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..db7f697dc55c46525c115aa3f084e49dcd0e9ac4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..f5d55d0aaa25a0dfff82c181cba6052ed3a216dd Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f31fefece4c7f9111953367d89365f96c2abc32 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/proguard.txt @@ -0,0 +1,18 @@ +# Copyright (C) 2017 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Keep a field in transition that is used to keep a reference to weakly-referenced object +-keepclassmembers class androidx.transition.ChangeBounds$* extends android.animation.AnimatorListenerAdapter { + androidx.transition.ChangeBounds$ViewBounds mViewBounds; +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..0b6cac1d2a2f91b33f84f8a1a54761570a8ebb79 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f831553cc6b0f2143da80d45446b59d506d7afb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="ghost_view" type="id"/> + <item name="ghost_view_holder" type="id"/> + <item name="parent_matrix" type="id"/> + <item name="save_non_transition_alpha" type="id"/> + <item name="save_overlay_view" type="id"/> + <item name="transition_current_scene" type="id"/> + <item name="transition_layout_save" type="id"/> + <item name="transition_position" type="id"/> + <item name="transition_scene_layoutid_cache" type="id"/> + <item name="transition_transform" type="id"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/115.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/115.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1adc855b0d2e8d0e033620a1e9922d516b7c8c31 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/115.stamp @@ -0,0 +1 @@ +3613EA5D3AC4382F \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b17e1eac2f88593db022bf65fee67b54c0a0ebf0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.print" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..2b44275e7aaa1e2b1dc9d58d3e121210f43d1a97 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..846dea11a1c02484e7be49b5e91cc4a02a0fb02a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/115/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/116.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1c39ff28ed8ac7fa73d27f7017cbc15bbcf71118 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/116.stamp @@ -0,0 +1 @@ +3B3428810A9C2B22 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2c7bef0a32a4eac5843e96c520152b16065b1b0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.localbroadcastmanager" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="31" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..bd8164d6562f2626e700e915ffa7f0522f7252df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..83d8aee3576b57e821ca9690ff92716e4203618b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/117.stamp new file mode 100644 index 0000000000000000000000000000000000000000..fa0f15ad29072d0692c2c1de14802234fe5c718a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117.stamp @@ -0,0 +1 @@ +4BCB4194D6C10DEA \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce6e3396344c127c757561d62551bd3f3c96fb2c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + package="androidx.lifecycle.process" > + + <uses-sdk android:minSdkVersion="14" /> + + <application> + <provider + android:name="androidx.startup.InitializationProvider" + android:authorities="${applicationId}.androidx-startup" + android:exported="false" + tools:node="merge" > + <meta-data + android:name="androidx.lifecycle.ProcessLifecycleInitializer" + android:value="androidx.startup" /> + </provider> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..88724d314bb3b3a092c39f99729fae7e85bb62b8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt @@ -0,0 +1,41 @@ +# Baseline profiles for lifecycle-process + +HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;-><init>()V +HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;-><init>()V +HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/LifecycleDispatcher;-><clinit>()V +HSPLandroidx/lifecycle/LifecycleDispatcher;->init(Landroid/content/Context;)V +HSPLandroidx/lifecycle/ProcessLifecycleInitializer;-><init>()V +HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Landroidx/lifecycle/LifecycleOwner; +HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Ljava/lang/Object; +HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->dependencies()Ljava/util/List; +HSPLandroidx/lifecycle/ProcessLifecycleOwner$1;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$2;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner$3;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPreCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;-><clinit>()V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;-><init>()V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityResumed()V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityStarted()V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->attach(Landroid/content/Context;)V +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->get()Landroidx/lifecycle/LifecycleOwner; +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/lifecycle/ProcessLifecycleOwner;->init(Landroid/content/Context;)V +PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ProcessLifecycleOwner$1;->run()V +PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ProcessLifecycleOwner;->activityPaused()V +PLandroidx/lifecycle/ProcessLifecycleOwner;->activityStopped()V +PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchPauseIfNeeded()V +PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchStopIfNeeded()V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..8bf936d31c4f66ec3137e1aaf057bcab1d22cf85 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff27e9d6a3f2df8c0b732ab20f74ede0ed9fc790 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/proguard.txt @@ -0,0 +1,2 @@ +# this rule is need to work properly when app is compiled with api 28, see b/142778206 +-keepclassmembers class * extends androidx.lifecycle.EmptyActivityLifecycleCallbacks { *; } \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/118.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/118.stamp new file mode 100644 index 0000000000000000000000000000000000000000..925e46d9c71ef496d8c961d9d11c1d9e4faa6f6d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/118.stamp @@ -0,0 +1 @@ +B07C0B646B57A727 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..6347df4f93257c05f474b56dcb841e65be53845d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.documentfile" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..5dc8c9e1a395d608c22a80a2cea37511acdbbae8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/118/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/119.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/119.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1cb9235afcb404b837d8fb4e1f728e581adbb392 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/119.stamp @@ -0,0 +1 @@ +5F83CA210322FEC3 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..c94efae2b752553861856c4857e904b559f93f7e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.legacy.coreutils" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1228a574e2861196a08ae1e5856706152685aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/R.txt @@ -0,0 +1,131 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f080001 +int dimen compat_button_inset_vertical_material 0x7f080002 +int dimen compat_button_padding_horizontal_material 0x7f080003 +int dimen compat_button_padding_vertical_material 0x7f080004 +int dimen compat_control_corner_material 0x7f080005 +int dimen compat_notification_large_icon_max_height 0x7f080006 +int dimen compat_notification_large_icon_max_width 0x7f080007 +int dimen notification_action_icon_size 0x7f080008 +int dimen notification_action_text_size 0x7f080009 +int dimen notification_big_circle_margin 0x7f08000a +int dimen notification_content_margin_start 0x7f08000b +int dimen notification_large_icon_height 0x7f08000c +int dimen notification_large_icon_width 0x7f08000d +int dimen notification_main_column_padding_top 0x7f08000e +int dimen notification_media_narrow_margin 0x7f08000f +int dimen notification_right_icon_size 0x7f080010 +int dimen notification_right_side_padding_top 0x7f080011 +int dimen notification_small_icon_background_padding 0x7f080012 +int dimen notification_small_icon_size_as_large 0x7f080013 +int dimen notification_subtext_size 0x7f080014 +int dimen notification_top_pad 0x7f080015 +int dimen notification_top_pad_large_text 0x7f080016 +int drawable notification_action_background 0x7f090001 +int drawable notification_bg 0x7f090002 +int drawable notification_bg_low 0x7f090003 +int drawable notification_bg_low_normal 0x7f090004 +int drawable notification_bg_low_pressed 0x7f090005 +int drawable notification_bg_normal 0x7f090006 +int drawable notification_bg_normal_pressed 0x7f090007 +int drawable notification_icon_background 0x7f090008 +int drawable notification_template_icon_bg 0x7f090009 +int drawable notification_template_icon_low_bg 0x7f09000a +int drawable notification_tile_bg 0x7f09000b +int drawable notify_panel_notification_icon_bg 0x7f09000c +int id action_container 0x7f0c0001 +int id action_divider 0x7f0c0002 +int id action_image 0x7f0c0003 +int id action_text 0x7f0c0004 +int id actions 0x7f0c0005 +int id async 0x7f0c0006 +int id blocking 0x7f0c0007 +int id chronometer 0x7f0c0008 +int id forever 0x7f0c0009 +int id icon 0x7f0c000a +int id icon_group 0x7f0c000b +int id info 0x7f0c000c +int id italic 0x7f0c000d +int id line1 0x7f0c000e +int id line3 0x7f0c000f +int id normal 0x7f0c0010 +int id notification_background 0x7f0c0011 +int id notification_main_column 0x7f0c0012 +int id notification_main_column_container 0x7f0c0013 +int id right_icon 0x7f0c0014 +int id right_side 0x7f0c0015 +int id tag_transition_group 0x7f0c0016 +int id tag_unhandled_key_event_manager 0x7f0c0017 +int id tag_unhandled_key_listeners 0x7f0c0018 +int id text 0x7f0c0019 +int id text2 0x7f0c001a +int id time 0x7f0c001b +int id title 0x7f0c001c +int integer status_bar_notification_info_maxnum 0x7f0d0001 +int layout notification_action 0x7f0f0001 +int layout notification_action_tombstone 0x7f0f0002 +int layout notification_template_custom_big 0x7f0f0003 +int layout notification_template_icon_group 0x7f0f0004 +int layout notification_template_part_chronometer 0x7f0f0005 +int layout notification_template_part_time 0x7f0f0006 +int string status_bar_notification_info_overflow 0x7f150001 +int style TextAppearance_Compat_Notification 0x7f160001 +int style TextAppearance_Compat_Notification_Info 0x7f160002 +int style TextAppearance_Compat_Notification_Line2 0x7f160003 +int style TextAppearance_Compat_Notification_Time 0x7f160004 +int style TextAppearance_Compat_Notification_Title 0x7f160005 +int style Widget_Compat_NotificationActionContainer 0x7f160006 +int style Widget_Compat_NotificationActionText 0x7f160007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..c3eef538cf2b8ea8f8a3b1d5fb5271452ad8a10a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/119/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/120.stamp new file mode 100644 index 0000000000000000000000000000000000000000..c2ee02f1536206b8dd68b79999a57f16a5561e91 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/120.stamp @@ -0,0 +1 @@ +EB0A45CA7B6771BE \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..a573d360243046d899940ea3fa4e77aca3a497e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + package="androidx.emoji2" > + + <uses-sdk android:minSdkVersion="14" /> + + <application> + <provider + android:name="androidx.startup.InitializationProvider" + android:authorities="${applicationId}.androidx-startup" + android:exported="false" + tools:node="merge" > + <meta-data + android:name="androidx.emoji2.text.EmojiCompatInitializer" + android:value="androidx.startup" /> + </provider> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..27120d232fa836d04dac87aa85f140f220158047 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..2c4d5433a4d074bb9a914536cd517d7874cef9e2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar new file mode 100644 index 0000000000000000000000000000000000000000..31b2786e0869b4f88b0e6c37c7ba826bde9b57eb Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/121.stamp new file mode 100644 index 0000000000000000000000000000000000000000..a93762b381d1376641dcdca687b8ed9912191764 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/121.stamp @@ -0,0 +1 @@ +72DDB9DD40230571 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e9407afc1edc70ac92fcbf1520266b6355a4086 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.emoji2.viewsintegration" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..5e9d2aa5da0ead8c165fc5cfe73be9488fd55fcf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/122.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/122.stamp new file mode 100644 index 0000000000000000000000000000000000000000..7a2fe6c25f27bd1d19188f5b6a23335c5d7f05d4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/122.stamp @@ -0,0 +1 @@ +5B29FA3325524A00 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..d3907cd027e7d311a1d144ed04d345d9697f8523 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.dynamicanimation" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1228a574e2861196a08ae1e5856706152685aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/R.txt @@ -0,0 +1,131 @@ +int attr alpha 0x7f040001 +int attr font 0x7f040002 +int attr fontProviderAuthority 0x7f040003 +int attr fontProviderCerts 0x7f040004 +int attr fontProviderFetchStrategy 0x7f040005 +int attr fontProviderFetchTimeout 0x7f040006 +int attr fontProviderPackage 0x7f040007 +int attr fontProviderQuery 0x7f040008 +int attr fontStyle 0x7f040009 +int attr fontVariationSettings 0x7f04000a +int attr fontWeight 0x7f04000b +int attr ttcIndex 0x7f04000c +int color notification_action_color_filter 0x7f060001 +int color notification_icon_bg_color 0x7f060002 +int color ripple_material_light 0x7f060003 +int color secondary_text_default_material_light 0x7f060004 +int dimen compat_button_inset_horizontal_material 0x7f080001 +int dimen compat_button_inset_vertical_material 0x7f080002 +int dimen compat_button_padding_horizontal_material 0x7f080003 +int dimen compat_button_padding_vertical_material 0x7f080004 +int dimen compat_control_corner_material 0x7f080005 +int dimen compat_notification_large_icon_max_height 0x7f080006 +int dimen compat_notification_large_icon_max_width 0x7f080007 +int dimen notification_action_icon_size 0x7f080008 +int dimen notification_action_text_size 0x7f080009 +int dimen notification_big_circle_margin 0x7f08000a +int dimen notification_content_margin_start 0x7f08000b +int dimen notification_large_icon_height 0x7f08000c +int dimen notification_large_icon_width 0x7f08000d +int dimen notification_main_column_padding_top 0x7f08000e +int dimen notification_media_narrow_margin 0x7f08000f +int dimen notification_right_icon_size 0x7f080010 +int dimen notification_right_side_padding_top 0x7f080011 +int dimen notification_small_icon_background_padding 0x7f080012 +int dimen notification_small_icon_size_as_large 0x7f080013 +int dimen notification_subtext_size 0x7f080014 +int dimen notification_top_pad 0x7f080015 +int dimen notification_top_pad_large_text 0x7f080016 +int drawable notification_action_background 0x7f090001 +int drawable notification_bg 0x7f090002 +int drawable notification_bg_low 0x7f090003 +int drawable notification_bg_low_normal 0x7f090004 +int drawable notification_bg_low_pressed 0x7f090005 +int drawable notification_bg_normal 0x7f090006 +int drawable notification_bg_normal_pressed 0x7f090007 +int drawable notification_icon_background 0x7f090008 +int drawable notification_template_icon_bg 0x7f090009 +int drawable notification_template_icon_low_bg 0x7f09000a +int drawable notification_tile_bg 0x7f09000b +int drawable notify_panel_notification_icon_bg 0x7f09000c +int id action_container 0x7f0c0001 +int id action_divider 0x7f0c0002 +int id action_image 0x7f0c0003 +int id action_text 0x7f0c0004 +int id actions 0x7f0c0005 +int id async 0x7f0c0006 +int id blocking 0x7f0c0007 +int id chronometer 0x7f0c0008 +int id forever 0x7f0c0009 +int id icon 0x7f0c000a +int id icon_group 0x7f0c000b +int id info 0x7f0c000c +int id italic 0x7f0c000d +int id line1 0x7f0c000e +int id line3 0x7f0c000f +int id normal 0x7f0c0010 +int id notification_background 0x7f0c0011 +int id notification_main_column 0x7f0c0012 +int id notification_main_column_container 0x7f0c0013 +int id right_icon 0x7f0c0014 +int id right_side 0x7f0c0015 +int id tag_transition_group 0x7f0c0016 +int id tag_unhandled_key_event_manager 0x7f0c0017 +int id tag_unhandled_key_listeners 0x7f0c0018 +int id text 0x7f0c0019 +int id text2 0x7f0c001a +int id time 0x7f0c001b +int id title 0x7f0c001c +int integer status_bar_notification_info_maxnum 0x7f0d0001 +int layout notification_action 0x7f0f0001 +int layout notification_action_tombstone 0x7f0f0002 +int layout notification_template_custom_big 0x7f0f0003 +int layout notification_template_icon_group 0x7f0f0004 +int layout notification_template_part_chronometer 0x7f0f0005 +int layout notification_template_part_time 0x7f0f0006 +int string status_bar_notification_info_overflow 0x7f150001 +int style TextAppearance_Compat_Notification 0x7f160001 +int style TextAppearance_Compat_Notification_Info 0x7f160002 +int style TextAppearance_Compat_Notification_Line2 0x7f160003 +int style TextAppearance_Compat_Notification_Time 0x7f160004 +int style TextAppearance_Compat_Notification_Title 0x7f160005 +int style Widget_Compat_NotificationActionContainer 0x7f160006 +int style Widget_Compat_NotificationActionText 0x7f160007 +int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..88f5191e8a7c9d92da35c7d485e5c284c7a89763 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/122/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/123.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e4d86f176b999af347d6dcb91583f1bc6c3ac20e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123.stamp @@ -0,0 +1 @@ +8A023B01C427797A \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcbc3be7de55064fa66990486f8a7b91ce05d1b4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.drawerlayout" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c71880d56210882f633d5a906a08fde0b30e690 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/R.txt @@ -0,0 +1,5 @@ +int attr drawerLayoutStyle 0x0 +int attr elevation 0x0 +int dimen def_drawer_elevation 0x0 +int[] styleable DrawerLayout { 0x0 } +int styleable DrawerLayout_elevation 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..9e9504693c2416bab934f1745b7ce197d71bf3a3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..77bccc046090eb89b0deaa9d1e9bfa409a424dc7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..3756729e13a4d12659723f0a43c19ac8dff98036 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/public.txt @@ -0,0 +1,2 @@ +attr drawerLayoutStyle +attr elevation diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..a68d019f77ab5b3fbd060bf98b185e9119ee531d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..3db9c9c692283f70ce2c28e2ec4b96125c82114a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="reference" name="drawerLayoutStyle"/> + <attr format="dimension" name="elevation"/> + <dimen name="def_drawer_elevation">10dp</dimen> + <declare-styleable name="DrawerLayout"> + + <attr name="elevation"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/124.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/124.stamp new file mode 100644 index 0000000000000000000000000000000000000000..4fb696fc157c5232ae2ef4664b26adf35d5a06f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/124.stamp @@ -0,0 +1 @@ +7BD91A78B0F77C26 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..0bb940c0bda6951f688f6e87d9ea02b8c8e198bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.cursoradapter" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..8568b5b7d116bc70fc271e6d36378a6d7e90b62b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/124/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/125.stamp new file mode 100644 index 0000000000000000000000000000000000000000..fb968cb623e93ce66315951eba24ef86c780d700 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125.stamp @@ -0,0 +1 @@ +C7D5B1FA62CA6B0B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..be3d21dc64b1ff1c3e39a46df94543857acd5de9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.coordinatorlayout" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="31" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..bd8164d6562f2626e700e915ffa7f0522f7252df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..07221cc47a6ed6440a2a614a46dc3d507b3b4962 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/R.txt @@ -0,0 +1,28 @@ +int attr coordinatorLayoutStyle 0x0 +int attr keylines 0x0 +int attr layout_anchor 0x0 +int attr layout_anchorGravity 0x0 +int attr layout_behavior 0x0 +int attr layout_dodgeInsetEdges 0x0 +int attr layout_insetEdge 0x0 +int attr layout_keyline 0x0 +int attr statusBarBackground 0x0 +int id bottom 0x0 +int id end 0x0 +int id left 0x0 +int id none 0x0 +int id right 0x0 +int id start 0x0 +int id top 0x0 +int style Widget_Support_CoordinatorLayout 0x0 +int[] styleable CoordinatorLayout { 0x0, 0x0 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..9942bc56594283458abe25b255710d9cc31262ed Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..d8136da3b702aa92fa22f872bfe319daac32334c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e70bc6e2091c4c7fe425f2f39d923fffe8090c3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/proguard.txt @@ -0,0 +1,25 @@ +# Copyright (C) 2016 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# CoordinatorLayout resolves the behaviors of its child components with reflection. +-keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior { + public <init>(android.content.Context, android.util.AttributeSet); + public <init>(); +} + +# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior and ViewPager's DecorView +-keepattributes AnnotationDefault, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecd002a263b1f4bac0db0b0daabfd564e914ed11 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/public.txt @@ -0,0 +1,9 @@ +style Widget_Support_CoordinatorLayout +attr keylines +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_dodgeInsetEdges +attr layout_insetEdge +attr layout_keyline +attr statusBarBackground diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..fc4f00bbd2ea98c5bb5a77eceac74b198dd1cc93 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..fee333e417c4362487b6f584c4a3a19500b9391f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="reference" name="coordinatorLayoutStyle"/> + <style name="Widget.Support.CoordinatorLayout" parent="android:Widget"> + <item name="statusBarBackground">#000000</item> + </style> + <declare-styleable name="CoordinatorLayout"> + <!-- A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. --> + <attr format="reference" name="keylines"/> + <!-- Drawable to display behind the status bar when the view is set to draw behind it. --> + <attr format="color|reference" name="statusBarBackground"/> + </declare-styleable> + <declare-styleable name="CoordinatorLayout_Layout"> + <attr name="android:layout_gravity"/> + <!-- The class name of a Behavior class defining special runtime behavior + for this child view. --> + <attr format="string" name="layout_behavior"/> + <!-- The id of an anchor view that this view should position relative to. --> + <attr format="reference" name="layout_anchor"/> + <!-- The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. --> + <attr format="integer" name="layout_keyline"/> + + <!-- Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. --> + <attr name="layout_anchorGravity"> + <!-- Push object to the top of its container, not changing its size. --> + <flag name="top" value="0x30"/> + <!-- Push object to the bottom of its container, not changing its size. --> + <flag name="bottom" value="0x50"/> + <!-- Push object to the left of its container, not changing its size. --> + <flag name="left" value="0x03"/> + <!-- Push object to the right of its container, not changing its size. --> + <flag name="right" value="0x05"/> + <!-- Place object in the vertical center of its container, not changing its size. --> + <flag name="center_vertical" value="0x10"/> + <!-- Grow the vertical size of the object if needed so it completely fills its container. --> + <flag name="fill_vertical" value="0x70"/> + <!-- Place object in the horizontal center of its container, not changing its size. --> + <flag name="center_horizontal" value="0x01"/> + <!-- Grow the horizontal size of the object if needed so it completely fills its container. --> + <flag name="fill_horizontal" value="0x07"/> + <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. --> + <flag name="center" value="0x11"/> + <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. --> + <flag name="fill" value="0x77"/> + <!-- Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges. --> + <flag name="clip_vertical" value="0x80"/> + <!-- Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges. --> + <flag name="clip_horizontal" value="0x08"/> + <!-- Push object to the beginning of its container, not changing its size. --> + <flag name="start" value="0x00800003"/> + <!-- Push object to the end of its container, not changing its size. --> + <flag name="end" value="0x00800005"/> + </attr> + + <!-- Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. --> + <attr format="enum" name="layout_insetEdge"> + <!-- Don't inset. --> + <enum name="none" value="0x0"/> + <!-- Inset the top edge. --> + <enum name="top" value="0x30"/> + <!-- Inset the bottom edge. --> + <enum name="bottom" value="0x50"/> + <!-- Inset the left edge. --> + <enum name="left" value="0x03"/> + <!-- Inset the right edge. --> + <enum name="right" value="0x05"/> + <!-- Inset the start edge. --> + <enum name="start" value="0x00800003"/> + <!-- Inset the end edge. --> + <enum name="end" value="0x00800005"/> + </attr> + <!-- Specifies how this view dodges the inset edges of the CoordinatorLayout. --> + <attr name="layout_dodgeInsetEdges"> + <!-- Don't dodge any edges --> + <flag name="none" value="0x0"/> + <!-- Dodge the top inset edge. --> + <flag name="top" value="0x30"/> + <!-- Dodge the bottom inset edge. --> + <flag name="bottom" value="0x50"/> + <!-- Dodge the left inset edge. --> + <flag name="left" value="0x03"/> + <!-- Dodge the right inset edge. --> + <flag name="right" value="0x05"/> + <!-- Dodge the start inset edge. --> + <flag name="start" value="0x00800003"/> + <!-- Dodge the end inset edge. --> + <flag name="end" value="0x00800005"/> + <!-- Dodge all the inset edges. --> + <flag name="all" value="0x77"/> + </attr> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/126.stamp new file mode 100644 index 0000000000000000000000000000000000000000..a20d86fae8c3bc327edfde1e17902ea1a7b10750 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126.stamp @@ -0,0 +1 @@ +EF5F7361DE6C7FC1 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..dad974736410f16c23f85358818d4a645baf9bfc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2012 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.appcompat.resources" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c85471b2367ba4cc99d5d023589a6248debc4e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/R.txt @@ -0,0 +1,25 @@ +int drawable abc_vector_test 0x0 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..c129a362ae0768284161653966fb7d99b0a2853a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..c006223787e95eaf7392e4695a0169d4e6b785d5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..d5da2cbdca77e5df5b93066112f661a5f53169fd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0"> + <path + android:fillColor="@android:color/white" + android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z"/> +</vector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..c276f720b8d5dcfe2ea83f54f7e78d35c7071b4e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <declare-styleable name="AnimatedStateListDrawableCompat"> + + <attr name="android:visible"/> + + <attr name="android:variablePadding"/> + + <attr name="android:constantSize"/> + + <attr name="android:dither"/> + + <attr name="android:enterFadeDuration"/> + + <attr name="android:exitFadeDuration"/> + + + </declare-styleable> + <declare-styleable name="AnimatedStateListDrawableItem"> + + <attr name="android:drawable"/> + + <attr name="android:id"/> + </declare-styleable> + <declare-styleable name="AnimatedStateListDrawableTransition"> + + <attr name="android:fromId"/> + + <attr name="android:toId"/> + + <attr name="android:drawable"/> + + <attr name="android:reversible"/> + </declare-styleable> + <declare-styleable name="StateListDrawable"> + + <attr name="android:visible"/> + + <attr name="android:variablePadding"/> + + <attr name="android:constantSize"/> + + <attr name="android:dither"/> + + <attr name="android:enterFadeDuration"/> + + <attr name="android:exitFadeDuration"/> + + + </declare-styleable> + <declare-styleable name="StateListDrawableItem"> + + <attr name="android:drawable"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/127.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1489113b90c2a6d438d143701e04c9fb3b2c8526 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127.stamp @@ -0,0 +1 @@ +A716F0C7510F283B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a4b4eecd521e0071aeb18c87f8460864cd57187 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2012 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.appcompat" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..21ffe4171fad8d7afd07af062a7f90eb0e9fc835 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/R.txt @@ -0,0 +1,1475 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 +int anim btn_checkbox_to_checked_icon_null_animation 0x0 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseContentDescription 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeTheme 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionViewClass 0x0 +int attr activityChooserViewStyle 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alphabeticModifiers 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr background 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr barLength 0x0 +int attr borderlessButtonStyle 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonCompat 0x0 +int attr buttonGravity 0x0 +int attr buttonIconDimen 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr checkMarkCompat 0x0 +int attr checkMarkTint 0x0 +int attr checkMarkTintMode 0x0 +int attr checkboxStyle 0x0 +int attr checkedTextViewStyle 0x0 +int attr closeIcon 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryDark 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr commitIcon 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr controlBackground 0x0 +int attr customNavigationLayout 0x0 +int attr defaultQueryHint 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerHorizontal 0x0 +int attr dividerPadding 0x0 +int attr dividerVertical 0x0 +int attr drawableBottomCompat 0x0 +int attr drawableEndCompat 0x0 +int attr drawableLeftCompat 0x0 +int attr drawableRightCompat 0x0 +int attr drawableSize 0x0 +int attr drawableStartCompat 0x0 +int attr drawableTint 0x0 +int attr drawableTintMode 0x0 +int attr drawableTopCompat 0x0 +int attr drawerArrowStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr emojiCompatEnabled 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr fontFamily 0x0 +int attr fontVariationSettings 0x0 +int attr gapBetweenBars 0x0 +int attr goIcon 0x0 +int attr height 0x0 +int attr hideOnContentScroll 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr icon 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr imageButtonStyle 0x0 +int attr indeterminateProgressStyle 0x0 +int attr initialActivityCount 0x0 +int attr isLightTheme 0x0 +int attr itemPadding 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr layout 0x0 +int attr lineHeight 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listChoiceIndicatorMultipleAnimated 0x0 +int attr listChoiceIndicatorSingleAnimated 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingEnd 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr listPreferredItemPaddingStart 0x0 +int attr logo 0x0 +int attr logoDescription 0x0 +int attr maxButtonHeight 0x0 +int attr measureWithLargestChild 0x0 +int attr menu 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationMode 0x0 +int attr numericModifiers 0x0 +int attr overlapAnchor 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingEnd 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr preserveIconSpacing 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr radioButtonStyle 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchViewStyle 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr showAsAction 0x0 +int attr showDividers 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr singleChoiceItemLayout 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitTrack 0x0 +int attr srcCompat 0x0 +int attr state_above_anchor 0x0 +int attr subMenuArrow 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr textLocale 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr title 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextStyle 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipText 0x0 +int attr track 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr viewInflaterClass 0x0 +int attr voiceIcon 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_decor_view_status_guard 0x0 +int color abc_decor_view_status_guard_light 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_height_large_material 0x0 +int dimen abc_list_item_height_material 0x0 +int dimen abc_list_item_height_small_material 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_star_big 0x0 +int dimen abc_star_medium 0x0 +int dimen abc_star_small 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_material_anim 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_material_anim 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_star_black_48dp 0x0 +int drawable abc_star_half_black_48dp 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl 0x0 +int drawable abc_text_select_handle_middle_mtrl 0x0 +int drawable abc_text_select_handle_right_mtrl 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable btn_checkbox_checked_mtrl 0x0 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 +int drawable btn_checkbox_unchecked_mtrl 0x0 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 +int drawable btn_radio_off_mtrl 0x0 +int drawable btn_radio_off_to_on_mtrl_animation 0x0 +int drawable btn_radio_on_mtrl 0x0 +int drawable btn_radio_on_to_off_mtrl_animation 0x0 +int drawable test_level_drawable 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_context_bar 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id alertTitle 0x0 +int id buttonPanel 0x0 +int id checkbox 0x0 +int id checked 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id edit_query 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id group_divider 0x0 +int id home 0x0 +int id icon 0x0 +int id image 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id message 0x0 +int id multiply 0x0 +int id none 0x0 +int id normal 0x0 +int id off 0x0 +int id on 0x0 +int id parentPanel 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id shortcut 0x0 +int id spacer 0x0 +int id split_action_bar 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id topPanel 0x0 +int id unchecked 0x0 +int id uniform 0x0 +int id up 0x0 +int id wrap_content 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 +int interpolator fast_out_slow_in 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string search_menu_title 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_DayNight 0x0 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Empty 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..7499952dbd7ed263a2cbc4478dd574c7baaae3ed Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f386cf848c0490edc458b5f4803ffa3a6ae9f7a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt @@ -0,0 +1,596 @@ +# Baseline profiles for androidx.appcompat + +HSPLandroidx/appcompat/R$styleable;-><clinit>()V +HSPLandroidx/appcompat/app/ActionBar$LayoutParams;-><init>(II)V +HSPLandroidx/appcompat/app/ActionBar;-><init>()V +HSPLandroidx/appcompat/app/AppCompatActivity$1;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V +HSPLandroidx/appcompat/app/AppCompatActivity$2;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V +HSPLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V +HSPLandroidx/appcompat/app/AppCompatActivity;-><init>()V +HSPLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V +HSPLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate; +HSPLandroidx/appcompat/app/AppCompatActivity;->getMenuInflater()Landroid/view/MenuInflater; +HSPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources; +HSPLandroidx/appcompat/app/AppCompatActivity;->initDelegate()V +HSPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V +HSPLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V +HSPLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V +HSPLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V +HSPLandroidx/appcompat/app/AppCompatActivity;->onStart()V +HSPLandroidx/appcompat/app/AppCompatActivity;->onSupportContentChanged()V +HSPLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V +HSPLandroidx/appcompat/app/AppCompatActivity;->setContentView(I)V +HSPLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V +HSPLandroidx/appcompat/app/AppCompatDelegate;-><clinit>()V +HSPLandroidx/appcompat/app/AppCompatDelegate;-><init>()V +HSPLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V +HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext(Landroid/content/Context;)V +HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context; +HSPLandroidx/appcompat/app/AppCompatDelegate;->create(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)Landroidx/appcompat/app/AppCompatDelegate; +HSPLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I +HSPLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;->run()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onAttachedFromWindow()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;->createConfigurationContext(Landroid/content/Context;Landroid/content/res/Configuration;)Landroid/content/Context; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelMenu(ILandroid/view/Menu;)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelView(I)Landroid/view/View; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;-><init>(I)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;->setMenu(Landroidx/appcompat/view/menu/MenuBuilder;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><clinit>()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight()Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight(Z)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyFixedSizeWindow()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateNightMode()I +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideConfigurationForDayNight(Landroid/content/Context;ILandroid/content/res/Configuration;)Landroid/content/res/Configuration; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createSubDecor()Landroid/view/ViewGroup; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getMenuInflater()Landroid/view/MenuInflater; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(IZ)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getSupportActionBar()Landroidx/appcompat/app/ActionBar; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getTitle()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getWindowCallback()Landroid/view/Window$Callback; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initializePanelMenu(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->invalidatePanelMenu(I)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->isActivityManifestHandlingUiMode()Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate(Landroid/os/Bundle;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onSubDecorInstalled(Landroid/view/ViewGroup;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->peekSupportActionBar()Landroidx/appcompat/app/ActionBar; +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->preparePanel(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;Landroid/view/KeyEvent;)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->sanitizeWindowFeatureId(I)I +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(I)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V +HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateForNightMode(IZ)Z +HSPLandroidx/appcompat/app/AppCompatViewInflater;-><clinit>()V +HSPLandroidx/appcompat/app/AppCompatViewInflater;-><init>()V +HSPLandroidx/appcompat/app/AppCompatViewInflater;->backportAccessibilityAttributes(Landroid/content/Context;Landroid/view/View;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/app/AppCompatViewInflater;->checkOnClickListener(Landroid/view/View;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/app/AppCompatViewInflater;->createButton(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatButton; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->createEditText(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatEditText; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->createTextView(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatTextView; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;ZZZZ)Landroid/view/View; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->themifyContext(Landroid/content/Context;Landroid/util/AttributeSet;ZZ)Landroid/content/Context; +HSPLandroidx/appcompat/app/AppCompatViewInflater;->verifyNotNull(Landroid/view/View;Ljava/lang/String;)V +HSPLandroidx/appcompat/app/WindowDecorActionBar$1;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V +HSPLandroidx/appcompat/app/WindowDecorActionBar$2;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V +HSPLandroidx/appcompat/app/WindowDecorActionBar$3;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;-><clinit>()V +HSPLandroidx/appcompat/app/WindowDecorActionBar;-><init>(Landroid/app/Activity;Z)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar; +HSPLandroidx/appcompat/app/WindowDecorActionBar;->getNavigationMode()I +HSPLandroidx/appcompat/app/WindowDecorActionBar;->getThemedContext()Landroid/content/Context; +HSPLandroidx/appcompat/app/WindowDecorActionBar;->init(Landroid/view/View;)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->onWindowVisibilityChanged(I)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDefaultDisplayHomeAsUpEnabled(Z)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayHomeAsUpEnabled(Z)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayOptions(II)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setElevation(F)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHasEmbeddedTabs(Z)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHomeButtonEnabled(Z)V +HSPLandroidx/appcompat/app/WindowDecorActionBar;->setShowHideAnimationEnabled(Z)V +HSPLandroidx/appcompat/view/ActionBarPolicy;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/view/ActionBarPolicy;->enableHomeButtonByDefault()Z +HSPLandroidx/appcompat/view/ActionBarPolicy;->get(Landroid/content/Context;)Landroidx/appcompat/view/ActionBarPolicy; +HSPLandroidx/appcompat/view/ActionBarPolicy;->getEmbeddedMenuWidthLimit()I +HSPLandroidx/appcompat/view/ActionBarPolicy;->getMaxActionButtons()I +HSPLandroidx/appcompat/view/ActionBarPolicy;->hasEmbeddedTabs()Z +HSPLandroidx/appcompat/view/ActionBarPolicy;->showsOverflowMenuButton()Z +HSPLandroidx/appcompat/view/ContextThemeWrapper;-><init>(Landroid/content/Context;I)V +HSPLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V +HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources; +HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResourcesInternal()Landroid/content/res/Resources; +HSPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object; +HSPLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme; +HSPLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V +HSPLandroidx/appcompat/view/ContextThemeWrapper;->onApplyThemeResource(Landroid/content/res/Resources$Theme;IZ)V +HSPLandroidx/appcompat/view/SupportMenuInflater;-><clinit>()V +HSPLandroidx/appcompat/view/SupportMenuInflater;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/view/WindowCallbackWrapper;-><init>(Landroid/view/Window$Callback;)V +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchTouchEvent(Landroid/view/MotionEvent;)Z +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback; +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelMenu(ILandroid/view/Menu;)Z +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelView(I)Landroid/view/View; +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V +HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V +HSPLandroidx/appcompat/view/menu/ActionMenuItem;-><init>(Landroid/content/Context;IIIILjava/lang/CharSequence;)V +HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;-><init>(Landroid/content/Context;II)V +HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V +HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setCallback(Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V +HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setId(I)V +HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->updateMenuView(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;-><clinit>()V +HSPLandroidx/appcompat/view/menu/MenuBuilder;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->addMenuPresenter(Landroidx/appcompat/view/menu/MenuPresenter;Landroid/content/Context;)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->dispatchPresenterUpdate(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->flagActionItems()V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->getActionItems()Ljava/util/ArrayList; +HSPLandroidx/appcompat/view/menu/MenuBuilder;->getNonActionItems()Ljava/util/ArrayList; +HSPLandroidx/appcompat/view/menu/MenuBuilder;->getVisibleItems()Ljava/util/ArrayList; +HSPLandroidx/appcompat/view/menu/MenuBuilder;->hasVisibleItems()Z +HSPLandroidx/appcompat/view/menu/MenuBuilder;->onItemsChanged(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->setCallback(Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->setOverrideVisibleItems(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->setQwertyMode(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->setShortcutsVisibleInner(Z)V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->size()I +HSPLandroidx/appcompat/view/menu/MenuBuilder;->startDispatchingItemsChanged()V +HSPLandroidx/appcompat/view/menu/MenuBuilder;->stopDispatchingItemsChanged()V +HSPLandroidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener;-><init>(Landroidx/appcompat/widget/AbsActionBarView;)V +HSPLandroidx/appcompat/widget/AbsActionBarView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;-><init>(Landroidx/appcompat/widget/ActionBarContainer;)V +HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->draw(Landroid/graphics/Canvas;)V +HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOpacity()I +HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOutline(Landroid/graphics/Outline;)V +HSPLandroidx/appcompat/widget/ActionBarContainer;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ActionBarContainer;->drawableStateChanged()V +HSPLandroidx/appcompat/widget/ActionBarContainer;->jumpDrawablesToCurrentState()V +HSPLandroidx/appcompat/widget/ActionBarContainer;->onFinishInflate()V +HSPLandroidx/appcompat/widget/ActionBarContainer;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/ActionBarContainer;->onMeasure(II)V +HSPLandroidx/appcompat/widget/ActionBarContainer;->setTabContainer(Landroidx/appcompat/widget/ScrollingTabContainerView;)V +HSPLandroidx/appcompat/widget/ActionBarContextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ActionBarContextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$1;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$2;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$3;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;-><clinit>()V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->applyInsets(Landroid/view/View;Landroid/graphics/Rect;ZZZZ)Z +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams; +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams; +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar; +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->init(Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onMeasure(II)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;I)Z +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;II)Z +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onWindowVisibilityChanged(I)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->pullChildren()V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setActionBarVisibilityCallback(Landroidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setHasNonEmbeddedTabs(Z)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenu(Landroid/view/Menu;Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenuPrepared()V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowCallback(Landroid/view/Window$Callback;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowTitle(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->shouldDelayChildPressedState()Z +HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton$1;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;Landroid/view/View;Landroidx/appcompat/widget/ActionMenuPresenter;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter;Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter$PopupPresenterCallback;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter;->flagActionItems()Z +HSPLandroidx/appcompat/widget/ActionMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setExpandedActionViewsExclusive(Z)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setMenuView(Landroidx/appcompat/widget/ActionMenuView;)V +HSPLandroidx/appcompat/widget/ActionMenuPresenter;->updateMenuView(Z)V +HSPLandroidx/appcompat/widget/ActionMenuView;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/ActionMenuView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ActionMenuView;->initialize(Landroidx/appcompat/view/menu/MenuBuilder;)V +HSPLandroidx/appcompat/widget/ActionMenuView;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/ActionMenuView;->onMeasure(II)V +HSPLandroidx/appcompat/widget/ActionMenuView;->peekMenu()Landroidx/appcompat/view/menu/MenuBuilder; +HSPLandroidx/appcompat/widget/ActionMenuView;->setMenuCallbacks(Landroidx/appcompat/view/menu/MenuPresenter$Callback;Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V +HSPLandroidx/appcompat/widget/ActionMenuView;->setOnMenuItemClickListener(Landroidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener;)V +HSPLandroidx/appcompat/widget/ActionMenuView;->setOverflowReserved(Z)V +HSPLandroidx/appcompat/widget/ActionMenuView;->setPopupTheme(I)V +HSPLandroidx/appcompat/widget/ActionMenuView;->setPresenter(Landroidx/appcompat/widget/ActionMenuPresenter;)V +HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;-><init>(Landroid/view/View;)V +HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->applySupportBackgroundTint()V +HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->shouldApplyFrameworkTintUsingColorFilter()Z +HSPLandroidx/appcompat/widget/AppCompatButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/AppCompatButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatButton;->drawableStateChanged()V +HSPLandroidx/appcompat/widget/AppCompatButton;->getEmojiTextViewHelper()Landroidx/appcompat/widget/AppCompatEmojiTextHelper; +HSPLandroidx/appcompat/widget/AppCompatButton;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V +HSPLandroidx/appcompat/widget/AppCompatButton;->onInitializeAccessibilityNodeInfo(Landroid/view/accessibility/AccessibilityNodeInfo;)V +HSPLandroidx/appcompat/widget/AppCompatButton;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/AppCompatButton;->onTextChanged(Ljava/lang/CharSequence;III)V +HSPLandroidx/appcompat/widget/AppCompatButton;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatButton;->setFilters([Landroid/text/InputFilter;)V +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->arrayContains([II)Z +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->createDrawableFor(Landroidx/appcompat/widget/ResourceManagerInternal;Landroid/content/Context;I)Landroid/graphics/drawable/Drawable; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->getTintListForDrawableRes(Landroid/content/Context;I)Landroid/content/res/ColorStateList; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawable(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z +HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->access$000()Landroid/graphics/PorterDuff$Mode; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getTintList(Landroid/content/Context;I)Landroid/content/res/ColorStateList; +HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V +HSPLandroidx/appcompat/widget/AppCompatEditText;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/AppCompatEditText;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatEditText;->drawableStateChanged()V +HSPLandroidx/appcompat/widget/AppCompatEditText;->getText()Landroid/text/Editable; +HSPLandroidx/appcompat/widget/AppCompatEditText;->getText()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/AppCompatEditText;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatEditText;->setKeyListener(Landroid/text/method/KeyListener;)V +HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;-><init>(Landroid/widget/EditText;)V +HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->getKeyListener(Landroid/text/method/KeyListener;)Landroid/text/method/KeyListener; +HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->initKeyListener()V +HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->setEnabled(Z)V +HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;-><init>(Landroid/widget/TextView;)V +HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->getFilters([Landroid/text/InputFilter;)[Landroid/text/InputFilter; +HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->setEnabled(Z)V +HSPLandroidx/appcompat/widget/AppCompatImageButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatImageButton;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatImageButton;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatImageHelper;-><init>(Landroid/widget/ImageView;)V +HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applyImageLevel()V +HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applySupportImageTint()V +HSPLandroidx/appcompat/widget/AppCompatImageHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatImageView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatImageView;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatImageView;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatTextClassifierHelper;-><init>(Landroid/widget/TextView;)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;-><init>(Landroidx/appcompat/widget/AppCompatTextHelper;IILjava/lang/ref/WeakReference;)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;->onFontRetrievalFailed(I)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;-><init>(Landroid/widget/TextView;)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->applyCompoundDrawablesTints()V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->createTintInfo(Landroid/content/Context;Landroidx/appcompat/widget/AppCompatDrawableManager;I)Landroidx/appcompat/widget/TintInfo; +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->onSetTextAppearance(Landroid/content/Context;I)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatTextHelper;->updateTypefaceAndStyle(Landroid/content/Context;Landroidx/appcompat/widget/TintTypedArray;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->consumeTextFutureAndSetBlocking()V +HSPLandroidx/appcompat/widget/AppCompatTextView;->drawableStateChanged()V +HSPLandroidx/appcompat/widget/AppCompatTextView;->getEmojiTextViewHelper()Landroidx/appcompat/widget/AppCompatEmojiTextHelper; +HSPLandroidx/appcompat/widget/AppCompatTextView;->getText()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/AppCompatTextView;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->onMeasure(II)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->onTextChanged(Ljava/lang/CharSequence;III)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawablesWithIntrinsicBounds(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->setFilters([Landroid/text/InputFilter;)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->setTextAppearance(Landroid/content/Context;I)V +HSPLandroidx/appcompat/widget/AppCompatTextView;->setTypeface(Landroid/graphics/Typeface;I)V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23;-><init>()V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29;-><init>()V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl;-><init>()V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><clinit>()V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><init>(Landroid/widget/TextView;)V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->getAutoSizeTextType()I +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->supportsAutoSizeText()Z +HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMajor()Landroid/util/TypedValue; +HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMinor()Landroid/util/TypedValue; +HSPLandroidx/appcompat/widget/ContentFrameLayout;->onAttachedToWindow()V +HSPLandroidx/appcompat/widget/ContentFrameLayout;->onMeasure(II)V +HSPLandroidx/appcompat/widget/ContentFrameLayout;->setAttachListener(Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;)V +HSPLandroidx/appcompat/widget/ContentFrameLayout;->setDecorPadding(IIII)V +HSPLandroidx/appcompat/widget/ForwardingListener;-><init>(Landroid/view/View;)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->getVirtualChildCount()I +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->layoutHorizontal(IIII)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->measureHorizontal(II)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onInitializeAccessibilityNodeInfo(Landroid/view/accessibility/AccessibilityNodeInfo;)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onMeasure(II)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->setBaselineAligned(Z)V +HSPLandroidx/appcompat/widget/LinearLayoutCompat;->setDividerDrawable(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/RtlSpacingHelper;-><init>()V +HSPLandroidx/appcompat/widget/RtlSpacingHelper;->getEnd()I +HSPLandroidx/appcompat/widget/RtlSpacingHelper;->getStart()I +HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setAbsolute(II)V +HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setDirection(Z)V +HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setRelative(II)V +HSPLandroidx/appcompat/widget/ThemeUtils;-><clinit>()V +HSPLandroidx/appcompat/widget/ThemeUtils;->checkAppCompatTheme(Landroid/view/View;Landroid/content/Context;)V +HSPLandroidx/appcompat/widget/TintContextWrapper;-><clinit>()V +HSPLandroidx/appcompat/widget/TintContextWrapper;->shouldWrap(Landroid/content/Context;)Z +HSPLandroidx/appcompat/widget/TintContextWrapper;->wrap(Landroid/content/Context;)Landroid/content/Context; +HSPLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V +HSPLandroidx/appcompat/widget/TintTypedArray;->getBoolean(IZ)Z +HSPLandroidx/appcompat/widget/TintTypedArray;->getColor(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getColorStateList(I)Landroid/content/res/ColorStateList; +HSPLandroidx/appcompat/widget/TintTypedArray;->getDimension(IF)F +HSPLandroidx/appcompat/widget/TintTypedArray;->getDimensionPixelOffset(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getDimensionPixelSize(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawable(I)Landroid/graphics/drawable/Drawable; +HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawableIfKnown(I)Landroid/graphics/drawable/Drawable; +HSPLandroidx/appcompat/widget/TintTypedArray;->getFloat(IF)F +HSPLandroidx/appcompat/widget/TintTypedArray;->getFont(IILandroidx/core/content/res/ResourcesCompat$FontCallback;)Landroid/graphics/Typeface; +HSPLandroidx/appcompat/widget/TintTypedArray;->getInt(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getInteger(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getLayoutDimension(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getResourceId(II)I +HSPLandroidx/appcompat/widget/TintTypedArray;->getString(I)Ljava/lang/String; +HSPLandroidx/appcompat/widget/TintTypedArray;->getText(I)Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/TintTypedArray;->getWrappedTypeArray()Landroid/content/res/TypedArray; +HSPLandroidx/appcompat/widget/TintTypedArray;->hasValue(I)Z +HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;I[I)Landroidx/appcompat/widget/TintTypedArray; +HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[I)Landroidx/appcompat/widget/TintTypedArray; +HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[III)Landroidx/appcompat/widget/TintTypedArray; +HSPLandroidx/appcompat/widget/TintTypedArray;->recycle()V +HSPLandroidx/appcompat/widget/Toolbar$$ExternalSyntheticLambda0;-><init>(Landroidx/appcompat/widget/Toolbar;)V +HSPLandroidx/appcompat/widget/Toolbar$1;-><init>(Landroidx/appcompat/widget/Toolbar;)V +HSPLandroidx/appcompat/widget/Toolbar$2;-><init>(Landroidx/appcompat/widget/Toolbar;)V +HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;-><init>(Landroidx/appcompat/widget/Toolbar;)V +HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->flagActionItems()Z +HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V +HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->updateMenuView(Z)V +HSPLandroidx/appcompat/widget/Toolbar$LayoutParams;-><init>(II)V +HSPLandroidx/appcompat/widget/Toolbar;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/appcompat/widget/Toolbar;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V +HSPLandroidx/appcompat/widget/Toolbar;->addCustomViewsWithGravity(Ljava/util/List;I)V +HSPLandroidx/appcompat/widget/Toolbar;->addSystemView(Landroid/view/View;Z)V +HSPLandroidx/appcompat/widget/Toolbar;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z +HSPLandroidx/appcompat/widget/Toolbar;->ensureContentInsets()V +HSPLandroidx/appcompat/widget/Toolbar;->ensureMenuView()V +HSPLandroidx/appcompat/widget/Toolbar;->ensureNavButtonView()V +HSPLandroidx/appcompat/widget/Toolbar;->generateDefaultLayoutParams()Landroidx/appcompat/widget/Toolbar$LayoutParams; +HSPLandroidx/appcompat/widget/Toolbar;->getChildTop(Landroid/view/View;I)I +HSPLandroidx/appcompat/widget/Toolbar;->getChildVerticalGravity(I)I +HSPLandroidx/appcompat/widget/Toolbar;->getContentInsetEnd()I +HSPLandroidx/appcompat/widget/Toolbar;->getContentInsetStart()I +HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetEnd()I +HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetLeft()I +HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetRight()I +HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetStart()I +HSPLandroidx/appcompat/widget/Toolbar;->getHorizontalMargins(Landroid/view/View;)I +HSPLandroidx/appcompat/widget/Toolbar;->getNavigationContentDescription()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/Toolbar;->getNavigationIcon()Landroid/graphics/drawable/Drawable; +HSPLandroidx/appcompat/widget/Toolbar;->getSubtitle()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/Toolbar;->getTitle()Ljava/lang/CharSequence; +HSPLandroidx/appcompat/widget/Toolbar;->getVerticalMargins(Landroid/view/View;)I +HSPLandroidx/appcompat/widget/Toolbar;->getViewListMeasuredWidth(Ljava/util/List;[I)I +HSPLandroidx/appcompat/widget/Toolbar;->getWrapper()Landroidx/appcompat/widget/DecorToolbar; +HSPLandroidx/appcompat/widget/Toolbar;->isChildOrHidden(Landroid/view/View;)Z +HSPLandroidx/appcompat/widget/Toolbar;->layoutChildRight(Landroid/view/View;I[II)I +HSPLandroidx/appcompat/widget/Toolbar;->measureChildCollapseMargins(Landroid/view/View;IIII[I)I +HSPLandroidx/appcompat/widget/Toolbar;->measureChildConstrained(Landroid/view/View;IIIII)V +HSPLandroidx/appcompat/widget/Toolbar;->onLayout(ZIIII)V +HSPLandroidx/appcompat/widget/Toolbar;->onMeasure(II)V +HSPLandroidx/appcompat/widget/Toolbar;->onRtlPropertiesChanged(I)V +HSPLandroidx/appcompat/widget/Toolbar;->setCollapsible(Z)V +HSPLandroidx/appcompat/widget/Toolbar;->setContentInsetsRelative(II)V +HSPLandroidx/appcompat/widget/Toolbar;->setMenu(Landroidx/appcompat/view/menu/MenuBuilder;Landroidx/appcompat/widget/ActionMenuPresenter;)V +HSPLandroidx/appcompat/widget/Toolbar;->setNavigationContentDescription(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/Toolbar;->setNavigationIcon(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/Toolbar;->setNavigationOnClickListener(Landroid/view/View$OnClickListener;)V +HSPLandroidx/appcompat/widget/Toolbar;->setPopupTheme(I)V +HSPLandroidx/appcompat/widget/Toolbar;->setSubtitle(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/Toolbar;->setSubtitleTextAppearance(Landroid/content/Context;I)V +HSPLandroidx/appcompat/widget/Toolbar;->setTitle(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/Toolbar;->setTitleTextAppearance(Landroid/content/Context;I)V +HSPLandroidx/appcompat/widget/Toolbar;->shouldCollapse()Z +HSPLandroidx/appcompat/widget/Toolbar;->shouldLayout(Landroid/view/View;)Z +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper$1;-><init>(Landroidx/appcompat/widget/ToolbarWidgetWrapper;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;-><init>(Landroidx/appcompat/widget/Toolbar;Z)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;-><init>(Landroidx/appcompat/widget/Toolbar;ZII)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getContext()Landroid/content/Context; +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getDisplayOptions()I +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getNavigationMode()I +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setCollapsible(Z)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setDefaultNavigationContentDescription(I)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setDisplayOptions(I)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setEmbeddedTabView(Landroidx/appcompat/widget/ScrollingTabContainerView;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setHomeButtonEnabled(Z)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setMenu(Landroid/view/Menu;Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setMenuPrepared()V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setNavigationIcon(Landroid/graphics/drawable/Drawable;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setTitleInt(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setWindowCallback(Landroid/view/Window$Callback;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setWindowTitle(Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->updateNavigationIcon()V +HSPLandroidx/appcompat/widget/TooltipCompat;->setTooltipText(Landroid/view/View;Ljava/lang/CharSequence;)V +HSPLandroidx/appcompat/widget/VectorEnabledTintResources;-><clinit>()V +HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->isCompatVectorFromResourcesEnabled()Z +HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->shouldBeUsed()Z +HSPLandroidx/appcompat/widget/ViewUtils;-><clinit>()V +HSPLandroidx/appcompat/widget/ViewUtils;->isLayoutRtl(Landroid/view/View;)Z +HSPLandroidx/appcompat/widget/ViewUtils;->makeOptionalFitsSystemWindows(Landroid/view/View;)V +Landroidx/appcompat/R$attr; +Landroidx/appcompat/R$bool; +Landroidx/appcompat/R$drawable; +Landroidx/appcompat/R$id; +Landroidx/appcompat/R$layout; +Landroidx/appcompat/R$string; +Landroidx/appcompat/R$style; +Landroidx/appcompat/R$styleable; +Landroidx/appcompat/app/ActionBar$LayoutParams; +Landroidx/appcompat/app/ActionBar; +Landroidx/appcompat/app/ActionBarDrawerToggle$DelegateProvider; +Landroidx/appcompat/app/AppCompatActivity$1; +Landroidx/appcompat/app/AppCompatActivity$2; +Landroidx/appcompat/app/AppCompatActivity; +Landroidx/appcompat/app/AppCompatCallback; +Landroidx/appcompat/app/AppCompatDelegate; +Landroidx/appcompat/app/AppCompatDelegateImpl$2; +Landroidx/appcompat/app/AppCompatDelegateImpl$3; +Landroidx/appcompat/app/AppCompatDelegateImpl$5; +Landroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback; +Landroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl; +Landroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback; +Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState; +Landroidx/appcompat/app/AppCompatDelegateImpl; +Landroidx/appcompat/app/AppCompatViewInflater; +Landroidx/appcompat/app/ToolbarActionBar; +Landroidx/appcompat/app/WindowDecorActionBar$1; +Landroidx/appcompat/app/WindowDecorActionBar$2; +Landroidx/appcompat/app/WindowDecorActionBar$3; +Landroidx/appcompat/app/WindowDecorActionBar; +Landroidx/appcompat/content/res/AppCompatResources; +Landroidx/appcompat/graphics/drawable/DrawableWrapper; +Landroidx/appcompat/resources/R$drawable; +Landroidx/appcompat/view/ActionBarPolicy; +Landroidx/appcompat/view/ContextThemeWrapper; +Landroidx/appcompat/view/SupportMenuInflater; +Landroidx/appcompat/view/WindowCallbackWrapper; +Landroidx/appcompat/view/menu/ActionMenuItem; +Landroidx/appcompat/view/menu/BaseMenuPresenter; +Landroidx/appcompat/view/menu/MenuBuilder$Callback; +Landroidx/appcompat/view/menu/MenuBuilder$ItemInvoker; +Landroidx/appcompat/view/menu/MenuBuilder; +Landroidx/appcompat/view/menu/MenuPresenter$Callback; +Landroidx/appcompat/view/menu/MenuPresenter; +Landroidx/appcompat/view/menu/MenuView; +Landroidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener; +Landroidx/appcompat/widget/AbsActionBarView; +Landroidx/appcompat/widget/ActionBarBackgroundDrawable; +Landroidx/appcompat/widget/ActionBarContainer; +Landroidx/appcompat/widget/ActionBarContextView; +Landroidx/appcompat/widget/ActionBarOverlayLayout$1; +Landroidx/appcompat/widget/ActionBarOverlayLayout$2; +Landroidx/appcompat/widget/ActionBarOverlayLayout$3; +Landroidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback; +Landroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams; +Landroidx/appcompat/widget/ActionBarOverlayLayout; +Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton$1; +Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton; +Landroidx/appcompat/widget/ActionMenuPresenter$PopupPresenterCallback; +Landroidx/appcompat/widget/ActionMenuPresenter; +Landroidx/appcompat/widget/ActionMenuView$ActionMenuChildView; +Landroidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener; +Landroidx/appcompat/widget/ActionMenuView; +Landroidx/appcompat/widget/AppCompatBackgroundHelper; +Landroidx/appcompat/widget/AppCompatButton; +Landroidx/appcompat/widget/AppCompatDrawableManager$1; +Landroidx/appcompat/widget/AppCompatDrawableManager; +Landroidx/appcompat/widget/AppCompatEditText; +Landroidx/appcompat/widget/AppCompatEmojiEditTextHelper; +Landroidx/appcompat/widget/AppCompatEmojiTextHelper; +Landroidx/appcompat/widget/AppCompatImageButton; +Landroidx/appcompat/widget/AppCompatImageHelper; +Landroidx/appcompat/widget/AppCompatImageView; +Landroidx/appcompat/widget/AppCompatTextClassifierHelper; +Landroidx/appcompat/widget/AppCompatTextHelper$1; +Landroidx/appcompat/widget/AppCompatTextHelper; +Landroidx/appcompat/widget/AppCompatTextView; +Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23; +Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29; +Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl; +Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper; +Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener; +Landroidx/appcompat/widget/ContentFrameLayout; +Landroidx/appcompat/widget/DecorContentParent; +Landroidx/appcompat/widget/DecorToolbar; +Landroidx/appcompat/widget/DrawableUtils; +Landroidx/appcompat/widget/EmojiCompatConfigurationView; +Landroidx/appcompat/widget/ForwardingListener; +Landroidx/appcompat/widget/LinearLayoutCompat; +Landroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache; +Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks; +Landroidx/appcompat/widget/ResourceManagerInternal; +Landroidx/appcompat/widget/ResourcesWrapper; +Landroidx/appcompat/widget/RtlSpacingHelper; +Landroidx/appcompat/widget/ThemeUtils; +Landroidx/appcompat/widget/TintContextWrapper; +Landroidx/appcompat/widget/TintResources; +Landroidx/appcompat/widget/TintTypedArray; +Landroidx/appcompat/widget/Toolbar$$ExternalSyntheticLambda0; +Landroidx/appcompat/widget/Toolbar$1; +Landroidx/appcompat/widget/Toolbar$2; +Landroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter; +Landroidx/appcompat/widget/Toolbar$LayoutParams; +Landroidx/appcompat/widget/Toolbar; +Landroidx/appcompat/widget/ToolbarWidgetWrapper$1; +Landroidx/appcompat/widget/ToolbarWidgetWrapper; +Landroidx/appcompat/widget/TooltipCompat; +Landroidx/appcompat/widget/VectorEnabledTintResources; +Landroidx/appcompat/widget/ViewUtils; +PLandroidx/appcompat/app/ActionBar;->onDestroy()V +PLandroidx/appcompat/app/AppCompatActivity;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatActivity;->getSupportActionBar()Landroidx/appcompat/app/ActionBar; +PLandroidx/appcompat/app/AppCompatActivity;->onDestroy()V +PLandroidx/appcompat/app/AppCompatActivity;->onKeyDown(ILandroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatActivity;->onStop()V +PLandroidx/appcompat/app/AppCompatActivity;->performMenuItemShortcut(Landroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatDelegate;->removeActivityDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V +PLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onDetachedFromWindow()V +PLandroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V +PLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatDelegateImpl;->checkCloseActionMenu(Landroidx/appcompat/view/menu/MenuBuilder;)V +PLandroidx/appcompat/app/AppCompatDelegateImpl;->cleanupAutoManagers()V +PLandroidx/appcompat/app/AppCompatDelegateImpl;->dismissPopups()V +PLandroidx/appcompat/app/AppCompatDelegateImpl;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatDelegateImpl;->endOnGoingFadeAnimation()V +PLandroidx/appcompat/app/AppCompatDelegateImpl;->onBackPressed()Z +PLandroidx/appcompat/app/AppCompatDelegateImpl;->onDestroy()V +PLandroidx/appcompat/app/AppCompatDelegateImpl;->onKeyDown(ILandroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatDelegateImpl;->onKeyUp(ILandroid/view/KeyEvent;)Z +PLandroidx/appcompat/app/AppCompatDelegateImpl;->onStop()V +PLandroidx/appcompat/app/WindowDecorActionBar;->collapseActionView()Z +PLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z +PLandroidx/appcompat/view/WindowCallbackWrapper;->onDetachedFromWindow()V +PLandroidx/appcompat/view/menu/BaseMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V +PLandroidx/appcompat/view/menu/MenuBuilder;->close()V +PLandroidx/appcompat/view/menu/MenuBuilder;->close(Z)V +PLandroidx/appcompat/widget/ActionBarContainer;->verifyDrawable(Landroid/graphics/drawable/Drawable;)Z +PLandroidx/appcompat/widget/ActionBarContextView;->onDetachedFromWindow()V +PLandroidx/appcompat/widget/ActionBarOverlayLayout;->dismissPopups()V +PLandroidx/appcompat/widget/ActionBarOverlayLayout;->haltActionBarHideOffsetAnimations()V +PLandroidx/appcompat/widget/ActionBarOverlayLayout;->onDetachedFromWindow()V +PLandroidx/appcompat/widget/ActionMenuPresenter;->dismissPopupMenus()Z +PLandroidx/appcompat/widget/ActionMenuPresenter;->hideOverflowMenu()Z +PLandroidx/appcompat/widget/ActionMenuPresenter;->hideSubMenus()Z +PLandroidx/appcompat/widget/ActionMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V +PLandroidx/appcompat/widget/ActionMenuView;->dismissPopupMenus()V +PLandroidx/appcompat/widget/ActionMenuView;->onDetachedFromWindow()V +PLandroidx/appcompat/widget/ContentFrameLayout;->onDetachedFromWindow()V +PLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V +PLandroidx/appcompat/widget/Toolbar;->dismissPopupMenus()V +PLandroidx/appcompat/widget/Toolbar;->hasExpandedActionView()Z +PLandroidx/appcompat/widget/Toolbar;->onDetachedFromWindow()V +PLandroidx/appcompat/widget/ToolbarWidgetWrapper;->dismissPopupMenus()V +PLandroidx/appcompat/widget/ToolbarWidgetWrapper;->hasExpandedActionView()Z diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..13a896d5d94bc0632691e27a8f53ac5d3d3ef825 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f2fc9682d3428a697feec0e72a819b217fc1b30 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/proguard.txt @@ -0,0 +1,22 @@ +# Copyright (C) 2018 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# aapt is not able to read app::actionViewClass and app:actionProviderClass to produce proguard +# keep rules. Add a commonly used SearchView to the keep list until b/109831488 is resolved. +-keep class androidx.appcompat.widget.SearchView { <init>(...); } + +# Never inline methods, but allow shrinking and obfuscation. +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.appcompat.widget.AppCompatTextViewAutoSizeHelper$Impl* { + <methods>; +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce374cae1c45b6522c38367d75fdd232b4d13fc4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/public.txt @@ -0,0 +1,369 @@ +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Theme_AppCompat +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseContentDescription +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeTheme +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr alertDialogStyle +attr alertDialogTheme +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr borderlessButtonStyle +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonGravity +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr checkboxStyle +attr checkedTextViewStyle +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr commitIcon +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr customNavigationLayout +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableSize +attr drawerArrowStyle +attr dropDownListViewStyle +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr emojiCompatEnabled +attr firstBaselineToTopHeight +attr fontFamily +attr fontVariationSettings +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr isLightTheme +attr itemPadding +attr lastBaselineToBottomHeight +attr layout +attr lineHeight +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maxButtonHeight +attr measureWithLargestChild +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr overlapAnchor +attr paddingEnd +attr paddingStart +attr panelBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showText +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr state_above_anchor +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +layout support_simple_spinner_dropdown_item +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr textLocale +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr track +attr trackTint +attr trackTintMode +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowNoTitle diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..b1b134ee51fbfb2b3464a6c372b3f971d92c0974 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..da7ee295c993b43e8fb6b625c1fa20d53a149ca2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_in.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:fromAlpha="0.0" android:toAlpha="1.0" + android:duration="@android:integer/config_mediumAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..c81b39a9b130b6735dc6aa88e204c671d68ec804 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_fade_out.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:fromAlpha="1.0" android:toAlpha="0.0" + android:duration="@android:integer/config_mediumAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_grow_fade_in_from_bottom.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_grow_fade_in_from_bottom.xml new file mode 100644 index 0000000000000000000000000000000000000000..79d02d44ca62c547fe61a481e8746125cb00471b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_grow_fade_in_from_bottom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/res/anim/fade_in.xml +** +** Copyright 2014, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale android:interpolator="@android:anim/decelerate_interpolator" + android:fromXScale="0.9" android:toXScale="1.0" + android:fromYScale="0.9" android:toYScale="1.0" + android:pivotX="50%" android:pivotY="100%" + android:duration="@integer/abc_config_activityDefaultDur" /> + <alpha android:interpolator="@android:anim/decelerate_interpolator" + android:fromAlpha="0.0" android:toAlpha="1.0" + android:duration="@integer/abc_config_activityShortDur" /> +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..91664da17ee4089835a4f5492a4321d64cc05b9e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_enter.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:shareInterpolator="false" > + <alpha android:fromAlpha="0.0" android:toAlpha="1.0" + android:interpolator="@android:anim/decelerate_interpolator" + android:duration="@integer/abc_config_activityShortDur" /> +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..db7e8073a84ac1b4b872c3b7466da0a3a6bb1ee2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_popup_exit.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:shareInterpolator="false" > + <alpha android:fromAlpha="1.0" android:toAlpha="0.0" + android:interpolator="@android:anim/decelerate_interpolator" + android:duration="@integer/abc_config_activityShortDur" /> +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_shrink_fade_out_from_bottom.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_shrink_fade_out_from_bottom.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a23cd2025a2033b75e4ed307f3a7aa34cd02f1e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_shrink_fade_out_from_bottom.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2014 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale android:interpolator="@android:anim/decelerate_interpolator" + android:fromXScale="1.0" android:toXScale="0.9" + android:fromYScale="1.0" android:toYScale="0.9" + android:pivotX="50%" android:pivotY="100%" + android:duration="@integer/abc_config_activityDefaultDur" /> + <alpha android:interpolator="@android:anim/decelerate_interpolator" + android:fromAlpha="1.0" android:toAlpha="0.0" + android:duration="@integer/abc_config_activityShortDur" /> +</set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_bottom.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_bottom.xml new file mode 100644 index 0000000000000000000000000000000000000000..1afa8febc526960f8125ff4204c6bc069a187b54 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_bottom.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:fromYDelta="50%p" android:toYDelta="0" + android:duration="@android:integer/config_mediumAnimTime"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_top.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_top.xml new file mode 100644 index 0000000000000000000000000000000000000000..ab824f2e4acb8fb32931ea8b9c27df0e8fbe533b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_in_top.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:fromYDelta="-50%p" android:toYDelta="0" + android:duration="@android:integer/config_mediumAnimTime"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_bottom.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_bottom.xml new file mode 100644 index 0000000000000000000000000000000000000000..b309fe89c64157258e11f7c5672ffce1c6977042 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_bottom.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/accelerate_interpolator" + android:fromYDelta="0" android:toYDelta="50%p" + android:duration="@android:integer/config_mediumAnimTime"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_top.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_top.xml new file mode 100644 index 0000000000000000000000000000000000000000..e84d1c7fb6eb6de28fde7ad0c474fb12ce3ac7b3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_slide_out_top.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/accelerate_interpolator" + android:fromYDelta="0" android:toYDelta="-50%p" + android:duration="@android:integer/config_mediumAnimTime"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..134d9d7e00f9f7849b5245e5b9481d834e668ad3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_enter.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:interpolator/decelerate_quad" + android:fromAlpha="0.0" android:toAlpha="1.0" + android:duration="@integer/config_tooltipAnimTime" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..67f6af808ec8c994433d28a33798318e660bed4e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/abc_tooltip_exit.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:interpolator/accelerate_quad" + android:fromAlpha="1.0" android:toAlpha="0.0" + android:duration="@integer/config_tooltipAnimTime" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d892c16d7cbd08756a4cc0ec7ce945c48d6078f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:duration="166" + android:propertyName="pathData" + android:valueFrom="M -7.0,-7.0 l 14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l -14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,-14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueTo="M 0.0,-0.05 l 0.0,0.0 c 0.02761423749,0.0 0.05,0.02238576251 0.05,0.05 l 0.0,0.0 c 0.0,0.02761423749 -0.02238576251,0.05 -0.05,0.05 l 0.0,0.0 c -0.02761423749,0.0 -0.05,-0.02238576251 -0.05,-0.05 l 0.0,0.0 c 0.0,-0.02761423749 0.02238576251,-0.05 0.05,-0.05 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueType="pathType" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="1.0" + android:interpolator="@android:interpolator/linear"/> + <objectAnimator + android:duration="33" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..57fc365779d09de538c15e506f4b3d0cc489dd49 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="200" + android:propertyName="pathData" + android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z" + android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z" + android:valueType="pathType" + android:interpolator="@android:interpolator/linear"/> + <objectAnimator + android:duration="300" + android:propertyName="pathData" + android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z" + android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -5.0,-5.00001525879 -5.0,-5.00001525879 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 3.58590698242,3.58601379395 3.58590698242,3.58601379395 c 0.0,0.0 7.58590698242,-7.58601379395 7.58590698242,-7.58601379395 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -9.0,9.00001525879 -9.0,9.00001525879 Z" + android:valueType="pathType" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="0.0" + android:interpolator="@android:interpolator/linear"/> + <objectAnimator + android:duration="33" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6ef064257953e6cfbf2f3fe1bc54158a32ab779 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="200" + android:propertyName="scaleX" + android:valueFrom="0.2" + android:valueTo="0.18" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleX" + android:valueFrom="0.18" + android:valueTo="0.2" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="200" + android:propertyName="scaleY" + android:valueFrom="0.2" + android:valueTo="0.18" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleY" + android:valueFrom="0.18" + android:valueTo="0.2" + android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f13aafd8f49df360938fe2d01e9910387168a54 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="pathData" + android:valueFrom="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueTo="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueType="pathType" + android:interpolator="@android:interpolator/linear"/> + <objectAnimator + android:duration="333" + android:propertyName="pathData" + android:valueFrom="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueTo="M -7.0,-7.0 l 14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l -14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,-14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:valueType="pathType" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="133" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="0.0" + android:interpolator="@android:interpolator/linear"/> + <objectAnimator + android:duration="33" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..188e706732d59a6aff1ec83f99acd64a3c8b669a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:duration="166" + android:propertyName="pathData" + android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -5.0,-5.00001525879 -5.0,-5.00001525879 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 3.58590698242,3.58601379395 3.58590698242,3.58601379395 c 0.0,0.0 7.58590698242,-7.58601379395 7.58590698242,-7.58601379395 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -9.0,9.00001525879 -9.0,9.00001525879 Z" + android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 0.0,1.42500305176 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z" + android:valueType="pathType" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1" /> + <set android:ordering="sequentially" > + <objectAnimator + android:duration="133" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="1.0" + android:interpolator="@android:interpolator/linear" /> + <objectAnimator + android:duration="33" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0" /> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b63d01a9394649538bd4dc3444bf97f4aea745f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleX" + android:valueFrom="0.2" + android:valueTo="0.18" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1" /> + <objectAnimator + android:duration="333" + android:propertyName="scaleX" + android:valueFrom="0.18" + android:valueTo="0.2" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1" /> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleY" + android:valueFrom="0.2" + android:valueTo="0.18" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1" /> + <objectAnimator + android:duration="333" + android:propertyName="scaleY" + android:valueFrom="0.18" + android:valueTo="0.2" + android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1" /> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..22bb845288c5a41584f450d30925c190ad370a4d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="183" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="1.4" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleX" + android:valueFrom="1.4" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleX" + android:valueFrom="0.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="183" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="1.4" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleY" + android:valueFrom="1.4" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleY" + android:valueFrom="0.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..51154c1b986691fe9edc084826c1dca78a6455f2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="183" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="0.9" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleX" + android:valueFrom="0.9" + android:valueTo="0.5" + android:valueType="floatType" + android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleX" + android:valueFrom="0.5" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"/> + </set> + <set + android:ordering="sequentially"> + <objectAnimator + android:duration="183" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="0.9" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleY" + android:valueFrom="0.9" + android:valueTo="0.5" + android:valueType="floatType" + android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"/> + <objectAnimator + android:duration="300" + android:propertyName="scaleY" + android:valueFrom="0.5" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..c889ae69979808e148b7fd7ecd16efd577376220 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="183" + android:propertyName="strokeWidth" + android:valueFrom="2.0" + android:valueTo="2.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="strokeWidth" + android:valueFrom="2.0" + android:valueTo="18.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="300" + android:propertyName="strokeWidth" + android:valueFrom="18.0" + android:valueTo="2.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0b9d7d3f94e70802d6cf7e0959cb4daf45d71d7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleX" + android:valueFrom="0.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleX" + android:valueFrom="0.0" + android:valueTo="1.5" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="316" + android:propertyName="scaleX" + android:valueFrom="1.5" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleY" + android:valueFrom="0.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleY" + android:valueFrom="0.0" + android:valueTo="1.5" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="316" + android:propertyName="scaleY" + android:valueFrom="1.5" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..3269f8bd609ffce627ed0f1653acb9295d3a68fc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="0.5" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleX" + android:valueFrom="0.5" + android:valueTo="0.9" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="316" + android:propertyName="scaleX" + android:valueFrom="0.9" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="0.5" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="16" + android:propertyName="scaleY" + android:valueFrom="0.5" + android:valueTo="0.9" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="316" + android:propertyName="scaleY" + android:valueFrom="0.9" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..021583508e6b34e789cce2769a363e98d25af7f2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <set android:ordering="sequentially"> + <objectAnimator + android:duration="166" + android:propertyName="strokeWidth" + android:valueFrom="2.0" + android:valueTo="18.0" + android:valueType="floatType" + android:interpolator="@interpolator/btn_radio_to_on_mtrl_animation_interpolator_0"/> + <objectAnimator + android:duration="16" + android:propertyName="strokeWidth" + android:valueFrom="18.0" + android:valueTo="2.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + <objectAnimator + android:duration="316" + android:propertyName="strokeWidth" + android:valueFrom="2.0" + android:valueTo="2.0" + android:valueType="floatType" + android:interpolator="@interpolator/fast_out_slow_in"/> + </set> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..f5585e3df5dbdb407782378c08264cae503c4198 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<!-- Used for the text of a borderless colored button. --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" + android:color="?android:attr/textColorSecondary"/> + <item android:color="?attr/colorAccent"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..468b155d3fab8c45e1627172a5a77a9d6333f6ec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used for the text of a borderless colored button. --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?android:attr/textColorSecondary" android:alpha="?android:attr/disabledAlpha"/> + <item android:color="?attr/colorAccent"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..74170d61d0733a42c21ee1a610a99dc7ce46e646 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_btn_colored_text_material.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used for the text of a bordered colored button. --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" + android:alpha="?android:attr/disabledAlpha" + android:color="?android:attr/textColorPrimary" /> + <item android:color="?android:attr/textColorPrimaryInverse" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_color_highlight_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_color_highlight_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d536118908b33639afd1b8894392fbe2ced30b1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_color_highlight_material.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" + android:state_enabled="true" + android:alpha="@dimen/highlight_alpha_material_colored" + android:color="?android:attr/colorControlActivated" /> + <item android:color="?android:attr/colorControlHighlight" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_btn_checkable.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_btn_checkable.xml new file mode 100644 index 0000000000000000000000000000000000000000..e82eff48305242c8d64d6c4edb4fb76aad05e6da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_btn_checkable.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016§ The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated"/> + <item android:color="?attr/colorControlNormal"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_default.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_default.xml new file mode 100644 index 0000000000000000000000000000000000000000..abe38804b6f9858f7b52a472f5bb8a5c68376f4f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_default.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/> + <item android:state_focused="true" android:color="?attr/colorControlActivated"/> + <item android:state_pressed="true" android:color="?attr/colorControlActivated"/> + <item android:state_activated="true" android:color="?attr/colorControlActivated"/> + <item android:state_selected="true" android:color="?attr/colorControlActivated"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated"/> + <item android:color="?attr/colorControlNormal"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_edittext.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_edittext.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e05e07d5faf8c095e438e64568a6baa5499366d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_edittext.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/> + <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_seek_thumb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_seek_thumb.xml new file mode 100644 index 0000000000000000000000000000000000000000..4fc9626f1cf941927d7ecc96faf8275eab79dd00 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_seek_thumb.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?attr/colorControlActivated" android:alpha="?android:attr/disabledAlpha"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_spinner.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_spinner.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e05e07d5faf8c095e438e64568a6baa5499366d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_spinner.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/> + <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_switch_track.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_switch_track.xml new file mode 100644 index 0000000000000000000000000000000000000000..e663772e7887b1814cd9b31624fbf9a0a764c403 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color-v23/abc_tint_switch_track.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="?android:attr/colorForeground" android:alpha="0.1"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated" android:alpha="0.3"/> + <item android:color="?android:attr/colorForeground" android:alpha="0.3"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..e0160766e08cf3988b3b8804ac2fd9879c3d706c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_accelerated="false" android:color="@color/background_material_dark" /> + <item android:color="@android:color/transparent" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..290faf1a0e0ab88ba0c2a5c6172600feb0a5e794 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_accelerated="false" android:color="@color/background_material_light" /> + <item android:color="@android:color/transparent" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_borderless_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_borderless_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..1480046683779e2d23d31e546b471bbdbc20e485 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_borderless_text_material.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used for the text of a borderless colored button. --> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" + app:alpha="?android:attr/disabledAlpha" + android:color="?android:attr/textColorSecondary"/> + <item android:color="?attr/colorAccent"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..897a3f75fda1313c1891399eb77adb28e74daa11 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_btn_colored_text_material.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used for the text of a bordered colored button. --> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" + app:alpha="?android:attr/disabledAlpha" + android:color="?android:attr/textColorPrimary" /> + <item android:color="?android:attr/textColorPrimaryInverse" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..fe868721640b880c3d606920166e1bb6b45d6c24 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_dark.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/hint_pressed_alpha_material_dark" + android:color="@color/foreground_material_dark" /> + <item android:alpha="@dimen/hint_alpha_material_dark" + android:color="@color/foreground_material_dark" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..1bef5afebf50ea4ebd71c1c367f537536a820c29 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_hint_foreground_material_light.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/hint_pressed_alpha_material_light" + android:color="@color/foreground_material_light" /> + <item android:alpha="@dimen/hint_alpha_material_light" + android:color="@color/foreground_material_light" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..724c2557dad350bc20ebf9e4c8b994db4321fb6b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_dark"/> + <item android:color="@color/bright_foreground_material_dark"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..7395e680c6563b4b0361e9456ac9c2f654aadd7b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_disable_only_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_light"/> + <item android:color="@color/bright_foreground_material_light"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..7d66d02d637c4cf1757966198d40ce92c5591a2f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_dark"/> + <item android:color="@color/primary_text_default_material_dark"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..105b643ddb423f0a4c337bca48696d4779c7b8ea --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_primary_text_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_light"/> + <item android:color="@color/primary_text_default_material_light"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_search_url_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_search_url_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..0631d5d4ca1445752afa1a79d9b39fc648f18714 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_search_url_text.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/> + <item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/> + <item android:color="@color/abc_search_url_text_normal"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..6399b1d028fbd9d0d0fb862ce00bba26bbac7666 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_dark"/> + <item android:color="@color/secondary_text_default_material_dark"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..87c015a4cd68035eb8f5a8e1382b151cccff4ae7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_secondary_text_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_light"/> + <item android:color="@color/secondary_text_default_material_light"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_btn_checkable.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_btn_checkable.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c663f6b92b0f482cbfebf3e865219fdc98714c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_btn_checkable.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated"/> + <item android:color="?attr/colorControlNormal"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_default.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_default.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d7c391e39d4cc21429977e6ef37da61222d2caa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_default.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/> + <item android:state_focused="true" android:color="?attr/colorControlActivated"/> + <item android:state_pressed="true" android:color="?attr/colorControlActivated"/> + <item android:state_activated="true" android:color="?attr/colorControlActivated"/> + <item android:state_selected="true" android:color="?attr/colorControlActivated"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated"/> + <item android:color="?attr/colorControlNormal"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_edittext.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_edittext.xml new file mode 100644 index 0000000000000000000000000000000000000000..536d77f09f644430af79067b1b61e7c9062678bd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_edittext.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" + app:alpha="?android:disabledAlpha"/> + <item android:state_pressed="false" android:state_focused="false" + android:color="?attr/colorControlNormal"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_seek_thumb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_seek_thumb.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb537882f0c7d44fbbb78caa5b1ab6073c76843c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_seek_thumb.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?attr/colorControlActivated" app:alpha="?android:attr/disabledAlpha"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_spinner.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_spinner.xml new file mode 100644 index 0000000000000000000000000000000000000000..44333dd1e3297b94f2503859e68804d709d92465 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_spinner.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/> + <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/> + <item android:color="?attr/colorControlActivated"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_switch_track.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_switch_track.xml new file mode 100644 index 0000000000000000000000000000000000000000..22322f8d8631bebb5c39b3e5a4dc317e871d5367 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/abc_tint_switch_track.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:state_enabled="false" android:color="?android:attr/colorForeground" app:alpha="0.1"/> + <item android:state_checked="true" android:color="?attr/colorControlActivated" app:alpha="0.3"/> + <item android:color="?android:attr/colorForeground" app:alpha="0.3"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..6153382c7c503e35d5ef4e3e7d51699ff0f3aed4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_dark"/> + <item android:color="@color/switch_thumb_normal_material_dark"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..94d711482138c30504e0ffe005144eef8543f44c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/color/switch_thumb_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_light"/> + <item android:color="@color/switch_thumb_normal_material_light"/> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4d9f861f88895c73c89ed02f8aba3241f5d646fa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..99110085fe9826bf67329ebee4921a120b351f6a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..69ff9dde3a8ac9de1581162da65d33468dfeb500 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..9218981b4f2ebfa185eea884cb7fb29620aed83f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..a58857635f2e57d1c86cde7b4e4676caae1e3ca7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4657a25ff54a84d863e56920e74eb9d215be288a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000000000000000000000000000000000000..3fd617bf9280439d1a086b864933f8d2b75a43d0 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..2264398234bfa55246c3d2fdaf9ea02b3cad9820 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..65ccd8f410769dbe216afdc9c483e088ebb85c98 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2264a89ac3e59ab13e079b888b62ac7c396658f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c09ec90e0f3508e510730a50aa1284eb49a9a485 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..62fbd2cb505e4c3fc04166b55e19d61efe5dd7d1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..2f6ef9160a8eb6e764e814794e8479f6eb4959c5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..863ce95f61c5025bc85294fd44a6cade4ab4ed42 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..b6d467774e7e257759718a341f7e751a3f64dbef Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..60081db881457e65ecfead8a6155594c0d9e34da Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..abb52c975668dc8e79590aaedabcc9b8f9b67b4f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8451aab1b5d5520372df0729b39e09358a86ae Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..d8d6d7f602f306068c187c1b3ecbf60427d4b995 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..30c1c1e5f1ba3bbb538e02c0423b6e2bd3f10ab3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1cdadbffab67ca8b84c80c341471a7dc885757 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ffb0096fdc6fbb5dc6678a84fa67e0817ffac0cf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..e54950e9d8db5e30dd301ae9a5d3fcfeecbd08fc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..0da5b1d1e76f2894a114fd95e6816fd38b740eaa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..f8063b23b4622bb49aaecc37650479eedf0ad283 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4b0b10a7a3ecdc06906390be124911d3339dc4d1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..d3556a814fdff36a4f88adb203533aa3fe06e8d1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..183c9aced47e192d3abf8aab92e490acc31cc851 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..9b67079ad6dcc48464c82b27a6853d4560458404 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5b13bc17add7ed96d45156417cdaedc2e75b41b1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5440b1a4d3c99aaec705cd5d0c500746a9664af8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..05d6920b8455b2cbddfa0124a652b6a539305d45 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..6282df4e69ecd67d5079977f97357219817deb2d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ddbec8b1867095bfa9928730af65228b73caf3e3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c888ee0578f28f8f58c01d7b7980b4ef9c807ecf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..588161e6a035f565ceffa0f15bde51ede51d61c2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf976d2bc74347258bf601aa9a5e9237a9ec554 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0f0b38f4675558f5eff0369f7850a06b46cee2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..fa0ed8fe9527428ef714497d01abdf43291440da Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9fcbcbfe5edb62e193dc338a2555129872aabd Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..8e6c2717ce6bbef162e0068d4b4af5ab17815143 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..9f0d2c82321f31bba14434d1d2348e2f66ddda19 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..6e18d40d7905d5b1711303edf1b3c5879ad5616a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000000000000000000000000000000000000..d0a41a51efc727f082aacd3826137e30a68bc216 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000000000000000000000000000000000000..bebb1e2119de3515a111755c2c5b7ae7976fb116 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..038e000864ac899e314d228c280b2bc546c194bf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..6086f9c3829a5fc31fc6825779b5e55b20c125a0 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2264a89ac3e59ab13e079b888b62ac7c396658f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..addb54a22666ca813e2c82829dda42405841e616 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5fcd5b207a0fe14656d54c78a01b42b1490f3c56 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..251b98913d09ee4613e8926d4592a7da1b98173a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..01efec045b9e3ba3aafdf54e3ecf9f952a2268a6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d1b61708b53fb5aa09cc79a5f9bb156608f8bf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..10851f6c87c0db0f2fc83e71e2fa99be1b49e704 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..15c1ebb561cc907e4e13e014a7c21d41b716aab5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5f55cd5539ce16dad8251dab2be5dceeb43a73a5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..1bff7fa3ba27fecd100b887b2791ac71c6783efd Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..9280f82960aa85e103397360795d8252678d3c2d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000000000000000000000000000000000000..21bffc645a054f6331a6484e861f945f135b73e5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..88781298a2748fd7bf2a4a1e657c2d6172203823 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..869c8b0885e5b279be0788771163aa6473d63b71 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ed75cb8128cbdab3d357bffdc26ad276e927dcd4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8460f580994ffbb8b8457d2b359ac82d5a6108 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..12b0a79c588fdb90b3a4a2a55b654700bf726453 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..e243fd8f8e096ff57784ceafcf41302a57bf63b6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..55b8b363f10826015e97c2bd590000775fecd3fc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..e6eff09ec917dffba539aa5cb30b7567440cb093 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..3ffa25193cbd56b3b6e44097efe5e9d881be0c16 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5d7ad2f13f8a97cabed50db58cc708913bea571f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..0c766f30dba513e013795c56d1a28134cef9f92b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4f66d7adce19a0ae2471aebead88d74abacb0ac9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_action_bar_item_background_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_action_bar_item_background_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..595c56c6a91555c1fdae2ed6b0d689de4c01f4d6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_action_bar_item_background_material.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="?android:attr/colorControlHighlight"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_btn_colored_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_btn_colored_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..10251aadc7cf433ffd71a292fb8cc3615fbdae14 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_btn_colored_material.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/abc_button_inset_horizontal_material" + android:insetTop="@dimen/abc_button_inset_vertical_material" + android:insetRight="@dimen/abc_button_inset_horizontal_material" + android:insetBottom="@dimen/abc_button_inset_vertical_material"> + <ripple android:color="?android:attr/colorControlHighlight"> + <item> + <!-- As we can't use themed ColorStateLists in L, we'll use a Drawable selector which + changes the shape's fill color. --> + <selector> + <item android:state_enabled="false"> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/abc_control_corner_material"/> + <solid android:color="?android:attr/colorButtonNormal"/> + <padding android:left="@dimen/abc_button_padding_horizontal_material" + android:top="@dimen/abc_button_padding_vertical_material" + android:right="@dimen/abc_button_padding_horizontal_material" + android:bottom="@dimen/abc_button_padding_vertical_material"/> + </shape> + </item> + <item> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/abc_control_corner_material"/> + <solid android:color="?android:attr/colorAccent"/> + <padding android:left="@dimen/abc_button_padding_horizontal_material" + android:top="@dimen/abc_button_padding_vertical_material" + android:right="@dimen/abc_button_padding_horizontal_material" + android:bottom="@dimen/abc_button_padding_vertical_material"/> + </shape> + </item> + </selector> + </item> + </ripple> +</inset> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_dialog_material_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_dialog_material_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ef438bbfdd83a6d720384fe5d8fcadf1fa82b52 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_dialog_material_background.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="16dp" + android:insetTop="16dp" + android:insetRight="16dp" + android:insetBottom="16dp"> + <shape android:shape="rectangle"> + <corners android:radius="?attr/dialogCornerRadius" /> + <solid android:color="@android:color/white" /> + </shape> +</inset> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_edit_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_edit_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..d98b0085bdf8f327f60ca57ea753191ff1ec5f0a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_edit_text_material.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material" + android:insetRight="@dimen/abc_edit_text_inset_horizontal_material" + android:insetTop="@dimen/abc_edit_text_inset_top_material" + android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"> + <selector> + <item android:state_enabled="false"> + <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha" + android:tint="?attr/colorControlNormal" + android:alpha="?android:attr/disabledAlpha"/> + </item> + <item android:state_pressed="false" android:state_focused="false"> + <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha" + android:tint="?attr/colorControlNormal"/> + </item> + <item> + <nine-patch android:src="@drawable/abc_textfield_activated_mtrl_alpha" + android:tint="?attr/colorControlActivated"/> + </item> + </selector> +</inset> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_list_divider_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_list_divider_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ed2121d89886f9da39115e8324fe7e56b59b4f9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v21/abc_list_divider_material.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:tint="?android:attr/colorForeground"> + <solid android:color="#1f000000" /> + <size + android:height="1dp" + android:width="1dp" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v23/abc_control_background_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v23/abc_control_background_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b540390a2f56a9c41dbc54a80234b8bb6cf9a63 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-v23/abc_control_background_material.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/abc_color_highlight_material" + android:radius="20dp" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-watch-v20/abc_dialog_material_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-watch-v20/abc_dialog_material_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..242761b30509608a853ae261832d5186e01c25f3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-watch-v20/abc_dialog_material_background.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="@android:color/white" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..6284eaaa17d3a168ee64a94ef5e7aefec7a4d98b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..49025208b6057654c3a15f0b2a5d46a016553260 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..59a683ab60d66781b7d5135885ec5565c2e9b6af Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..03bf49cc5ea2b816a7041067e148dd6ff28fbe55 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..342323b4b505f28eed4191286a3070f3a99de049 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000000000000000000000000000000000000..1d29f9a6c73c3a3706fa08e06391deb234e35f04 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000000000000000000000000000000000000..92b43ba0029c34ff73ff0e93fd5e1e3f1594cd48 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..600178a98a9887e7f1977b541b9195cbb02d666f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..ca303fd6ecf6c06df8c32617c8a4974a5eb1da2f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2264a89ac3e59ab13e079b888b62ac7c396658f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..67c25aefff272ed6716a00fe80012ded61b4d1f2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..17c34a1a93cf6e29559cd5fdb0db69b8c9adfbec Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..988548a10365b25a52a3faa9f906569a80d52dd1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..15fcf6a3220557b772cf6c3c05ef8d521a97f124 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..65275b38c73437c10cf4378a8313f2aafbd3e04e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ee95ed4e2f2b7d3fda2309a552a102351e0ad7b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..99cf6de8b7dc12e6b8c30417891130bb4a98fae9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..d8cc7d3c5166a6d0bc8b5364c331988d0227aaa1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..c08ec90ff37523f1507de20291f2a01bef9e8667 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..0486af199208cee7f364a19c11695142c39bf879 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000000000000000000000000000000000000..20079d8ca008ad6bae43458def8a1c4047ac452e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..fb4e42aaa58e030151eed32bbf7d98b2215bc0b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..44b9a147b2cfb1e4b0901d5394cce05df7cfa727 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..bcf6b7f059ff374cf2bcae65ad8670f5a76f5346 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..7c56175a17eb328ae6caf14012a8802cea768ec4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..2242d2f94b9210ee15659529b987e57aedb94f87 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..529d5504d36ebf3726204630a2ea3a8078dda413 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..1f8cc88c5202103092d3296142d19494aa20da13 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..6c8f6a433fce96873e4cd6c1ad09e7da4cc23970 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..8ff3a8304c19cfe6be8f848ed5483c661a069658 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e693a7b81589e21048a5e7a8b28055cf48118a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..819171ad6505fc94b6234fd8de11803097cac12f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4def8c8fabd1f5f52083445c51eee12b238cb606 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4eae28fde7ed2f69348492f8b76f0fccad273212 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..d934b60dc4e14e15b5efa834a06b612f538282ea Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..8c82ec3d7a19e756ed5ad582c133b1f45964ce57 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..8fc0a9b8793ffdccc2b4e4c6eeb534bd4e5b7355 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..3038d70fcb5529492d89338320c9200ae246299a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c079867b379d6e7f3599e454e3516d564f131fc3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000000000000000000000000000000000000..3b9dc7c11c12eaeca801144971ab6a538148815d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d2f3294f543553eb8bed804b56edae6a47eaf7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..fe826b7cac181387de16789d5a0f5b4b69efd25f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..987b2bc25a23e661c3fad45b659cbf95e267d1dc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..8b050e8551482e4bfba482e20d18449f0d71c380 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000000000000000000000000000000000000..00e370a1a98a123fd943cd6f318bfd731b06aaad Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..719c7b5ebf87db3bde3e5c12ab3b433cbc0e0da8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..75bd5803fd0ba79a5573238d5d7ed6b25a0828f7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3b147a6cc30e76b77cc298df539270762350c2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000000000000000000000000000000000000..224a08157f83679a73e8f3f466f18b40db936a5e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ceeac06db97d6050743a7b368e3047ff2266c1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4727a7d6c89cc777054da63d8e0eb6c37851406a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..4657815e4fa1561b97ea73ec1ba990a4da58e125 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa0a3441e98499b18a5f2ac4d57632ceaf51629 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000000000000000000000000000000000000..6178c45ca80743070281ed72c75bc64c7b31c758 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..3d9b96107d0051273ed97180086ce4a5c89a7012 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..56a69df154e0b6e407bb99e0fb9ab6c25b10a96b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..79240008160bf53d317d5075096022617d65b4d3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5abaad1a9af2dca7f34d2821e93d24d6eb241e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..eeb74c8693ec012e9fef19a68979c97e57d7185e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a87904d387debb3790a58d40956f2ac96bf840 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..de001850e2c4d5bc474ecac2657c633aa843470f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..d186a5bb42235ea9f9880425105faac6f8bed746 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..4d3d3a4d05bf3af555900fe405607edd22ab9765 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..c5acb84f0447806c5c4bb3c0b1461a01c008aed1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..30328ae1d2e01163f15a2f10fa817c46bf88417b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..bc21142c1be2901a8ad02edceb072fbbde38ba6e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..e40fa4e101029ba3fcd6c8eeb54bb37f91b6b7df Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..4e18de21a61fb762467d1fa2552baf5b8081d3b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa326654ef90ee5b1db23fdf4b1f21dcd6fc9f5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000000000000000000000000000000000000..c11cb2ec658905996d5a1ecb86e8d4c6caf106b0 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000000000000000000000000000000000000..639e6cb41b448bc860076ee04d03183dfe7014c1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000000000000000000000000000000000000..355d5b7758d3d16d00f528fb6ce9d5cccf3b2303 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000000000000000000000000000000000000..7dfaf7cf355f778591d6c076cef0ce1df2bef054 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000000000000000000000000000000000000..fe8f2e40e362549396ce0df05e6058af0b620b9b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..752cb5798d793c38eb228db469312221076a4fcd Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..40255c3e1bc280f85699ccfd80e74efcd2837285 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000000000000000000000000000000000000..0210ad178627d657d9517147b92fd6d696c9fb00 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..565f0b29436bd8563bfca54f33dddefa49c74294 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png new file mode 100644 index 0000000000000000000000000000000000000000..894c734214f7d58c2dbd70d6bf4fd736e38f71ee Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_borderless_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_borderless_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..f3894600ba0f74374133924f2fa79c30f5d4ef83 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_borderless_material.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_focused="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/> + <item android:state_pressed="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/> + <item android:drawable="@android:color/transparent"/> +</selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..f6e938fe4770b7e0f70bcb81336948870a05c122 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" android:drawable="@drawable/abc_btn_check_to_on_mtrl_015" /> + <item android:drawable="@drawable/abc_btn_check_to_on_mtrl_000" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce7a9682f43239aebf2c2029addf3ef348100e3f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_check_material_anim.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-selector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + <item + android:id="@+id/checked" + android:state_checked="true" + android:drawable="@drawable/btn_checkbox_checked_mtrl" /> + <item + android:id="@+id/unchecked" + android:drawable="@drawable/btn_checkbox_unchecked_mtrl" /> + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/checked" + android:drawable="@drawable/btn_checkbox_unchecked_to_checked_mtrl_animation" /> + <transition + android:fromId="@+id/checked" + android:toId="@+id/unchecked" + android:drawable="@drawable/btn_checkbox_checked_to_unchecked_mtrl_animation" /> +</animated-selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_colored_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_colored_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec93b8b6bc445ef60736881f496a6475f6781414 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_colored_material.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used as the canonical button shape. --> + +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/abc_btn_default_mtrl_shape" /> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_default_mtrl_shape.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_default_mtrl_shape.xml new file mode 100644 index 0000000000000000000000000000000000000000..c50d4b10f007b10e06bb3e44a775f52a1b0e01e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_default_mtrl_shape.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Used as the canonical button shape. --> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/abc_button_inset_horizontal_material" + android:insetTop="@dimen/abc_button_inset_vertical_material" + android:insetRight="@dimen/abc_button_inset_horizontal_material" + android:insetBottom="@dimen/abc_button_inset_vertical_material"> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/abc_control_corner_material" /> + <solid android:color="@android:color/white" /> + <padding android:left="@dimen/abc_button_padding_horizontal_material" + android:top="@dimen/abc_button_padding_vertical_material" + android:right="@dimen/abc_button_padding_horizontal_material" + android:bottom="@dimen/abc_button_padding_vertical_material" /> + </shape> +</inset> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e9f9cf3741b47a02621ff22e414cbfe506dc5c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" android:drawable="@drawable/abc_btn_radio_to_on_mtrl_015" /> + <item android:drawable="@drawable/abc_btn_radio_to_on_mtrl_000" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..64cebc28627137da533397555814d34e8ce8d027 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_btn_radio_material_anim.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-selector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + <item + android:id="@+id/on" + android:state_checked="true" + android:drawable="@drawable/btn_radio_on_mtrl" /> + <item + android:id="@+id/off" + android:drawable="@drawable/btn_radio_off_mtrl" /> + <transition + android:fromId="@+id/on" + android:toId="@+id/off" + android:drawable="@drawable/btn_radio_on_to_off_mtrl_animation" /> + <transition + android:fromId="@+id/off" + android:toId="@+id/on" + android:drawable="@drawable/btn_radio_off_to_on_mtrl_animation" /> +</animated-selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_internal_bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_internal_bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..9faf60ac61614e7c6d86d6977bf523c698a03d11 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_internal_bg.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + A solid rectangle so that we can use a PorterDuff multiply color filter to tint this +--> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="@android:color/white" /> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_top_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_top_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..0922395a6084e6a8bcd1efcaf077676a8611bd82 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_cab_background_top_material.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This is a fake drawable so that we can refer to the drawable ID --> +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="@android:color/white"/> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_dialog_material_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_dialog_material_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..978565bc539ab0babff090e83f335be7c0386b56 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_dialog_material_background.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="16dp" + android:insetTop="16dp" + android:insetRight="16dp" + android:insetBottom="16dp"> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/abc_dialog_corner_radius_material" /> + <solid android:color="@android:color/white" /> + </shape> +</inset> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_edit_text_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_edit_text_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..46c4e912003761b1380f57617660814e03474861 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_edit_text_material.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material" + android:insetRight="@dimen/abc_edit_text_inset_horizontal_material" + android:insetTop="@dimen/abc_edit_text_inset_top_material" + android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"> + + <selector> + <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> + <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> + <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/> + </selector> + +</inset> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_ab_back_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_ab_back_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..5a895239c97db7cfc55d0f8d4539b91012848147 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_ab_back_material.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:autoMirrored="true" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z" + android:fillColor="@android:color/white"/> +</vector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..68547eb7dc7dbf1e57319b1da0410b839a9337ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + android:tint="?attr/colorControlNormal" + android:autoMirrored="true"> + + <group + android:name="arrow" + android:rotation="90.0" + android:pivotX="12.0" + android:pivotY="12.0"> + <path android:fillColor="@android:color/black" android:pathData="M7,14 L12,9 L17,14 L7,14 Z" /> + <path android:pathData="M0,0 L24,0 L24,24 L0,24 L0,0 Z" /> + </group> +</vector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_clear_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_clear_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6d106b76e8375896555acd65498ca0e71d7eab7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_clear_material.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M19,6.41L17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12z" + android:fillColor="@android:color/white"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_go_search_api_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_go_search_api_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c8811913cd3094f3c572e72d8cb62289adfe01b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_go_search_api_material.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M10,6l-1.4,1.4 4.599999,4.6 -4.599999,4.6 1.4,1.4 6,-6z" + android:fillColor="@android:color/white"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..60ebf7655392a838ef6b7d827231d87dfd3674f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml @@ -0,0 +1,21 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector android:autoMirrored="true" android:height="24dp" + android:viewportHeight="24" android:viewportWidth="24" + android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> + <path android:fillColor="#ffffff" android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..592bd60c3703e3e6a29b796e942e7750bc4525c3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml @@ -0,0 +1,21 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector android:autoMirrored="true" android:height="24dp" + android:viewportHeight="24" android:viewportWidth="24" + android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> + <path android:fillColor="#ffffff" android:pathData="M9.64,7.64c0.23,-0.5 0.36,-1.05 0.36,-1.64 0,-2.21 -1.79,-4 -4,-4S2,3.79 2,6s1.79,4 4,4c0.59,0 1.14,-0.13 1.64,-0.36L10,12l-2.36,2.36C7.14,14.13 6.59,14 6,14c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4c0,-0.59 -0.13,-1.14 -0.36,-1.64L12,14l7,7h3v-1L9.64,7.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5 0.5,0.22 0.5,0.5 -0.22,0.5 -0.5,0.5zM19,3l-6,6 2,2 7,-7L22,3z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_overflow_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_overflow_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..1420edd7f1d1fd062d026ce0cc7540d2338d7d75 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_overflow_material.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2S10.9,8 12,8zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,10 12,10zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,16 12,16z" + android:fillColor="@android:color/white"/> +</vector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..540437447d0a2fd1a328e863b1083f34b049072e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml @@ -0,0 +1,25 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z" + android:fillColor="#ffffff"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0de4ae6f31470fb4cde4e6e5c7db6206fc73fa3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml @@ -0,0 +1,25 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z" + android:fillColor="#ffffff"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..597a1b3c5cf5f24affb5cea62f73fc22bdc720b9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml @@ -0,0 +1,25 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92 1.61,0 2.92,-1.31 2.92,-2.92s-1.31,-2.92 -2.92,-2.92z" + android:fillColor="#ffffff"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_search_api_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_search_api_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..b4cba3476f75f2df33388e1141c7b4496e0334f0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_search_api_material.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M15.5,14l-0.8,0l-0.3,-0.3c1,-1.1 1.6,-2.6 1.6,-4.2C16,5.9 13.1,3 9.5,3C5.9,3 3,5.9 3,9.5S5.9,16 9.5,16c1.6,0 3.1,-0.6 4.2,-1.6l0.3,0.3l0,0.8l5,5l1.5,-1.5L15.5,14zM9.5,14C7,14 5,12 5,9.5S7,5 9.5,5C12,5 14,7 14,9.5S12,14 9.5,14z" + android:fillColor="@android:color/white"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_voice_search_api_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_voice_search_api_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..143db558fb992b17cb451a87dd293f75f56dfdb6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ic_voice_search_api_material.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0" + android:tint="?attr/colorControlNormal"> + <path + android:pathData="M12,14c1.7,0 3,-1.3 3,-3l0,-6c0,-1.7 -1.3,-3 -3,-3c-1.7,0 -3,1.3 -3,3l0,6C9,12.7 10.3,14 12,14zM17.299999,11c0,3 -2.5,5.1 -5.3,5.1c-2.8,0 -5.3,-2.1 -5.3,-5.1L5,11c0,3.4 2.7,6.2 6,6.7L11,21l2,0l0,-3.3c3.3,-0.5 6,-3.3 6,-6.7L17.299999,11.000001z" + android:fillColor="@android:color/white"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..72162c222eea5218e4effb8f24b9b5ebc7f7ec7e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_dark.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. --> + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" /> + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" /> + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" /> + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" /> + <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" /> + <item android:drawable="@android:color/transparent" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c180b2ee4819fd4c810b03c6715b7c4ab7bc5aa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_item_background_holo_light.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. --> + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" /> + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_light" /> + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" /> + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" /> + <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" /> + <item android:drawable="@android:color/transparent" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_divider_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_divider_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..6739a82dee22aeb551446842b3bb2638ac273647 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_divider_material.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="#1f000000" /> + <size + android:height="1dp" + android:width="1dp" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..0add58c86ac23a8f09b02e85e0e4986fd0684000 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<transition xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/abc_list_pressed_holo_dark" /> + <item android:drawable="@drawable/abc_list_longpressed_holo" /> +</transition> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c1d3e67821244ccd21e853d2d82ca316b632b63 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<transition xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/abc_list_pressed_holo_light" /> + <item android:drawable="@drawable/abc_list_longpressed_holo" /> +</transition> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..1fb5fc4516db6f0b0becff00fd36f2a0ce203de7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_dark.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:state_window_focused="false" android:drawable="@android:color/transparent" /> + + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. --> + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" /> + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" /> + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" /> + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" /> + <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d24047229b0c3b3cb388a852c5837afc925d004 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_list_selector_holo_light.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:state_window_focused="false" android:drawable="@android:color/transparent" /> + + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. --> + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" /> + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_light" /> + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" /> + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" /> + <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" /> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_indicator_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_indicator_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..97ba1de0f38c1831e950119de7022cac11127ca6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_indicator_material.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Placeholder. The real content is inflated at runtime in AppCompatDrawableManager --> +<layer-list /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..97ba1de0f38c1831e950119de7022cac11127ca6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_material.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Placeholder. The real content is inflated at runtime in AppCompatDrawableManager --> +<layer-list /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_small_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_small_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..97ba1de0f38c1831e950119de7022cac11127ca6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_ratingbar_small_material.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Placeholder. The real content is inflated at runtime in AppCompatDrawableManager --> +<layer-list /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_thumb_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_thumb_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..7fea83bc86983de6d28c9d745ed187d9a09aa96d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_thumb_material.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android" + android:constantSize="true"> + <item android:state_enabled="false" android:state_pressed="true"> + <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha" + android:gravity="center"/> + </item> + <item android:state_enabled="false"> + <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha" + android:gravity="center"/> + </item> + <item android:state_pressed="true"> + <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_005" + android:gravity="center"/> + </item> + <item> + <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_000" + android:gravity="center"/> + </item> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_tick_mark_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_tick_mark_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2d86c97e3bcf4b78c087a790d546bff9c19ea5a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_tick_mark_material.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval"> + <size android:width="@dimen/abc_progress_bar_height_material" + android:height="@dimen/abc_progress_bar_height_material"/> + <solid android:color="@android:color/white"/> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_track_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_track_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..e68ac03e90bd262a819d10a9faa1fd3097abfbb6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_seekbar_track_material.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:id="@android:id/background" + android:drawable="@drawable/abc_scrubber_track_mtrl_alpha"/> + <item android:id="@android:id/secondaryProgress"> + <scale android:scaleWidth="100%"> + <selector> + <item android:state_enabled="false"> + <color android:color="@android:color/transparent"/> + </item> + <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/> + </selector> + </scale> + </item> + <item android:id="@android:id/progress"> + <scale android:scaleWidth="100%"> + <selector> + <item android:state_enabled="false"> + <color android:color="@android:color/transparent"/> + </item> + <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/> + </selector> + </scale> + </item> +</layer-list> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_spinner_textfield_background_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_spinner_textfield_background_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0f46a8097425ef3d9eac3a0a09921b2b2c2de60 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_spinner_textfield_background_material.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/abc_control_inset_material" + android:insetTop="@dimen/abc_control_inset_material" + android:insetBottom="@dimen/abc_control_inset_material" + android:insetRight="@dimen/abc_control_inset_material"> + <selector> + <item android:state_checked="false" android:state_pressed="false"> + <layer-list> + <item android:drawable="@drawable/abc_textfield_default_mtrl_alpha" /> + <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" /> + </layer-list> + </item> + <item> + <layer-list> + <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha" /> + <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" /> + </layer-list> + </item> + </selector> +</inset> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_black_48dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_black_48dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f380aa475b233a0d34b8ba97aea55fd72ab6353 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_black_48dp.xml @@ -0,0 +1,25 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="48dp" + android:height="48dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21z" + android:fillColor="@android:color/black"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_half_black_48dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_half_black_48dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba1dc57529479d5e54ab42859a2be8fec6889677 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_star_half_black_48dp.xml @@ -0,0 +1,25 @@ +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="48dp" + android:height="48dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z" + android:fillColor="@android:color/black"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_switch_thumb_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_switch_thumb_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..ee96ec2e7ab099b45fb792e1dbd722b615bb869e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_switch_thumb_material.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00012" /> + <item android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00001" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_tab_indicator_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_tab_indicator_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a8de1b69b5aedfe5126c8b67548fa04e36daa3e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_tab_indicator_material.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:drawable="@drawable/abc_tab_indicator_mtrl_alpha" /> + <item android:drawable="@android:color/transparent" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_text_cursor_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_text_cursor_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..885670c999c3e33378285014c73b4cec7a14fa90 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_text_cursor_material.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <size android:height="2dp" + android:width="2dp"/> + <solid android:color="@android:color/white"/> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_textfield_search_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_textfield_search_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..08873966e4393b201dd16f64a083853fc3dcdec9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/abc_textfield_search_material.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/> + <item android:state_enabled="true" android:state_activated="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/> + <item android:state_enabled="true" android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/> + <item android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_mtrl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_mtrl.xml new file mode 100644 index 0000000000000000000000000000000000000000..464a45047683d314f2f2b26409b698c2392962f4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_mtrl.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:name="btn_checkbox_checked" + android:width="32dp" + android:height="32dp" + android:viewportWidth="48" + android:viewportHeight="48"> + <group + android:name="icon_null" + android:translateX="24" + android:translateY="24" + android:scaleX="0.2" + android:scaleY="0.2"> + <group + android:name="check" + android:scaleX="7.5" + android:scaleY="7.5"> + <path + android:name="check_path_merged" + android:pathData="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -5.0,-5.00001525879 -5.0,-5.00001525879 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 3.58590698242,3.58601379395 3.58590698242,3.58601379395 c 0.0,0.0 7.58590698242,-7.58601379395 7.58590698242,-7.58601379395 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -9.0,9.00001525879 -9.0,9.00001525879 Z" + android:fillColor="#FF000000"/> + </group> + <group + android:name="box_dilate" + android:scaleX="7.5" + android:scaleY="7.5"> + <path + android:name="box_inner_merged" + android:pathData="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:fillColor="#FF000000" + android:fillAlpha="0"/> + </group> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..77d54184d8a61386daae6555a2c168c92ce259d8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/btn_checkbox_checked_mtrl" + tools:ignore="NewApi"> + <target + android:name="icon_null" + android:animation="@anim/btn_checkbox_to_unchecked_icon_null_animation" /> + <target + android:name="check_path_merged" + android:animation="@anim/btn_checkbox_to_unchecked_check_path_merged_animation" /> + <target + android:name="box_inner_merged" + android:animation="@anim/btn_checkbox_to_unchecked_box_inner_merged_animation" /> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml new file mode 100644 index 0000000000000000000000000000000000000000..f21429f9f4bbc47bb7718beb992433e54e136caf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:name="btn_checkbox_unchecked" + android:width="32dp" + android:viewportWidth="48" + android:height="32dp" + android:viewportHeight="48"> + <group + android:name="icon_null" + android:translateX="24" + android:translateY="24" + android:scaleX="0.2" + android:scaleY="0.2"> + <group + android:name="check" + android:scaleX="7.5" + android:scaleY="7.5"> + <path + android:name="box_outer_merged" + android:pathData="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z" + android:fillColor="#FF000000" + android:fillAlpha="0"/> + </group> + <group + android:name="box_dilate" + android:scaleX="7.5" + android:scaleY="7.5"> + <path + android:name="box_inner_merged" + android:pathData="M -7.0,-7.0 l 14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l -14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,-14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z" + android:fillColor="#FF000000"/> + </group> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d30913323ab18b9ef9e07e90ac7be38c313e735 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/btn_checkbox_unchecked_mtrl" + tools:ignore="NewApi"> + <target + android:name="icon_null" + android:animation="@anim/btn_checkbox_to_checked_icon_null_animation" /> + <target + android:name="box_outer_merged" + android:animation="@anim/btn_checkbox_to_checked_box_outer_merged_animation" /> + <target + android:name="box_inner_merged" + android:animation="@anim/btn_checkbox_to_checked_box_inner_merged_animation" /> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_mtrl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_mtrl.xml new file mode 100644 index 0000000000000000000000000000000000000000..170e82d54b6a8e27b0d68d3a75efa10a39a9c029 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_mtrl.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<vector + xmlns:android="http://schemas.android.com/apk/res/android" + android:name="btn_radio_to_on_mtrl" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32"> + <group + android:name="btn_radio_to_on_mtrl_0" + android:translateX="16" + android:translateY="16"> + <group android:name="ring_outer"> + <path + android:name="ring_outer_path" + android:strokeColor="#FF000000" + android:strokeWidth="2" + android:pathData="M 0.0,-9.0 c 4.9705627482,0.0 9.0,4.0294372518 9.0,9.0 c 0.0,4.9705627482 -4.0294372518,9.0 -9.0,9.0 c -4.9705627482,0.0 -9.0,-4.0294372518 -9.0,-9.0 c 0.0,-4.9705627482 4.0294372518,-9.0 9.0,-9.0 Z"/> + </group> + <group + android:name="dot_group" + android:scaleX="0" + android:scaleY="0"> + <path + android:name="dot_path" + android:pathData="M 0.0,-5.0 c -2.7619934082,0.0 -5.0,2.2380065918 -5.0,5.0 c 0.0,2.7619934082 2.2380065918,5.0 5.0,5.0 c 2.7619934082,0.0 5.0,-2.2380065918 5.0,-5.0 c 0.0,-2.7619934082 -2.2380065918,-5.0 -5.0,-5.0 Z" + android:fillColor="#FF000000"/> + </group> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..84561d0689b412cd236931f885edca6a2016a859 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/btn_radio_off_mtrl" + tools:ignore="NewApi"> + <target + android:name="ring_outer" + android:animation="@anim/btn_radio_to_on_mtrl_ring_outer_animation" /> + <target + android:name="ring_outer_path" + android:animation="@anim/btn_radio_to_on_mtrl_ring_outer_path_animation" /> + <target + android:name="dot_group" + android:animation="@anim/btn_radio_to_on_mtrl_dot_group_animation" /> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_mtrl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_mtrl.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce2116acf089568341c47bebb6670e899508cf37 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_mtrl.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<vector + xmlns:android="http://schemas.android.com/apk/res/android" + android:name="btn_radio_to_off_mtrl" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32"> + <group + android:name="btn_radio_to_off_mtrl_0" + android:translateX="16" + android:translateY="16"> + <group android:name="ring_outer"> + <path + android:name="ring_outer_path" + android:strokeColor="#FF000000" + android:strokeWidth="2" + android:pathData="M 0.0,-9.0 c 4.9705627482,0.0 9.0,4.0294372518 9.0,9.0 c 0.0,4.9705627482 -4.0294372518,9.0 -9.0,9.0 c -4.9705627482,0.0 -9.0,-4.0294372518 -9.0,-9.0 c 0.0,-4.9705627482 4.0294372518,-9.0 9.0,-9.0 Z"/> + </group> + <group android:name="dot_group"> + <path + android:name="dot_path" + android:pathData="M 0.0,-5.0 c -2.7619934082,0.0 -5.0,2.2380065918 -5.0,5.0 c 0.0,2.7619934082 2.2380065918,5.0 5.0,5.0 c 2.7619934082,0.0 5.0,-2.2380065918 5.0,-5.0 c 0.0,-2.7619934082 -2.2380065918,-5.0 -5.0,-5.0 Z" + android:fillColor="#FF000000"/> + </group> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml new file mode 100644 index 0000000000000000000000000000000000000000..2108cf1801bed6aac6ac87391b6ad7d7552530c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/btn_radio_on_mtrl" + tools:ignore="NewApi"> + <target + android:name="ring_outer" + android:animation="@anim/btn_radio_to_off_mtrl_ring_outer_animation" /> + <target + android:name="ring_outer_path" + android:animation="@anim/btn_radio_to_off_mtrl_ring_outer_path_animation" /> + <target + android:name="dot_group" + android:animation="@anim/btn_radio_to_off_mtrl_dot_group_animation" /> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/test_level_drawable.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/test_level_drawable.xml new file mode 100644 index 0000000000000000000000000000000000000000..41dadfd2be795c089c51c295bff6b56b1a6c5daf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/test_level_drawable.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?><!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="@color/primary_dark_material_dark"/> + <corners android:radius="10dp"/> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_dark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_dark.xml new file mode 100644 index 0000000000000000000000000000000000000000..43c2f99653166b0204ba1b9c3286aafb920d4a50 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_dark.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="@color/tooltip_background_dark" /> + <corners android:radius="@dimen/tooltip_corner_radius" /> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_light.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_light.xml new file mode 100644 index 0000000000000000000000000000000000000000..20966d54136dc9b4f521ace3ccbf874ae353115e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/drawable/tooltip_frame_light.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="@color/tooltip_background_light" /> + <corners android:radius="@dimen/tooltip_corner_radius" /> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml new file mode 100644 index 0000000000000000000000000000000000000000..3db122b7fb09eb1b021fdfbea98abe1596f35519 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 l 1.0,0.0 l 0.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml new file mode 100644 index 0000000000000000000000000000000000000000..47f65a0947947415a8bacdd18570336c37f89552 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 c 0.33333333,0.0 0.0,1.0 1.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml new file mode 100644 index 0000000000000000000000000000000000000000..3db122b7fb09eb1b021fdfbea98abe1596f35519 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 l 1.0,0.0 l 0.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml new file mode 100644 index 0000000000000000000000000000000000000000..47f65a0947947415a8bacdd18570336c37f89552 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 c 0.33333333,0.0 0.0,1.0 1.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml new file mode 100644 index 0000000000000000000000000000000000000000..956d389295bfd1b67b61fc541571756a2515a1ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 c 0.4,0.0 0.4,1.0 1.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml new file mode 100644 index 0000000000000000000000000000000000000000..956d389295bfd1b67b61fc541571756a2515a1ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="M 0.0,0.0 c 0.4,0.0 0.4,1.0 1.0,1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/fast_out_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/fast_out_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..14950d3bbb4b29e142af7e48335dfea6e7778e9c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/interpolator/fast_out_slow_in.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<pathInterpolator + xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="0.4" + android:controlY1="0" + android:controlX2="0.2" + android:controlY2="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-v26/abc_screen_toolbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-v26/abc_screen_toolbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d2ea46a9d975e9d3bb8c46c5d2ee5ee897288ee --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-v26/abc_screen_toolbar.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.ActionBarOverlayLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/decor_content_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <include layout="@layout/abc_screen_content_include"/> + + <androidx.appcompat.widget.ActionBarContainer + android:id="@+id/action_bar_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + style="?attr/actionBarStyle" + android:touchscreenBlocksFocus="true" + android:keyboardNavigationCluster="true" + android:gravity="top"> + + <androidx.appcompat.widget.Toolbar + android:id="@+id/action_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + app:navigationContentDescription="@string/abc_action_bar_up_description" + style="?attr/toolbarStyle"/> + + <androidx.appcompat.widget.ActionBarContextView + android:id="@+id/action_context_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone" + android:theme="?attr/actionModeTheme" + style="?attr/actionModeStyle"/> + + </androidx.appcompat.widget.ActionBarContainer> + +</androidx.appcompat.widget.ActionBarOverlayLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..773065d4bc887ef28272178a8972e9381e4ba7a7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.ButtonBarLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/buttonPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="bottom" + android:layoutDirection="locale" + android:orientation="horizontal" + android:paddingBottom="4dp" + android:paddingLeft="12dp" + android:paddingRight="12dp" + android:paddingTop="4dp"> + + <Button + android:id="@android:id/button3" + style="?attr/buttonBarNeutralButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1"/> + + <Button + android:id="@android:id/button2" + style="?attr/buttonBarNegativeButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1"/> + + <Button + android:id="@android:id/button1" + style="?attr/buttonBarPositiveButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1"/> + +</androidx.appcompat.widget.ButtonBarLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_title_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_title_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..b4efb43e30cb25f74d88dafaf96603be930b1ebf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout-watch-v20/abc_alert_dialog_title_material.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/topPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:gravity="top|center_horizontal"> + + <!-- If the client uses a customTitle, it will be added here. --> + + <LinearLayout + android:id="@+id/title_template" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_horizontal" + android:layout_marginTop="24dp" + android:orientation="vertical"> + + <ImageView + android:id="@android:id/icon" + android:adjustViewBounds="true" + android:maxHeight="24dp" + android:maxWidth="24dp" + android:layout_gravity="center_horizontal" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + + <androidx.appcompat.widget.DialogTitle + android:id="@+id/alertTitle" + style="?android:attr/windowTitleStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center" /> + + </LinearLayout> + + <android.widget.Space + android:id="@+id/titleDividerNoCustom" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_title_divider_material" + android:visibility="gone"/> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_title_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_title_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..194afb74cb818246b55e3daba47f9c44d13c9c30 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_title_item.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + style="@style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem"> + <TextView android:id="@+id/action_bar_title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:singleLine="true" + android:ellipsize="end" /> + <TextView android:id="@+id/action_bar_subtitle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/abc_action_bar_subtitle_top_margin_material" + android:singleLine="true" + android:ellipsize="end" + android:visibility="gone" /> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_up_container.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_up_container.xml new file mode 100644 index 0000000000000000000000000000000000000000..f46550a553ee3687d51da9613559e0bd07409d4d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_bar_up_container.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:background="?attr/actionBarItemBackground" + android:gravity="center_vertical" + android:enabled="false"> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_item_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_item_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..05c6904b89ff52f39fa2cf87ea4acb5e7898f651 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_item_layout.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + dd + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.view.menu.ActionMenuItemView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:gravity="center" + android:focusable="true" + android:paddingTop="4dip" + android:paddingBottom="4dip" + android:paddingLeft="8dip" + android:paddingRight="8dip" + android:textAppearance="?attr/actionMenuTextAppearance" + android:textColor="?attr/actionMenuTextColor" + style="?attr/actionButtonStyle"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..43b134a417134423ad2177089aa0bbde34f6d3d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_menu_layout.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.ActionMenuView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:divider="?attr/actionBarDivider" + app:dividerPadding="12dip" + android:gravity="center_vertical"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_bar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_bar.xml new file mode 100644 index 0000000000000000000000000000000000000000..96783f887f6b55e71eb21ba078a04ab4a954c676 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_bar.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2012, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> +<androidx.appcompat.widget.ActionBarContextView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone" + android:theme="?attr/actionModeTheme" + style="?attr/actionModeStyle"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_close_item_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_close_item_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..e164d4c050a4e42aaba3296dd29380552d1d7100 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_action_mode_close_item_material.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ImageView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/action_mode_close_button" + style="?attr/actionModeCloseButtonStyle" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_marginEnd="16dip" + android:layout_marginRight="16dip" + android:clickable="true" + android:contentDescription="?attr/actionModeCloseContentDescription" + android:focusable="true" + android:paddingLeft="12dp" + android:paddingStart="12dp" + app:srcCompat="?attr/actionModeCloseDrawable" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..de897b6431f87e47ce3e2325e8590a5a0ce2e89f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2013, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> +<view xmlns:android="http://schemas.android.com/apk/res/android" + class="androidx.appcompat.widget.ActivityChooserView$InnerLayout" + android:id="@+id/activity_chooser_view_content" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center" + style="?attr/activityChooserViewStyle"> + + <FrameLayout + android:id="@+id/expand_activities_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center" + android:focusable="true" + android:addStatesFromChildren="true" + android:background="?attr/actionBarItemBackground" + android:paddingTop="2dip" + android:paddingBottom="2dip" + android:paddingLeft="12dip" + android:paddingRight="12dip"> + + <ImageView android:id="@+id/image" + android:layout_width="32dip" + android:layout_height="32dip" + android:layout_gravity="center" + android:scaleType="fitCenter" + android:adjustViewBounds="true" /> + + </FrameLayout> + + <FrameLayout + android:id="@+id/default_activity_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center" + android:focusable="true" + android:addStatesFromChildren="true" + android:background="?attr/actionBarItemBackground" + android:paddingTop="2dip" + android:paddingBottom="2dip" + android:paddingLeft="12dip" + android:paddingRight="12dip"> + + <ImageView android:id="@id/image" + android:layout_width="32dip" + android:layout_height="32dip" + android:layout_gravity="center" + android:scaleType="fitCenter" + android:adjustViewBounds="true" /> + + </FrameLayout> + +</view> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view_list_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view_list_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..cf8cb1aa6899fb682ffc48afef2d56cd4d29d66c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_activity_chooser_view_list_item.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/list_item" + android:layout_width="match_parent" + android:layout_height="?attr/dropdownListPreferredItemHeight" + android:paddingLeft="16dip" + android:paddingRight="16dip" + android:minWidth="196dip" + android:orientation="vertical" + android:background="?attr/selectableItemBackground" > + + <LinearLayout + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:duplicateParentState="true" > + + <ImageView + android:id="@+id/icon" + android:layout_width="32dip" + android:layout_height="32dip" + android:layout_gravity="center_vertical" + android:layout_marginRight="8dip" + android:duplicateParentState="true"/> + + <TextView + android:id="@+id/title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:textAppearance="?attr/textAppearanceLargePopupMenu" + android:duplicateParentState="true" + android:singleLine="true" + android:ellipsize="marquee" + android:fadingEdge="horizontal"/> + + </LinearLayout> + +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_button_bar_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_button_bar_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a312422fcd4a90fe66c5680b419eccdaa961820 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_button_bar_material.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/buttonPanel" + style="?attr/buttonBarStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:fillViewport="true" + android:scrollIndicators="top|bottom"> + + <androidx.appcompat.widget.ButtonBarLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="bottom" + android:layoutDirection="locale" + android:orientation="horizontal" + android:paddingBottom="4dp" + android:paddingLeft="12dp" + android:paddingRight="12dp" + android:paddingTop="4dp"> + + <Button + android:id="@android:id/button3" + style="?attr/buttonBarNeutralButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <android.widget.Space + android:id="@+id/spacer" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_weight="1" + android:visibility="invisible"/> + + <Button + android:id="@android:id/button2" + style="?attr/buttonBarNegativeButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <Button + android:id="@android:id/button1" + style="?attr/buttonBarPositiveButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + </androidx.appcompat.widget.ButtonBarLayout> + +</ScrollView> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..c6859f34bc6f831bb12727afaed3099b132fe878 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_material.xml @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.AlertDialogLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/parentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="start|left|top" + android:orientation="vertical"> + + <include layout="@layout/abc_alert_dialog_title_material"/> + + <FrameLayout + android:id="@+id/contentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <ImageView + android:id="@+id/scrollIndicatorUp" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="top" + android:background="#1f000000" + app:backgroundTint="?android:attr/colorForeground" + android:visibility="gone"/> + + <androidx.core.widget.NestedScrollView + android:id="@+id/scrollView" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:clipToPadding="false"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <android.widget.Space + android:id="@+id/textSpacerNoTitle" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + + <TextView + android:id="@android:id/message" + style="@style/TextAppearance.AppCompat.Subhead" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding"/> + + <android.widget.Space + android:id="@+id/textSpacerNoButtons" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + </LinearLayout> + </androidx.core.widget.NestedScrollView> + + <ImageView + android:id="@+id/scrollIndicatorDown" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="bottom" + android:background="#1f000000" + app:backgroundTint="?android:attr/colorForeground" + android:visibility="gone"/> + + </FrameLayout> + + <FrameLayout + android:id="@+id/customPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <FrameLayout + android:id="@+id/custom" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + </FrameLayout> + + <include layout="@layout/abc_alert_dialog_button_bar_material" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + +</androidx.appcompat.widget.AlertDialogLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_title_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_title_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..75c6755765591d0ee6d3c9e7d904bdd253ad0294 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_alert_dialog_title_material.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/topPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <!-- If the client uses a customTitle, it will be added here. --> + + <LinearLayout + android:id="@+id/title_template" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_vertical|start|left" + android:orientation="horizontal" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingTop="@dimen/abc_dialog_padding_top_material"> + + <ImageView + android:id="@android:id/icon" + android:layout_width="32dip" + android:layout_height="32dip" + android:layout_marginEnd="8dip" + android:layout_marginRight="8dip" + android:scaleType="fitCenter" + android:src="@null"/> + + <androidx.appcompat.widget.DialogTitle + android:id="@+id/alertTitle" + style="?android:attr/windowTitleStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="start" + android:ellipsize="end" + android:singleLine="true" + android:textAlignment="viewStart"/> + + </LinearLayout> + + <android.widget.Space + android:id="@+id/titleDividerNoCustom" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_title_divider_material" + android:visibility="gone"/> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_cascading_menu_item_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_cascading_menu_item_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..f711884bff65eaeb08d8fa3fcdc92937377502e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_cascading_menu_item_layout.xml @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<!-- Keep in sync with abc_popup_menu_item_layout.xml (which only differs in the title and shortcut + position). --> +<androidx.appcompat.view.menu.ListMenuItemView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minWidth="196dip" + android:orientation="vertical"> + + <ImageView + android:id="@+id/group_divider" + android:layout_width="match_parent" + android:layout_height="1dip" + android:layout_marginTop="4dip" + android:layout_marginBottom="4dip" + android:background="@drawable/abc_list_divider_material" /> + + <LinearLayout + android:id="@+id/content" + android:layout_width="match_parent" + android:layout_height="?attr/dropdownListPreferredItemHeight" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem"> + + <!-- Icon will be inserted here. --> + + <TextView + android:id="@+id/title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:textAppearance="?attr/textAppearanceLargePopupMenu" + android:singleLine="true" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" /> + + <Space + android:layout_width="0dip" + android:layout_height="1dip" + android:layout_weight="1"/> + + <TextView + android:id="@+id/shortcut" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:textAppearance="?attr/textAppearanceSmallPopupMenu" + android:singleLine="true" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" /> + + <ImageView + android:id="@+id/submenuarrow" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:scaleType="center" + android:visibility="gone" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" /> + + <!-- Checkbox, and/or radio button will be inserted here. --> + + </LinearLayout> + +</androidx.appcompat.view.menu.ListMenuItemView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_dialog_title_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_dialog_title_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..2cd3850765a1f9eaddd137e3b627a7c5209798a4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_dialog_title_material.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- +This is an optimized layout for a screen, with the minimum set of features +enabled. +--> + +<androidx.appcompat.widget.FitWindowsLinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="match_parent" + android:layout_width="match_parent" + android:orientation="vertical" + android:fitsSystemWindows="true"> + + <TextView + android:id="@+id/title" + style="?android:attr/windowTitleStyle" + android:singleLine="true" + android:ellipsize="end" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="start" + android:textAlignment="viewStart" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingTop="@dimen/abc_dialog_padding_top_material"/> + + <include + layout="@layout/abc_screen_content_include" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1"/> + +</androidx.appcompat.widget.FitWindowsLinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_expanded_menu_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_expanded_menu_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..ef53055246cf675598f8abcfb7755063eb2fab4a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_expanded_menu_layout.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.view.menu.ExpandedMenuView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/expanded_menu" + android:layout_width="?attr/panelMenuListWidth" + android:layout_height="wrap_content" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_checkbox.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_checkbox.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9c3f0681149f912ec92619c061bff5e7cb1442c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_checkbox.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<CheckBox xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/checkbox" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:focusable="false" + android:clickable="false" + android:duplicateParentState="true"/> + + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..d6b71dbaa5edcc4eba46fb5b1a477c4ca6a85f79 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_icon.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ImageView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:layout_marginStart="8dip" + android:layout_marginEnd="-8dip" + android:layout_marginLeft="8dip" + android:layout_marginRight="-8dip" + android:layout_marginTop="8dip" + android:layout_marginBottom="8dip" + android:scaleType="centerInside" + android:duplicateParentState="true"/> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..c84e04e2c1f36779269aeecd6f15b40cb42a8405 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_layout.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.view.menu.ListMenuItemView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="?attr/listPreferredItemHeightSmall"> + + <!-- Icon will be inserted here. --> + + <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. --> + <RelativeLayout + android:layout_width="0dip" + android:layout_weight="1" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:layout_marginLeft="?attr/listPreferredItemPaddingLeft" + android:layout_marginRight="?attr/listPreferredItemPaddingRight" + android:duplicateParentState="true"> + + <TextView + android:id="@+id/title" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:textAppearance="?attr/textAppearanceListItemSmall" + android:singleLine="true" + android:duplicateParentState="true" + android:ellipsize="marquee" + android:fadingEdge="horizontal" /> + + <TextView + android:id="@+id/shortcut" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/title" + android:layout_alignParentLeft="true" + android:textAppearance="?android:attr/textAppearanceSmall" + android:singleLine="true" + android:duplicateParentState="true" /> + + </RelativeLayout> + + <!-- Checkbox, and/or radio button will be inserted here. --> + +</androidx.appcompat.view.menu.ListMenuItemView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_radio.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_radio.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ca8d7a2a5db7425649ff07dde4f0198c79a7a5a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_list_menu_item_radio.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<RadioButton xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/radio" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:focusable="false" + android:clickable="false" + android:duplicateParentState="true"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_header_item_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_header_item_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..9545b1191d06397eb999c5d1a3b01a5cb115940b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_header_item_layout.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="?attr/dropdownListPreferredItemHeight" + android:minWidth="196dip" + android:paddingLeft="16dip" + android:paddingRight="16dip"> + + <TextView + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="RtlCompat" + android:id="@android:id/title" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textAppearance="?attr/textAppearancePopupMenuHeader" + android:layout_gravity="center_vertical" + android:singleLine="true" + android:ellipsize="marquee" + android:fadingEdge="horizontal" + android:textAlignment="viewStart" /> + +</FrameLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_item_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_item_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..5b6b87b8b21f9d2a1a806d0edc96e65a37d032d4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_popup_menu_item_layout.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.view.menu.ListMenuItemView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minWidth="196dip" + android:orientation="vertical"> + + <ImageView + android:id="@+id/group_divider" + android:layout_width="match_parent" + android:layout_height="1dip" + android:layout_marginTop="4dip" + android:layout_marginBottom="4dip" + android:background="@drawable/abc_list_divider_material" /> + + <LinearLayout + android:id="@+id/content" + android:layout_width="match_parent" + android:layout_height="?attr/dropdownListPreferredItemHeight" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem"> + + <!-- Icon will be inserted here. --> + + <!-- The title and summary have some gap between them, and this 'group' should be centered + vertically. --> + <RelativeLayout + android:layout_width="0dip" + android:layout_weight="1" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup"> + + <TextView + android:id="@+id/title" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:textAppearance="?attr/textAppearanceLargePopupMenu" + android:singleLine="true" + android:duplicateParentState="true" + android:ellipsize="marquee" + android:fadingEdge="horizontal" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" /> + + <TextView + android:id="@+id/shortcut" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/title" + android:textAppearance="?attr/textAppearanceSmallPopupMenu" + android:singleLine="true" + android:duplicateParentState="true" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" /> + + </RelativeLayout> + + <ImageView + android:id="@+id/submenuarrow" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:scaleType="center" + android:visibility="gone" + style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" /> + + <!-- Checkbox, and/or radio button will be inserted here. --> + + </LinearLayout> + +</androidx.appcompat.view.menu.ListMenuItemView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_content_include.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_content_include.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d079f736b41e7cbd8faa409478a75d94b8c26d6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_content_include.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + + <androidx.appcompat.widget.ContentFrameLayout + android:id="@id/action_bar_activity_content" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:foregroundGravity="fill_horizontal|top" + android:foreground="?android:attr/windowContentOverlay" /> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple.xml new file mode 100644 index 0000000000000000000000000000000000000000..894fbda2c0f6f24e2e1d2a87d385dc24fc9ecc06 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.FitWindowsLinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/action_bar_root" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:fitsSystemWindows="true"> + + <androidx.appcompat.widget.ViewStubCompat + android:id="@+id/action_mode_bar_stub" + android:inflatedId="@+id/action_mode_bar" + android:layout="@layout/abc_action_mode_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <include layout="@layout/abc_screen_content_include" /> + +</androidx.appcompat.widget.FitWindowsLinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple_overlay_action_mode.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple_overlay_action_mode.xml new file mode 100644 index 0000000000000000000000000000000000000000..ede283433ad6ab66adf97365936fcc4979309efe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_simple_overlay_action_mode.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2014, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + +This is an optimized layout for a screen, with the minimum set of features +enabled. +--> + +<androidx.appcompat.widget.FitWindowsFrameLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/action_bar_root" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <include layout="@layout/abc_screen_content_include" /> + + <androidx.appcompat.widget.ViewStubCompat + android:id="@+id/action_mode_bar_stub" + android:inflatedId="@+id/action_mode_bar" + android:layout="@layout/abc_action_mode_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + +</androidx.appcompat.widget.FitWindowsFrameLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_toolbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_toolbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..64d73210ad6297712c3fafe9eeb81d38ba633961 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_screen_toolbar.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.appcompat.widget.ActionBarOverlayLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/decor_content_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <include layout="@layout/abc_screen_content_include"/> + + <androidx.appcompat.widget.ActionBarContainer + android:id="@+id/action_bar_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + style="?attr/actionBarStyle" + android:touchscreenBlocksFocus="true" + android:gravity="top"> + + <androidx.appcompat.widget.Toolbar + android:id="@+id/action_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + app:navigationContentDescription="@string/abc_action_bar_up_description" + style="?attr/toolbarStyle"/> + + <androidx.appcompat.widget.ActionBarContextView + android:id="@+id/action_context_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone" + android:theme="?attr/actionModeTheme" + style="?attr/actionModeStyle"/> + + </androidx.appcompat.widget.ActionBarContainer> + +</androidx.appcompat.widget.ActionBarOverlayLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_dropdown_item_icons_2line.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_dropdown_item_icons_2line.xml new file mode 100644 index 0000000000000000000000000000000000000000..b81d5d8ca33eabe8b1ff40a76c389aac8dcc6421 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_dropdown_item_icons_2line.xml @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="58dip" + style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown"> + + <!-- Icons come first in the layout, since their placement doesn't depend on + the placement of the text views. --> + <ImageView + android:id="@android:id/icon1" + android:layout_width="@dimen/abc_dropdownitem_icon_width" + android:layout_height="48dip" + android:scaleType="centerInside" + android:layout_alignParentTop="true" + android:layout_alignParentBottom="true" + android:visibility="invisible" + style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" /> + + <ImageView + android:id="@+id/edit_query" + android:layout_width="48dip" + android:layout_height="48dip" + android:scaleType="centerInside" + android:layout_alignParentTop="true" + android:layout_alignParentBottom="true" + android:background="?attr/selectableItemBackground" + android:visibility="gone" + style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query" /> + + <ImageView + android:id="@id/android:icon2" + android:layout_width="48dip" + android:layout_height="48dip" + android:scaleType="centerInside" + android:layout_alignWithParentIfMissing="true" + android:layout_alignParentTop="true" + android:layout_alignParentBottom="true" + android:visibility="gone" + style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" /> + + + <!-- The subtitle comes before the title, since the height of the title depends on whether the + subtitle is visible or gone. --> + <TextView android:id="@android:id/text2" + style="?android:attr/dropDownItemStyle" + android:textAppearance="?attr/textAppearanceSearchResultSubtitle" + android:singleLine="true" + android:layout_width="match_parent" + android:layout_height="29dip" + android:paddingBottom="4dip" + android:gravity="top" + android:layout_alignWithParentIfMissing="true" + android:layout_alignParentBottom="true" + android:visibility="gone" /> + + <!-- The title is placed above the subtitle, if there is one. If there is no + subtitle, it fills the parent. --> + <TextView android:id="@android:id/text1" + style="?android:attr/dropDownItemStyle" + android:textAppearance="?attr/textAppearanceSearchResultTitle" + android:singleLine="true" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_centerVertical="true" + android:layout_above="@android:id/text2" /> + +</RelativeLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_view.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..33d25d9ec40b10fc7a1b6cf5b615252dba1b802c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_search_view.xml @@ -0,0 +1,137 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +--> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/search_bar" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal"> + + <!-- This is actually used for the badge icon *or* the badge label (or neither) --> + <TextView + android:id="@+id/search_badge" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:gravity="center_vertical" + android:layout_marginBottom="2dip" + android:drawablePadding="0dip" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="?android:attr/textColorPrimary" + android:visibility="gone" /> + + <ImageView + android:id="@+id/search_button" + style="?attr/actionButtonStyle" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center_vertical" + android:focusable="true" + android:contentDescription="@string/abc_searchview_description_search" /> + + <LinearLayout + android:id="@+id/search_edit_frame" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_weight="1" + android:layout_marginLeft="8dip" + android:layout_marginRight="8dip" + android:orientation="horizontal" + android:layoutDirection="locale"> + + <ImageView + android:id="@+id/search_mag_icon" + android:layout_width="@dimen/abc_dropdownitem_icon_width" + android:layout_height="wrap_content" + android:scaleType="centerInside" + android:layout_gravity="center_vertical" + android:visibility="gone" + style="@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon" /> + + <!-- Inner layout contains the app icon, button(s) and EditText --> + <LinearLayout + android:id="@+id/search_plate" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:orientation="horizontal"> + + <view class="androidx.appcompat.widget.SearchView$SearchAutoComplete" + android:id="@+id/search_src_text" + android:layout_height="36dip" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left" + android:paddingRight="@dimen/abc_dropdownitem_text_padding_right" + android:singleLine="true" + android:ellipsize="end" + android:background="@null" + android:inputType="text|textAutoComplete|textNoSuggestions" + android:imeOptions="actionSearch" + android:dropDownHeight="wrap_content" + android:dropDownAnchor="@id/search_edit_frame" + android:dropDownVerticalOffset="0dip" + android:dropDownHorizontalOffset="0dip" /> + + <ImageView + android:id="@+id/search_close_btn" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:paddingLeft="8dip" + android:paddingRight="8dip" + android:layout_gravity="center_vertical" + android:background="?attr/selectableItemBackgroundBorderless" + android:focusable="true" + android:contentDescription="@string/abc_searchview_description_clear" /> + + </LinearLayout> + + <LinearLayout + android:id="@+id/submit_area" + android:orientation="horizontal" + android:layout_width="wrap_content" + android:layout_height="match_parent"> + + <ImageView + android:id="@+id/search_go_btn" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center_vertical" + android:paddingLeft="16dip" + android:paddingRight="16dip" + android:background="?attr/selectableItemBackgroundBorderless" + android:visibility="gone" + android:focusable="true" + android:contentDescription="@string/abc_searchview_description_submit" /> + + <ImageView + android:id="@+id/search_voice_btn" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center_vertical" + android:paddingLeft="16dip" + android:paddingRight="16dip" + android:background="?attr/selectableItemBackgroundBorderless" + android:visibility="gone" + android:focusable="true" + android:contentDescription="@string/abc_searchview_description_voice" /> + </LinearLayout> + </LinearLayout> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_select_dialog_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_select_dialog_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..5891c81348c22db532465562c1b21a140841d2da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_select_dialog_material.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + This layout file is used by the AlertDialog when displaying a list of items. + This layout file is inflated and used as the ListView to display the items. + Assign an ID so its state will be saved/restored. +--> +<view xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/select_dialog_listview" + style="@style/Widget.AppCompat.ListView" + class="androidx.appcompat.app.AlertController$RecycleListView" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_gravity="start" + android:cacheColorHint="@null" + android:clipToPadding="false" + android:divider="?attr/listDividerAlertDialog" + android:fadingEdge="none" + android:overScrollMode="ifContentScrolls" + android:scrollbars="vertical" + android:textAlignment="viewStart" + app:paddingBottomNoButtons="@dimen/abc_dialog_list_padding_bottom_no_buttons" + app:paddingTopNoTitle="@dimen/abc_dialog_list_padding_top_no_title"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_tooltip.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_tooltip.xml new file mode 100644 index 0000000000000000000000000000000000000000..1421cd4180b1102f4faeb4648b7cf991ee82bb51 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/abc_tooltip.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + android:id="@+id/message" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_margin="@dimen/tooltip_margin" + android:paddingLeft="@dimen/tooltip_horizontal_padding" + android:paddingStart="@dimen/tooltip_horizontal_padding" + android:paddingRight="@dimen/tooltip_horizontal_padding" + android:paddingEnd="@dimen/tooltip_horizontal_padding" + android:paddingTop="@dimen/tooltip_vertical_padding" + android:paddingBottom="@dimen/tooltip_vertical_padding" + android:maxWidth="256dp" + android:background="?attr/tooltipFrameBackground" + android:textAppearance="@style/TextAppearance.AppCompat.Tooltip" + android:textColor="?attr/tooltipForegroundColor" + android:maxLines="3" + android:ellipsize="end" + /> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_item_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_item_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..677b178d6dbc37f3296ac06519be9ce4941990cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_item_material.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + This layout file is used by the AlertDialog when displaying a list of items. + This layout file is inflated and used as the TextView to display individual + items. +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:textAppearance="?attr/textAppearanceListItemSmall" + android:textColor="?attr/textColorAlertDialogListItem" + android:gravity="center_vertical" + android:paddingLeft="?attr/listPreferredItemPaddingLeft" + android:paddingRight="?attr/listPreferredItemPaddingRight" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_multichoice_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_multichoice_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..60f3576a89035138a9266cced77abf1b7a400cb6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_multichoice_material.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="?attr/textColorAlertDialogListItem" + android:gravity="center_vertical" + android:paddingLeft="@dimen/abc_select_dialog_padding_start_material" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingStart="@dimen/abc_select_dialog_padding_start_material" + android:paddingEnd="?attr/dialogPreferredPadding" + android:drawableLeft="?android:attr/listChoiceIndicatorMultiple" + android:drawableStart="?android:attr/listChoiceIndicatorMultiple" + android:drawablePadding="20dp" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_singlechoice_material.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_singlechoice_material.xml new file mode 100644 index 0000000000000000000000000000000000000000..4d10fc720e06914d346053d12c99125a021c3a37 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/select_dialog_singlechoice_material.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="?attr/textColorAlertDialogListItem" + android:gravity="center_vertical" + android:paddingLeft="@dimen/abc_select_dialog_padding_start_material" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingStart="@dimen/abc_select_dialog_padding_start_material" + android:paddingEnd="?attr/dialogPreferredPadding" + android:drawableLeft="?android:attr/listChoiceIndicatorSingle" + android:drawableStart="?android:attr/listChoiceIndicatorSingle" + android:drawablePadding="20dp" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/support_simple_spinner_dropdown_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/support_simple_spinner_dropdown_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2f177ac8cb373a3adc26a14ce0b046a9bb1abc7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/layout/support_simple_spinner_dropdown_item.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2008, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/text1" + style="?attr/spinnerDropDownItemStyle" + android:singleLine="true" + android:layout_width="match_parent" + android:layout_height="?attr/dropdownListPreferredItemHeight" + android:ellipsize="marquee"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-af/values-af.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6b7af77954a99cac806ad04819585ce3c4db60c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-af/values-af.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Gaan na tuisskerm"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Gaan op"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Nog opsies"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Klaar"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Sien alles"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Kies \'n program"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"AF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AAN"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksie+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spasiebalk"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Simbool+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Kieslys+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Soek …"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Vee navraag uit"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Soektognavraag"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Soek"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Dien navraag in"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Stemsoektog"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Deel met"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Deel met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Vou in"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Soek"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-am/values-am.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d1d50350b91b785d9bd482a9ea4b3979badfe34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-am/values-am.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"መáŠáˆ» ዳስስ"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ወደ ላዠያስሱ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ተከናá‹áŠ—áˆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"አንድ መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"አጥá‹"</string> + <string msgid="884982626291842264" name="abc_capital_on">"አብራ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ሰáˆá‹"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"áŠáተት"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"á‹áˆáˆáŒ‰â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"መጠá‹á‰… አጽዳ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"የáለጋ መጠá‹á‰…"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"áለጋ"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"መጠá‹á‰… አስገባ"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"የድáˆáŒ½ áለጋ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"አጋራ በ"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ለ<ns1:g id="APPLICATION_NAME">%s</ns1:g> አጋራ"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ሰብስብ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"áለጋ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ar/values-ar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..481bf823f43999ca42a932a128a7efaaa0ad4537 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ar/values-ar.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"التوجه إلى المنزل"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"خيارات أكثر"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"تم"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"عرض الكل"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"إيقاÙ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"Ù…ÙØ¹Ù‘لة"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ØØ°Ù"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ÙØ¶Ø§Ø¡"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"القائمة+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Ø¨ØØ«â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Ù…ØÙˆ طلب Ø§Ù„Ø¨ØØ«"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"طلب Ø¨ØØ«"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Ø§Ù„Ø¨ØØ«"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"إرسال طلب Ø§Ù„Ø¨ØØ«"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ø¨ØØ« صوتي"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"مشاركة مع"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"مشاركة مع <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"تصغير"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Ø§Ù„Ø¨ØØ«"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-as/values-as.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..06c2b94a6eb2be19c46e1bf2526d4934ab3fe742 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-as/values-as.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"গৃহ পৃষà§à¦ ালৈ যাওক"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ওপৰলৈ যাওক"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"অধিক বিকলà§à¦ª"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"সমà§à¦ªà¦¨à§à¦¨ হ’ল"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"আটাইবোৰ চাওক"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"কোনো à¦à¦ªà§ বাছনি কৰক"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"অফ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"অন"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"সনà§à¦§à¦¾à¦¨ কৰক…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨ মচক"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"সনà§à¦§à¦¾à¦¨ কৰক"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"পà§à§°à¦¶à§à¦¨ দাখিল কৰক"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"কণà§à¦ ধà§à¦¬à¦¨à¦¿à§° দà§à¦¬à¦¾à§°à¦¾ সনà§à¦§à¦¾à¦¨"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ইয়াৰ জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>à§° জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"সংকোচন কৰক"</string> + <string msgid="6264217191555673260" name="search_menu_title">"সনà§à¦§à¦¾à¦¨"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-az/values-az.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..6a401edcae8601a64d5c490188386c33e560228a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-az/values-az.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Æsas sÉ™hifÉ™yÉ™ keçin"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Yuxarı keçin"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"DigÉ™r seçimlÉ™r"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Hazırdır"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"TÉ™tbiq seçin"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DEAKTİV"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AKTİV"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"silin"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"daxil olun"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksiya+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menyu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Axtarış..."</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"SorÄŸunu silin"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Axtarış sorÄŸusu"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Axtarın"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"SorÄŸunu göndÉ™rin"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"SÉ™sli axtarış"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Paylaşın"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ilÉ™ paylaşın"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"YığcamlaÅŸdırın"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Axtarın"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..40e7cef62a5da25aa569f4b6c6a766ec4e51a228 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Idite na poÄetnu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Idite nagore"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"JoÅ¡ opcija"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Izaberite aplikaciju"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUÄŒENO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"UKLJUÄŒENO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"taster za razmak"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pretražite…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ObriÅ¡ite upit"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Pretražite upit"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretražite"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"PoÅ¡aljite upit"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovna pretraga"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Delite pomoću"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Delite pomoću aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skupi"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pretražite"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-be/values-be.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ed8db005cab1d6408aead4344e47f0f3ba9d210 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-be/values-be.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ПерайÑці на галоўную Ñтаронку"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ПерайÑці ўверх"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Гатова"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Паказаць уÑе"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Выберыце праграму"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ВЫКЛ."</string> + <string msgid="884982626291842264" name="abc_capital_on">"УКЛ."</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Прабел"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Меню +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Пошук…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Выдаліць запыт"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Пошукавы запыт"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Пошук"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Ðдправіць запыт"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГалаÑавы пошук"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Ðбагуліць праз"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Ðбагуліць праз праграму \"<ns1:g id="APPLICATION_NAME">%s</ns1:g>\""</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Згарнуць"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Пошук"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bg/values-bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..b8197fd42f8bf539a4cebfa936ed6a38eaa258c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bg/values-bg.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ðавигиране към Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Ðавигиране нагоре"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Още опции"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Преглед на вÑички"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Изберете приложение"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ИЗКЛ."</string> + <string msgid="884982626291842264" name="abc_capital_on">"ВКЛ."</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"клавиша за интервал"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ТърÑете…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ИзчиÑтване на заÑвката"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ЗаÑвка за търÑене"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ТърÑене"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Изпращане на заÑвката"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГлаÑово търÑене"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"СподелÑне ÑÑŠÑ:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"СподелÑне ÑÑŠÑ: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Свиване"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ТърÑене"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bn/values-bn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..bb35f9c788be06d1048dbca51e45ad62baa5d5e8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bn/values-bn.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"হোমে নেà¦à¦¿à¦—েট করà§à¦¨"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"উপরে নেà¦à¦¿à¦—েট করà§à¦¨"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"আরও বিকলà§à¦ª"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"হয়ে গেছে"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"সবগà§à¦²à¦¿ দেখà§à¦¨"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"à¦à¦•টি অà§à¦¯à¦¾à¦ª বেছে নিন"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"বনà§à¦§ আছে"</string> + <string msgid="884982626291842264" name="abc_capital_on">"চালৠকরà§à¦¨"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"মà§à¦›à§à¦¨"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"সারà§à¦š করà§à¦¨â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"কোয়েরি মà§à¦›à§‡ ফেলà§à¦¨"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"সারà§à¦š কোয়েরি"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"সারà§à¦š করà§à¦¨"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"কোয়েরি জমা দিন"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"à¦à¦¯à¦¼à§‡à¦¸ সারà§à¦š করà§à¦¨"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"শেয়ার করà§à¦¨"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-à¦à¦° সাথে শেয়ার করà§à¦¨"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨"</string> + <string msgid="6264217191555673260" name="search_menu_title">"সারà§à¦š করà§à¦¨"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bs/values-bs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e55146fe262c4df191281688d06955dd00396af --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-bs/values-bs.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Vratite se na poÄetnu stranicu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Idi gore"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ViÅ¡e opcija"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUÄŒENO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"UKLJUÄŒENO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"razmak"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pretražite..."</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ObriÅ¡i upit"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Pretraži upit"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretraži"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"PoÅ¡alji upit"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Dijeli sa"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Suzi"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pretražite"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ca/values-ca.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..0965d7ff50797ff4513b22c87d1db0235754c755 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ca/values-ca.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navega fins a la pà gina d\'inici"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navega cap amunt"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Més opcions"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Fet"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Mostra-ho tot"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVA"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVA"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Supr"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Retorn"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funció+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maj+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Espai"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Cerca…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Esborra la consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de cerca"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Cerca"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Envia la consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Cerca per veu"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Comparteix amb"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Comparteix amb <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Replega"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Cerca"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-cs/values-cs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..98e2c38f3a35800e5ad0cc72f144f782046f8fc7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-cs/values-cs.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"PÅ™ejÃt na plochu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"PÅ™ejÃt nahoru"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Dalšà možnosti"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Hotovo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Zobrazit vÅ¡e"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"VYP"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ZAP"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"mezernÃk"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Vyhledat…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Smazat dotaz"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Dotaz pro vyhledávánÃ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Hledat"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Odeslat dotaz"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Hlasové vyhledávánÃ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"SdÃlet s"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"SdÃlet s aplikacà <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Sbalit"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Hledat"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-da/values-da.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad6a80dfd7fe421538b717124e86f10c5af3fa2b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-da/values-da.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Find hjem"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"GÃ¥ op"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Flere valgmuligheder"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Udfør"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Se alle"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Vælg en app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"FRA"</string> + <string msgid="884982626291842264" name="abc_capital_on">"TIL"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"slet"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"mellemrum"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Søg…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Ryd forespørgsel"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Søgeforespørgsel"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Søg"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Indsend forespørgsel"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Talesøgning"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Del med"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skjul"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Søg"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-de/values-de.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..b8492ea7d375df60fb9074f447ebafe82240d1ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-de/values-de.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Zur Startseite"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Nach oben"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Weitere Optionen"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Fertig"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Alle anzeigen"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"App auswählen"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"AUS"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AN"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Strg +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Löschen"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Eingabetaste"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funktionstaste +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta-Taste +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Umschalttaste +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Leertaste"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym-Taste +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menütaste +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Suchen…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Suchanfrage löschen"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Suchanfrage"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Suche"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Anfrage senden"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Sprachsuche"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Teilen mit"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Mit <ns1:g id="APPLICATION_NAME">%s</ns1:g> teilen"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Minimieren"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Suche"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-el/values-el.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..8ccb2061ae3d6250466519653003f8c52a88090b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-el/values-el.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Πλοήγηση στην αÏχική σελίδα"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Πλοήγηση Ï€Ïος τα επάνω"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ΠεÏισσότεÏες επιλογÎÏ‚"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ΤÎλος"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Εμφάνιση όλων"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ΕπιλÎξτε μια εφαÏμογή"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ΕÎΕΡΓΟΠΟΙΗΣΗ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"διάστημα"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Αναζήτηση…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ΔιαγÏαφή εÏωτήματος"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ΕÏώτημα αναζήτησης"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Αναζήτηση"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Υποβολή εÏωτήματος"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Κοινοποίηση σε"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Κοινοποίηση στην εφαÏμογή <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ΣÏμπτυξη"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Αναζήτηση"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rAU/values-en-rAU.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..da4f665637e33b820d45add61a5b6ff6a5e214b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Search"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rCA/values-en-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..da4f665637e33b820d45add61a5b6ff6a5e214b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Search"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rGB/values-en-rGB.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..da4f665637e33b820d45add61a5b6ff6a5e214b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Search"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rIN/values-en-rIN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..da4f665637e33b820d45add61a5b6ff6a5e214b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Search"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rXC/values-en-rXC.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000000000000000000000000000000000000..e57ba77d19aa428c214c16ee324c61cd6e8fc705 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€ŽNavigate home‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€ŽNavigate up‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€ŽMore options‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€ŽDone‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€ŽSee all‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€ŽChoose an app‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€â€â€ŽOFF‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="884982626291842264" name="abc_capital_on">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€ŽON‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€ŽAlt+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€Žâ€ŽCtrl+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Ždelete‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Ženter‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€ŽFunction+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽMeta+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€ŽShift+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žspace‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€ŽSym+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€â€â€Žâ€ŽMenu+‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€ŽSearch…‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€ŽClear query‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€ŽSearch query‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€ŽSubmit query‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€ŽVoice search‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€â€ŽShare with‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€ŽShare with ‎â€â€Žâ€Žâ€â€â€Ž<ns1:g id="APPLICATION_NAME">%s</ns1:g>‎â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Ž"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€ŽCollapse‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="6264217191555673260" name="search_menu_title">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es-rUS/values-es-rUS.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..555c72f4dc23fae5211cac79e4e0d1ad151e05f9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navegar a la página principal"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navegar hacia arriba"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Más opciones"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Listo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver todas"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Elegir una app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVAR"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVAR"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"borrar"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"intro"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Función+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Mayúscula+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espacio"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Buscar…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Borrar consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Búsqueda"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Buscar"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Búsqueda por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartir con"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Contraer"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Buscar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es/values-es.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfc815db84626a09590a959cb51f668649f186aa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-es/values-es.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ir a inicio"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Más opciones"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Hecho"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver todo"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVADO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVADO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Suprimir"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Intro"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Función +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Mayús +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Espacio"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Buscar…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Borrar consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de búsqueda"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Buscar"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Búsqueda por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartir con"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ocultar"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Buscar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-et/values-et.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..94ec06167b55a4047437d8df3eaceaa26f1aa605 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-et/values-et.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Liigu avalehele"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Liigu üles"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Valmis"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Valige rakendus"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"VÄLJAS"</string> + <string msgid="884982626291842264" name="abc_capital_on">"SEES"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"kustuta"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"sisestusklahv"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funktsiooniklahv +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Tõstuklahv +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"tühik"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menüü +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Otsige …"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Päringu tühistamine"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Otsingupäring"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Otsing"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Päringu esitamine"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Häälotsing"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Jaga:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Jagamine rakendusega <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ahendamine"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Otsing"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-eu/values-eu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d6dc006976ad5a3bae6c65a71d9d63859f507a9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-eu/values-eu.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Joan orri nagusira"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Joan gora"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Aukera gehiago"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Eginda"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESAKTIBATU"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AKTIBATU"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ktrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ezabatu"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"sartu"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funtzioa +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maius +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"zuriunea"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menua +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Bilatu…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Garbitu kontsulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Bilatu"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Bidali kontsulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ahozko bilaketa"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Partekatu honekin"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Partekatu <ns1:g id="APPLICATION_NAME">%s</ns1:g> aplikazioarekin"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Tolestu"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Bilatu"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fa/values-fa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..b0f7acf8a6e55d3d679b76540eef3c05c4a90ffb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fa/values-fa.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"پیمایش به ØµÙØÙ‡ اصلی"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Ø±ÙØªÙ† به بالا"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"تمام"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"دیدن همه"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"خاموش"</string> + <string msgid="884982626291842264" name="abc_capital_on">"روشن"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"‎Alt+‎"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"‎Ctrl+‎"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ØØ°Ù"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"‎Function+‎"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"‎Meta+‎"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"‎Shift+‎"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ÙØ§ØµÙ„Ù‡"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"‎Sym+‎"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"منو+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"جستجو…â€"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"پاک کردن Ù¾ÙØ±Ø³Ù…ان"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"درخواست جستجو"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"جستجو"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ارسال Ù¾ÙØ±Ø³Ù…ان"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"جستجوی Ú¯ÙØªØ§Ø±ÛŒ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"هم‌رسانی با"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"هم‌رسانی با <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ú©ÙˆÚ†Ú© کردن"</string> + <string msgid="6264217191555673260" name="search_menu_title">"جستجو"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fi/values-fi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce67c94d17b395ff13062af2d164fed3de157048 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fi/values-fi.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Siirry etusivulle"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Siirry ylös"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Lisäasetukset"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Valmis"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"POIS PÄÄLTÄ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"PÄÄLLÄ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Vaihto+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"välilyönti"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Valikko+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Haku…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Tyhjennä kysely"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Hakukysely"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Haku"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Lähetä kysely"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Puhehaku"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Jaa…"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Jaa: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Tiivistä"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Haku"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr-rCA/values-fr-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..e7bde509b73504ee19796cebe6ebf92012d1fbbb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Revenir en arrière"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Autres options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Terminé"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Tout afficher"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DÉSACTIVER"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVER"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"supprimer"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"entrée"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fonction+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Méta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maj+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espace"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Rechercher…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Effacer la requête"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Requête de recherche"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Rechercher"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Envoyer la requête"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Recherche vocale"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Partager avec"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Réduire"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Rechercher"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr/values-fr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..d1776689535da3637650b8df4ea5ca3b8394ef0b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-fr/values-fr.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Revenir en haut de la page"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Autres options"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"OK"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Tout afficher"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"NON"</string> + <string msgid="884982626291842264" name="abc_capital_on">"OUI"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"supprimer"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"entrée"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fonction+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Méta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maj+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espace"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Rechercher…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Effacer la requête"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Requête de recherche"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Rechercher"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Envoyer la requête"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Recherche vocale"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Partager avec"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Réduire"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Rechercher"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gl/values-gl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..7192e88896a780f2945ec12d658dba9138cdd8ad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gl/values-gl.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Vai ao inicio"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Vai cara arriba"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Máis opcións"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Feito"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver todo"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Selecciona unha aplicación"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVADO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVADO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"eliminar"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"intro"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Función +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maiús +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espazo"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Busca…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Borra a consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Busca a consulta"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Realiza buscas"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"EnvÃa a consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Busca por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Comparte contido con"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Comparte contido coa aplicación <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Contrae"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Buscar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gu/values-gu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..40e9edfb1f490da59c8eae48753d3bdfed4fe42d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-gu/values-gu.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ઘરનો રસà«àª¤à«‹ બતાવો"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ઉપર નૅવિગેટ કરો"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"વધૠવિકલà«àªªà«‹"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"થઈ ગયà«àª‚"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"બધી જà«àª“"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"àªàªªà«àª²àª¿àª•ેશન પસંદ કરો"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"બંધ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ચાલà«"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"શોધો…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"કà«àªµà«‡àª°à«€ સાફ કરો"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"શોધ કà«àªµà«‡àª°à«€"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"શોધો"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"કà«àªµà«‡àª°à«€ સબમિટ કરો"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ની સાથે શેર કરો"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"સંકà«àªšàª¿àª¤ કરો"</string> + <string msgid="6264217191555673260" name="search_menu_title">"શોધો"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-h720dp-v13/values-h720dp-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..e38bb90b3581627d059565973a7443441a887fe9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="abc_alert_dialog_button_bar_height">54dip</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hdpi-v4/values-hdpi-v4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..d5a138ef9b4a8d1276f694e95d0e0293771d92ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common"> + <item name="barLength">18.66dp</item> + <item name="gapBetweenBars">3.33dp</item> + <item name="drawableSize">24dp</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hi/values-hi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..04f8a0d447107a97998a99774a2cafde19b8fb8c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hi/values-hi.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"होम पेज पर जाà¤à¤‚"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"वापस जाà¤à¤‚"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ज़à¥à¤¯à¤¾à¤¦à¤¾ विकलà¥à¤ª"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"हो गया"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"सà¤à¥€ देखें"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"कोई à¤à¤ªà¥à¤²à¤¿à¤•ेशन चà¥à¤¨à¥‡à¤‚"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"बंद"</string> + <string msgid="884982626291842264" name="abc_capital_on">"चालू"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"खोजें…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"कà¥â€à¤µà¥‡à¤°à¥€ हटाà¤à¤‚"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"सरà¥à¤š कà¥à¤µà¥‡à¤°à¥€"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"खोजें"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"कà¥à¤µà¥‡à¤°à¥€ सबमिट करें"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"बोलकर खोजें"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"इससे शेयर करें:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> से शेयर करें"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"छोटा करें"</string> + <string msgid="6264217191555673260" name="search_menu_title">"खोजें"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hr/values-hr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..00d0532a1937e7a96d0bc293f14e3e6f10327a42 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hr/values-hr.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Idi na poÄetnu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Natrag"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ViÅ¡e opcija"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUÄŒENO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"UKLJUÄŒENO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"svemir"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pretražite…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"IzbriÅ¡i upit"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Upit za pretraživanje"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretraži"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"PoÅ¡alji upit"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Dijeli s"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Sažmi"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pretraži"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hu/values-hu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea65dae55c58abdc4366b1d27a4ef196ca1a95c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hu/values-hu.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ugrás a fÅ‘oldalra"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Fel"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"További lehetÅ‘ségek"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Kész"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Az összes megtekintése"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Válasszon alkalmazást"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"KI"</string> + <string msgid="884982626291842264" name="abc_capital_on">"BE"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Szóköz"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Keresés…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Lekérdezés törlése"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Keresési lekérdezés"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Keresés"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Lekérdezés küldése"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Hangalapú keresés"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Megosztás a következÅ‘vel:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Megosztás a következÅ‘ alkalmazással: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Összecsukás"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Keresés"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hy/values-hy.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..d6187ff185a26b93db543850b49a316c4a9e2793 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-hy/values-hy.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ£Õ¬ÕÕ¡Õ¾Õ¸Ö€ Õ§Õ»"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ÕŠÕ¡Õ¿Ö€Õ¡Õ½Õ¿ Õ§"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"Ô±Õ†Õ‹Ô±ÕÔµÔ¼"</string> + <string msgid="884982626291842264" name="abc_capital_on">"Õ„Ô»Ô±Õ‘Õ†ÔµÔ¼"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Õ¢Õ¡ÖÕ¡Õ¿"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Որոնում…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Õ‹Õ¶Õ»Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Կիսվել…"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Ô¿Õ«Õ½Õ¾Õ¥Õ¬ <ns1:g id="APPLICATION_NAME">%s</ns1:g> Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ« Õ´Õ«Õ»Õ¸ÖÕ¸Õ¾"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ô¾Õ¡Õ¬Õ¥Õ¬"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-in/values-in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..82a36275f51aaa5081ddbe3e574de6ad073616ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-in/values-in.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Tunjukkan jalan ke rumah"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Kembali ke atas"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Opsi lain"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Selesai"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Lihat semua"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"NONAKTIF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AKTIF"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spasi"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Telusuri..."</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Hapus kueri"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Telusuri kueri"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Telusuri"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Kirim kueri"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Penelusuran suara"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Bagikan dengan <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ciutkan"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Telusuri"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-is/values-is.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..edcc0c66762f2a19dac696cc5d261de754d3f2b3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-is/values-is.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Fara heim"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Fara upp"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Lokið"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Sjá allt"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Veldu forrit"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"SLÖKKT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"KVEIKT"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"eyða"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Aðgerðarlykill+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"bilslá"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Valmynd+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Leita…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Leitarfyrirspurn"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Leit"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Senda fyrirspurn"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Raddleit"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Deila með"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Deila með <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Minnka"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Leit"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-it/values-it.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..4eeb05aea41f4162f13c083d6203b0e64b021cc6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-it/values-it.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Portami a casa"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Torna indietro"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Altre opzioni"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Fine"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Mostra tutto"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Scelta di un\'app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"ALT +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"CTRL +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"CANC"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"INVIO"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"FUNZIONE +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"META +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"MAIUSC +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"SPAZIO"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"SYM +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"MENU +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Cerca…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Cancella query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Query di ricerca"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Cerca"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Invia query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ricerca vocale"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Condividi con"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Condividi tramite <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Comprimi"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Cerca"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-iw/values-iw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..f84485b15123e883babea50485a3a1611cd65d2a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-iw/values-iw.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"× ×™×•×•×˜ לדף הבית"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"× ×™×•×•×˜ למעלה"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"עוד ×פשרויות"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"סיו×"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"הצגת הכול"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"בחירת ×פליקציה"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"כבוי"</string> + <string msgid="884982626291842264" name="abc_capital_on">"מופעל"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+‎"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"מחיקה"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"רווח"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"תפריט+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"חיפוש…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"מחיקת הש×ילתה"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ש×ילתת חיפוש"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"חיפוש"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"שליחת ש×ילתה"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"חיפוש קולי"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"שיתוף ×¢×"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"שיתוף ×¢× <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"כיווץ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"חיפוש"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ja/values-ja.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..d39d888f2a38a25d81946093525c6f7034a78ce5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ja/values-ja.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ãƒ›ãƒ¼ãƒ ã«æˆ»ã‚‹"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"å‰ã«æˆ»ã‚‹"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ãã®ä»–ã®ã‚ªãƒ—ション"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"完了"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ã™ã¹ã¦è¡¨ç¤º"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"アプリã®é¸æŠž"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"検索…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"検索ã‚ーワードを削除"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"検索ã‚ーワード"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"検索"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"検索ã‚ーワードをé€ä¿¡"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"音声検索"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"共有"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ã¨å…±æœ‰"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"折りãŸãŸã‚€"</string> + <string msgid="6264217191555673260" name="search_menu_title">"検索"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ka/values-ka.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..642d3f1398c94b2aee2370f6bf95c2c30747fca1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ka/values-ka.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"მთáƒáƒ•áƒáƒ ზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ზემáƒáƒ— გáƒáƒ“áƒáƒ¡áƒ•ლáƒ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"სხვრვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"მზáƒáƒ“áƒáƒ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"áƒáƒ˜áƒ ჩიეთ áƒáƒžáƒ˜"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"გáƒáƒ›áƒáƒ თვáƒ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ჩáƒáƒ თვáƒ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"შáƒáƒ ისი"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ძიებáƒâ€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"მáƒáƒ—ხáƒáƒ•ნის ძიებáƒ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ძიებáƒ"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ“áƒáƒ’ზáƒáƒ•ნáƒ"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"გáƒáƒ–იáƒáƒ ებáƒ:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-ით გáƒáƒ–იáƒáƒ ებáƒ"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ჩáƒáƒ™áƒ”ცვáƒ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ძიებáƒ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kk/values-kk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..2131d8f75a73b4ef5c289c6d9b9f4e0607d3695a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kk/values-kk.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ðегізгі бетке өту"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Жоғары қарай өту"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"БаÑқа опциÑлар"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Дайын"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ӨШІРУ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ҚОСУ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Ð±Ð¾Ñ Ð¾Ñ€Ñ‹Ð½"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Іздеу…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Сұрауды өшіру"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Іздеу Ñұрауы"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Іздеу"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Сұрауды жіберу"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ДауыÑпен іздеу"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"БөліÑу"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> қолданбаÑымен бөліÑу"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Жию"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Іздеу"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-km/values-km.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..49d432c55a974d0f7dc67d6a93ca632d4e0eb558 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-km/values-km.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"​ទៅទំពáŸážšážŠáž¾áž˜"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"រំកិលឡើងលើ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ជម្រើសច្រើនទៀáž"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"រួចរាល់"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"មើលទាំងអស់"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ជ្រើសរើស​កម្មវិធី​​"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"បិទ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"បើក"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"លុប"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ស្វែងរក…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ស្វែងរកសំណួរ​"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ស្វែងរក"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ដាក់បញ្ជូន​សំណួរ"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ស្វែងរក​ážáž¶áž˜â€‹ážŸáŸ†áž¡áŸáž„"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជា​មួយ"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ចែក​រំលែក​ជា​មួយ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"បង្រួម"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ស្វែងរក"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kn/values-kn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..bacc180c9a1956858f65f9ef0c03f958df1b2b3a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-kn/values-kn.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ಹೋಮà³â€Œà²—ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ಮೇಲಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•ೆಗಳà³"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ಮà³à²—ಿದಿದೆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ಆà³à²¯à²ªà³â€Œà²µà³Šà²‚ದನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ಆಫà³"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ಆನà³"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ಹà³à²¡à³à²•ಿ…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸಿ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•ಿ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ಹà³à²¡à³à²•ಿ"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à²¿"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•ಾಟ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ನೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ಕà³à²—à³à²—ಿಸಿ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ಹà³à²¡à³à²•ಿ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ko/values-ko.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..66a938a751bd56644b7782f718fa25fb73ec641d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ko/values-ko.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"홈으로 ì´ë™"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"위로 ì´ë™"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"추가 옵션"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"완료"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ì „ì²´ 보기"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"앱 ì„ íƒ"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"사용 중지"</string> + <string msgid="884982626291842264" name="abc_capital_on">"사용"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"스페ì´ìŠ¤ë°”"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"검색..."</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"검색어 ì‚ì œ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"검색어"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"검색"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"검색어 보내기"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ìŒì„± 검색"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ê³µìœ ëŒ€ìƒ:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ê³¼(와) ê³µìœ "</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ì ‘ê¸°"</string> + <string msgid="6264217191555673260" name="search_menu_title">"검색"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ky/values-ky.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f7d0a6c1ce4c14ba8f8ed558ec7d916df063ac7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ky/values-ky.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Башкы бетке чабыттоо"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Мурунку Ñкранга өтүү"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Дагы параметрлер"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Бүттү"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Баарын көрүү"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ӨЧҮК"</string> + <string msgid="884982626291842264" name="abc_capital_on">"КҮЙҮК"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"боштук"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Издөө…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Сурамды өчүрүү"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Изделген Ñурам"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Издөө"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Сурам тапшыруу"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ðйтып издөө"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Төмөнкү менен бөлүшүү"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> аркылуу бөлүшүү"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Жыйыштыруу"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Издөө"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-land/values-land.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-land/values-land.xml new file mode 100644 index 0000000000000000000000000000000000000000..a12899f93535f8a3eb5107cbba741b561f81844e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-land/values-land.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="abc_action_bar_default_height_material">48dp</dimen> + <dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen> + <dimen name="abc_text_size_title_material_toolbar">14dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-large-v4/values-large-v4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..cc236ebd9c9bfc4d57f8e5eb3ce5f16c233569ec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-large-v4/values-large-v4.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="abc_config_prefDialogWidth">440dp</dimen> + <item name="abc_dialog_fixed_height_major" type="dimen">60%</item> + <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item> + <item name="abc_dialog_fixed_width_major" type="dimen">60%</item> + <item name="abc_dialog_fixed_width_minor" type="dimen">90%</item> + <item name="abc_dialog_min_width_major" type="dimen">55%</item> + <item name="abc_dialog_min_width_minor" type="dimen">80%</item> + <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ldltr-v21/values-ldltr-v21.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ldltr-v21/values-ldltr-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..1bdd835a6ea700cebab37f5242380ebd379f5612 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ldltr-v21/values-ldltr-v21.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lo/values-lo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lo/values-lo.xml new file mode 100644 index 0000000000000000000000000000000000000000..aa37229b69b42b209e81e6d4eb011d1ced3af026 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lo/values-lo.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"àºàº±àºšà»„ປໜ້າຫຼັàº"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ເລື່àºàº™àº‚ຶ້ນເທິງ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ຕົວເລືàºàºà»€àºžàºµà»ˆàº¡à»€àº•ີມ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"à»àº¥à»‰àº§à»†"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງà»àº»àº”"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ເລືàºàºà»àºàº±àºš"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ປິດ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ເປີດ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ລຶບ"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"àºàº°àº«àº§à»ˆàº²àº‡"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ຊàºàºàº«àº²â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ຄຳສຳລັບຄົ້ນຫາ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ຊàºàºàº«àº²"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ສົ່ງຂà»à»‰àº¡àº¹àº™"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"à»àºšà»ˆàº‡àº›àº±àº™àº”້ວຠ<ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ຫàºà»à»‰àº¥àº»àº‡"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ຊàºàºàº«àº²"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lt/values-lt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lt/values-lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..115349a8564405d1c55080cdfc83e1e0f01ffda6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lt/values-lt.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"NarÅ¡yti aukÅ¡tyn"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Daugiau parinkÄių"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Atlikta"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Žr. viskÄ…"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Pasirinkite programÄ…"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"IÅ JUNGTI"</string> + <string msgid="884982626291842264" name="abc_capital_on">"Ä®JUNGTI"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"„Alt“ +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"„Ctrl“ +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"„delete“"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"„enter“"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"„Function“ +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"„Meta“ +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"„Shift“ +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"„space“"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"„Sym“ +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"„Menu“ +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"IeÅ¡koti…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"IÅ¡valyti užklausÄ…"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"PaieÅ¡kos užklausa"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"IeÅ¡koti"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Pateikti užklausÄ…"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"PaieÅ¡ka balsu"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Bendrinti su"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant programÄ… „<ns1:g id="APPLICATION_NAME">%s</ns1:g>“"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Sutraukti"</string> + <string msgid="6264217191555673260" name="search_menu_title">"IeÅ¡koti"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lv/values-lv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lv/values-lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..aa952d96c24399bc35f74d5753cb8ac7c82ae575 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-lv/values-lv.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"PÄrvietoties uz sÄkuma ekrÄnu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"PÄrvietoties uz augÅ¡u"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Citas opcijas"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gatavs"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"SkatÄ«t visu"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"IzvÄ“lieties lietotni"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"IZSLÄ’GT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"IESLÄ’GT"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alternēšanas taustiņš +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Vadīšanas taustiņš +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"dzēšanas taustiņš"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"ievadīšanas taustiņš"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funkcijas taustiņš +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta taustiņš +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"PÄrslÄ“gÅ¡anas taustiņš +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"atstarpes taustiņš"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Simbolu taustiņš +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Poga IzvÄ“lne +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"MeklÄ“jiet…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"NotÄ«rÄ«t vaicÄjumu"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Meklēšanas vaicÄjums"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"MeklÄ“t"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Iesniegt vaicÄjumu"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"MeklÄ“t ar balsi"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"KopÄ«got ar:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"KopÄ«got ar lietojumprogrammu <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Sakļaut"</string> + <string msgid="6264217191555673260" name="search_menu_title">"MeklÄ“t"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mk/values-mk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mk/values-mk.xml new file mode 100644 index 0000000000000000000000000000000000000000..5bdc59e7d3bc881dfe8ebf9bc994b377d429a2b8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mk/values-mk.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Движи Ñе кон дома"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Движи Ñе нагоре"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Повеќе опции"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Прикажи ги Ñите"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Избери апликација"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ИСКЛУЧЕÐО"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ВКЛУЧЕÐО"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"избриши"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"вÑелена"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Пребарување…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ИÑчиÑти барање"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Пребарај барање"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Пребарај"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ИÑпрати барање"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГлаÑовно пребарување"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Сподели Ñо"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Сподели Ñо <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Собери"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Пребарај"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ml/values-ml.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ml/values-ml.xml new file mode 100644 index 0000000000000000000000000000000000000000..62458223099cc1b83d54a146d54622e1ce4618a8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ml/values-ml.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ഹോമിലേകàµà´•ൠപോവàµà´•"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"à´®àµà´•ളിലേകàµà´•ൠപോവàµà´•"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"കൂടàµà´¤àµ½ à´“à´ªàµà´·à´¨àµà´•ൾ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"പൂർതàµà´¤à´¿à´¯à´¾à´¯à´¿"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"à´Žà´²àµà´²à´¾à´‚ കാണàµà´•"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ആപàµà´ªàµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"à´“à´«àµ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ഓൺ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ഇലàµà´²à´¾à´¤à´¾à´•àµà´•àµà´•"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"à´«à´‚à´—àµà´·à´¨àµâ€+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"മെറàµà´±+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"à´¸àµâ€Œà´ªàµ†à´¯àµâ€Œà´¸àµ"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"മെനàµ+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"തിരയàµà´•…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ചോദàµà´¯à´‚ മായàµâ€Œà´•àµà´•àµà´•"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ചോദàµà´¯à´‚ തിരയàµà´•"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"തിരയàµà´•"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ചോദàµà´¯à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"സംസാരതàµà´¤à´¿à´²àµ‚ടെ തിരയàµà´•"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ഇനിപàµà´ªà´±à´¯àµà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"à´šàµà´°àµà´•àµà´•àµà´•"</string> + <string msgid="6264217191555673260" name="search_menu_title">"തിരയàµà´•"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mn/values-mn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mn/values-mn.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc354e1c647d213659f91154cf48718d92efb674 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mn/values-mn.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ ÑƒÑ€ÑƒÑƒ шилжих"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ДÑÑш шилжих"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"БуÑад Ñонголт"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"БолÑон"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Ðппыг Ñонгох"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ИДÐВХГҮЙ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ИДÐВХТÐЙ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"уÑтгах"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"оруулах"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Функц+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Мета+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Шифт+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"зай"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"ЦÑÑ+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Хайх…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ÐÑуулга арилгах"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Хайх аÑуулга"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Хайх"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ÐÑуулга илгÑÑÑ…"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Дуут хайлт"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Дараахтай хуваалцах"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-тай хуваалцах"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Буулгах"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Хайх"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mr/values-mr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mr/values-mr.xml new file mode 100644 index 0000000000000000000000000000000000000000..39f93552f733554f031d6db12b33c1fa0a35461e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-mr/values-mr.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"घराकडे नेवà¥à¤¹à¤¿à¤—ेट करा"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"वर नेवà¥â€à¤¹à¤¿à¤—ेट करा"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"आणखी परà¥à¤¯à¤¾à¤¯"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"पूरà¥à¤£ à¤à¤¾à¤²à¥‡"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"सरà¥à¤µ पहा"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"अâ€à¥…प निवडा"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"बंद"</string> + <string msgid="884982626291842264" name="abc_capital_on">"सà¥à¤°à¥‚"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"हटवा"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"à¤à¤‚टर करा"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"मेनू+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"शोधा…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"कà¥â€à¤µà¥‡à¤°à¥€ साफ करा"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"शोध कà¥à¤µà¥‡à¤°à¥€"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"शोधा"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"कà¥à¤µà¥‡à¤°à¥€ सबमिट करा"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"वà¥à¤¹à¥‰à¤‡à¤¸ शोध"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"यांचà¥à¤¯à¤¾à¤¸à¥‹à¤¬à¤¤ शेअर करा"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> सह शेअर करा"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"कोलॅपà¥à¤¸ करा"</string> + <string msgid="6264217191555673260" name="search_menu_title">"शोध"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ms/values-ms.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ms/values-ms.xml new file mode 100644 index 0000000000000000000000000000000000000000..8207ce32c444900cb5595b60538d8b92d4ef676c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ms/values-ms.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigasi laman utama"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigasi ke atas"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Lagi pilihan"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Selesai"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Lihat semua"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Pilih apl"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"MATI"</string> + <string msgid="884982626291842264" name="abc_capital_on">"HIDUP"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fungsi+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ruang"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Cari…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Pertanyaan carian"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Cari"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Serah pertanyaan"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Carian suara"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Kongsi dengan <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Runtuhkan"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Cari"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-my/values-my.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-my/values-my.xml new file mode 100644 index 0000000000000000000000000000000000000000..ccf19c420e8ae205fec6d816d2169d2b175ab454 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-my/values-my.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"မူလနေရာကá€á€¯ ပြန်သွားရန်"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"အပေါ်သá€á€¯á€· ရွှေ့ရန်"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"နောက်ထပ် ရွေးစရာများ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ပြီးပြီ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"အားလုံး ကြည့်ရန်"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"အက်ပ်á€á€…်á€á€¯á€€á€á€¯ ရွေးရန်"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ပá€á€á€º"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ဖွင့်"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ရှာဖွေရန်…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ရှာဖွေမှုကá€á€¯ ဖယ်ရှားရန်"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ရှာဖွေရန် မေးá€á€½á€”်း"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ရှာရန်"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ ပေးပá€á€¯á€·á€›á€”်"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"အသံဖြင့် ရှာရန်"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"နှင့် မျှá€á€±á€›á€”်"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ဖြင့် မျှá€á€±á€›á€”်"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"လျှော့ပြရန်"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ရှာဖွေမှု"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nb/values-nb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nb/values-nb.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0a61a6294caf38462fc6e9b0a9a624f1b23e951 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nb/values-nb.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Naviger hjem"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"GÃ¥ opp"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Flere alternativer"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Ferdig"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Se alle"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Velg en app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"AV"</string> + <string msgid="884982626291842264" name="abc_capital_on">"PÃ…"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"slett"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksjon+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"mellomrom"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Meny+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Søk"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Slett søket"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Søkeord"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Søk"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Utfør søket"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Talesøk"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Del med"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skjul"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Søk"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ne/values-ne.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ne/values-ne.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f4bfc0847d06a0d30121bf57c78d9a9ce89e3a3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ne/values-ne.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"होम पेजमा जानà¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"माथि नेà¤à¤¿à¤—ेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"थप विकलà¥à¤ªà¤¹à¤°à¥‚"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"à¤à¤‰à¤Ÿà¤¾ à¤à¤ª छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"निषà¥à¤•à¥à¤°à¤¿à¤¯"</string> + <string msgid="884982626291842264" name="abc_capital_on">"सकà¥à¤°à¤¿à¤¯"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"कà¥à¤µà¥‡à¤°à¥€ खाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"खोज पà¥à¤°à¤¶à¥à¤¨"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"खोज"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"कà¥à¤µà¥‡à¤°à¥€ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"आवाजमा आधारित खोजी"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"यसमारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> मारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"संकà¥à¤·à¤¿à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="6264217191555673260" name="search_menu_title">"खोज"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-night-v8/values-night-v8.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-night-v8/values-night-v8.xml new file mode 100644 index 0000000000000000000000000000000000000000..4185030c4394d42f856451730384d58e1d5c5838 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-night-v8/values-night-v8.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/> + <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/> + <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/> + <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/> + <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/> + <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/> + <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/> + <style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Dark"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nl/values-nl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nl/values-nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..8550571362a8ebc60d6b8e54f42b1398683d677f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-nl/values-nl.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Omhoog navigeren"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Meer opties"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Klaar"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Alles tonen"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Een app selecteren"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"UIT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AAN"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Functie +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spatie"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Zoeken…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Zoekopdracht"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Zoeken"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Delen met"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Delen met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Samenvouwen"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Zoeken"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-or/values-or.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-or/values-or.xml new file mode 100644 index 0000000000000000000000000000000000000000..110851d99a78b12a8bf7aff7eea67bfedde59c9f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-or/values-or.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ହà‹à¬®à ପà‡à¬œà‌କà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ଉପରକà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ଅଧିକ ବିକଳàପ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ହà‹à¬‡à¬—ଲା"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ସବà ଦà‡à¬–ନàତà"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ଗà‹à¬Ÿà¬¿à¬ ଆପà†ବାଛନàତà"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ବନàଦ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ଚାଲà ଅଛି"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ଡିଲିଟà‌ କରନàତà"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"à¬à¬£àଟରà"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ସàପà‡à¬¸àâ€"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"ମà‡à¬¨à"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ସରàଚàଚ କରନàତà…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"କàà±à‡à¬°à€ ଖାଲି କରନàତà"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ସରàଚàଚ କàà±à‡à¬°à€"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ସନàଧାନ କରନàତà"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"କàà±à‡à¬°à€ ଦାଖଲ କରନàତà"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"à¬à¬à¬¸à‌ ସରàଚàଚ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"à¬à¬¹à¬¾à¬™àକ ସହ ସà‡àŸà¬¾à¬°à‌ କରନàତà"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ସହ ସà‡àŸà¬¾à¬°à†କରନàତà"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ସଂକàଚିତ କରନàତà"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ସନàଧାନ କରନàତà"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pa/values-pa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pa/values-pa.xml new file mode 100644 index 0000000000000000000000000000000000000000..eaec8956d12559987b08d88bf368cff9ce4ad451 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pa/values-pa.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ਹੋਮ \'ਤੇ ਜਾਓ"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ਉੱਪਰ ਜਾਓ"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ਹੋਰ ਵਿਕਲਪ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ਸਠਦੇਖੋ"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ਇੱਕ à¨à¨ª ਚà©à¨£à©‹"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ਬੰਦ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ਚਾਲੂ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ਮਿਟਾਓ"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ਖੋਜ…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ਪà©à©±à¨›à¨—ਿੱਛ ਕਲੀਅਰ ਕਰੋ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ਖੋਜ ਪà©à©±à¨›à¨—ਿੱਛ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ਖੋਜ"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ਪà©à©±à¨›à¨—ਿੱਛ ਸਪà©à¨°à¨¦ ਕਰੋ"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ਅਵਾਜ਼ੀ ਖੋਜ"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ਸਮੇਟੋ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ਖੋਜ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pl/values-pl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pl/values-pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..b73f2f2495aed3e62fe5bb030342939d281bba6a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pl/values-pl.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Przejdź na stronÄ™ głównÄ…"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Przejdź wyżej"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"WiÄ™cej opcji"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gotowe"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Pokaż wszystko"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Wybierz aplikacjÄ™"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"WYÅ."</string> + <string msgid="884982626291842264" name="abc_capital_on">"WÅ."</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funkcyjny+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spacja"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Szukaj…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Zapytanie"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Szukaj"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"WyÅ›lij zapytanie"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Wyszukiwanie gÅ‚osowe"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"UdostÄ™pnij przez:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"UdostÄ™pnij przez: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ZwiÅ„"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Szukaj"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-port/values-port.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-port/values-port.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a925dc76dd9a44fcb871d2a7ed379f9c50b5a3d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-port/values-port.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <bool name="abc_action_bar_embed_tabs">false</bool> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rBR/values-pt-rBR.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rBR/values-pt-rBR.xml new file mode 100644 index 0000000000000000000000000000000000000000..37d2e13d3b40b4ec326fd6bc3dbb0a8861f39575 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rBR/values-pt-rBR.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navegar para a página inicial"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navegar para cima"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Mais opções"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ConcluÃdo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver tudo"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Selecionar um app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESATIVADO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ATIVADO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espaço"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pesquisar…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Limpar consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de pesquisa"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pesquisar"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Pesquisa por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartilhar com"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Recolher"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pesquisar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rPT/values-pt-rPT.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 0000000000000000000000000000000000000000..d36135dc29aaad956a33386fc79fdf8873b6b34b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navegar para casa"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navegar para cima"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Mais opções"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ConcluÃdo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver tudo"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Escolher uma app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESATIVADO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ATIVADO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"eliminar"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Função +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espaço"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pesquisar…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Limpar consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de pesquisa"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pesquisar"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Pesquisa por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Partilhar com"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Partilhar com a app <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Reduzir"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pesquisar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt/values-pt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt/values-pt.xml new file mode 100644 index 0000000000000000000000000000000000000000..37d2e13d3b40b4ec326fd6bc3dbb0a8861f39575 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-pt/values-pt.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navegar para a página inicial"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navegar para cima"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Mais opções"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ConcluÃdo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver tudo"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Selecionar um app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DESATIVADO"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ATIVADO"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espaço"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Pesquisar…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Limpar consulta"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de pesquisa"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Pesquisar"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Pesquisa por voz"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartilhar com"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Recolher"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Pesquisar"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ro/values-ro.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ro/values-ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0a679583015f91e10baa14bc53a469f6d3a48c9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ro/values-ro.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"NavigaÈ›i la ecranul de pornire"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"NavigaÈ›i în sus"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Mai multe opÈ›iuni"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Gata"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"AfiÈ™aÈ›i tot"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"AlegeÈ›i o aplicaÈ›ie"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"DEZACTIVAT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ACTIVAT"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Meniu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"CăutaÈ›i…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ȘtergeÈ›i interogarea"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Termen de căutare"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"CăutaÈ›i"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"TrimiteÈ›i interogarea"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Căutare vocală"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"TrimiteÈ›i la"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"TrimiteÈ›i folosind <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"RestrângeÈ›i"</string> + <string msgid="6264217191555673260" name="search_menu_title">"CăutaÈ›i"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ru/values-ru.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ru/values-ru.xml new file mode 100644 index 0000000000000000000000000000000000000000..258cf11229a694fc9e61e77e66d73aa7b59dbd85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ru/values-ru.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Перейти на главный Ñкран"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Перейти вверх"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Ещё"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Показать вÑе"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Выберите приложение"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ВЫКЛ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ВКЛ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Ввод"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Пробел"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Меню +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Введите запроÑ"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Удалить запроÑ"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"ПоиÑковый запроÑ"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ПоиÑк"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Отправить запроÑ"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГолоÑовой поиÑк"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Свернуть"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ПоиÑк"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-si/values-si.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-si/values-si.xml new file mode 100644 index 0000000000000000000000000000000000000000..f09a86b464e5a538ff6a59dcc4e079bfbfcb3404 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-si/values-si.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"මුල් පිටුවට සංචà·à¶½à¶±à¶º කරන්න"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"ඉහළට සංචà·à¶½à¶±à¶º කරන්න"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"à¶à·€à¶à·Š විකල්ප"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"à¶šà·…à·"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"යෙදුමක් à¶à·à¶»à¶±à·Šà¶±"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"à¶šà·Šâ€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’"</string> + <string msgid="884982626291842264" name="abc_capital_on">"à¶šà·Šâ€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"මකන්න"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"සොයන්න..."</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"සෙවීම"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"හඬ සෙවීම"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"සමග බෙද෠ගන්න"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> සමඟ බෙද෠ගන්න"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"හකුළන්න"</string> + <string msgid="6264217191555673260" name="search_menu_title">"සෙවීම"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sk/values-sk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sk/values-sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..821e2965774596903dd83654e48d5b4140ece050 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sk/values-sk.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"PrejsÅ¥ na plochu"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"PrejsÅ¥ nahor"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ÄŽalÅ¡ie možnosti"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Hotovo"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ZobraziÅ¥ vÅ¡etky"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"VybraÅ¥ aplikáciu"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"VYP."</string> + <string msgid="884982626291842264" name="abc_capital_on">"ZAP."</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"odstrániÅ¥"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"medzernÃk"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Vyhľadať…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"VymazaÅ¥ dopyt"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Vyhľadávacà dopyt"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"HľadaÅ¥"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"OdoslaÅ¥ dopyt"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ZdieľaÅ¥ s"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ZdieľaÅ¥ s aplikáciou <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ZbaliÅ¥"</string> + <string msgid="6264217191555673260" name="search_menu_title">"HľadaÅ¥"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sl/values-sl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sl/values-sl.xml new file mode 100644 index 0000000000000000000000000000000000000000..1e0a452ab4e829caa487b025f12574719b227223 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sl/values-sl.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Krmarjenje na zaÄetek"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Pomik navzgor"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"VeÄ možnosti"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"KonÄano"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"IZKLOP"</string> + <string msgid="884982626291842264" name="abc_capital_on">"VKLOP"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"preslednica"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Meni +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Iskanje …"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Izbris poizvedbe"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Iskalna poizvedba"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Iskanje"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"PoÅ¡iljanje poizvedbe"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovno iskanje"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Deljenje z:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Deljenje z drugimi prek aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Strnitev"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Iskanje"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sq/values-sq.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sq/values-sq.xml new file mode 100644 index 0000000000000000000000000000000000000000..04f3aec7456243dc2633cb3827ba727738f6816b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sq/values-sq.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Ngjitu lart"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Opsione të tjera"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"U krye"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Shfaq çdo gjë"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"JOAKTIV"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AKTIV"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksioni+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"hapësirë"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menyja+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Kërko…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Pastro pyetjen"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Kërko pyetjen"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Kërko"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Dërgo pyetjen"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Kërkim me zë"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Ndaje me"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Ndaje me <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Palos"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Kërko"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sr/values-sr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sr/values-sr.xml new file mode 100644 index 0000000000000000000000000000000000000000..b370616570f10cff157cfded4e45acc7031d7a5c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sr/values-sr.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Идите на почетну"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Идите нагоре"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Још опција"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Прикажи Ñве"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Изаберите апликацију"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ИСКЉУЧЕÐО"</string> + <string msgid="884982626291842264" name="abc_capital_on">"УКЉУЧЕÐО"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"таÑтер за размак"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Претражите…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Обришите упит"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Претражите упит"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Претражите"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Пошаљите упит"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГлаÑовна претрага"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Делите помоћу"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Делите помоћу апликације <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Скупи"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Претражите"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sv/values-sv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sv/values-sv.xml new file mode 100644 index 0000000000000000000000000000000000000000..48f392d218f37f01482e3aa638dd37b4275415e6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sv/values-sv.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigera hem"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigera uppÃ¥t"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Fler alternativ"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Klar"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Visa alla"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Välj en app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"AV"</string> + <string msgid="884982626291842264" name="abc_capital_on">"PÃ…"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt + "</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl + "</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"retur"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funktion + "</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta + "</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Skift + "</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"blanksteg"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Symbol + "</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Meny + "</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Sök …"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Ta bort frÃ¥gan"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"SökfrÃ¥ga"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Sök"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Skicka frÃ¥ga"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Röstsökning"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Dela med"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Dela med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Komprimera"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Sök"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw/values-sw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw/values-sw.xml new file mode 100644 index 0000000000000000000000000000000000000000..5574eafca3c1c127ea9ae983c44055d531f112d2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw/values-sw.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Nenda mwanzo"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Sogeza juu"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Nimemaliza"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Angalia zote"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Chagua programu"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"IMEZIMWA"</string> + <string msgid="884982626291842264" name="abc_capital_on">"IMEWASHWA"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Tafuta…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Futa hoja"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Hoja ya utafutaji"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Tafuta"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Wasilisha hoja"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Kutafuta kwa kutamka"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Shiriki na"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Shiriki ukitumia <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Kunja"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Tafuta"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..be7c95f3d268a32e694dd5b5f4de09d11152a77e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="abc_action_bar_content_inset_material">24dp</dimen> + <dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen> + <dimen name="abc_action_bar_default_height_material">64dp</dimen> + <dimen name="abc_action_bar_default_padding_end_material">8dp</dimen> + <dimen name="abc_action_bar_default_padding_start_material">8dp</dimen> + <dimen name="abc_config_prefDialogWidth">580dp</dimen> + <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen> + <dimen name="abc_text_size_title_material_toolbar">20dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ta/values-ta.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..dcb0db1de047b492b0a0653c43a08c3b7d1f1f63 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ta/values-ta.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"à®®à¯à®•பà¯à®ªà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"மேலே செலà¯à®²à¯à®®à¯"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•ளà¯"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"அனைதà¯à®¤à¯ˆà®¯à¯à®®à¯ காடà¯à®Ÿà¯"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ஆபà¯à®¸à¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ஆஃபà¯"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ஆனà¯"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt மறà¯à®±à¯à®®à¯"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl மறà¯à®±à¯à®®à¯"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function மறà¯à®±à¯à®®à¯"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta மறà¯à®±à¯à®®à¯"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift மறà¯à®±à¯à®®à¯"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym மறà¯à®±à¯à®®à¯"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu மறà¯à®±à¯à®®à¯"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"தேடà¯à®•…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"வினவலை அழிகà¯à®•à¯à®®à¯"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"தேடல௠வினவலà¯"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"தேடà¯à®®à¯"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"வினவலைச௠சமரà¯à®ªà¯à®ªà®¿à®•à¯à®•à¯à®®à¯"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"கà¯à®°à®²à¯ தேடலà¯"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"இதில௠பகிரà¯"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> மூலம௠பகிரà¯"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"சà¯à®°à¯à®•à¯à®•à¯à®®à¯"</string> + <string msgid="6264217191555673260" name="search_menu_title">"தேடலà¯"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-te/values-te.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..7d19b5fe6eccad5fcfcfe648cb3ec0705d96c876 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-te/values-te.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"హోమà±â€Œà°•ౠనావిగేటౠచేసà±à°¤à±à°‚ది"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"పైకి నావిగేటౠచేసà±à°¤à±à°‚ది"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"మరినà±à°¨à°¿ ఆపà±à°·à°¨à±â€Œà°²à±"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"పూరà±à°¤à°¯à°¿à°‚ది"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"à°…à°¨à±à°¨à±€ చూడండి"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"యాపà±â€Œà°¨à± à°Žà°‚à°šà±à°•ోండి"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ఆఫà±"</string> + <string msgid="884982626291842264" name="abc_capital_on">"ఆనà±"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"à°¸à±à°ªà±‡à°¸à±"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"సెరà±à°šà± చేయండి…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"à°ªà±à°°à°¶à±à°¨à°¨à± తీసివేసà±à°¤à±à°‚ది"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"సెరà±à°šà± à°•à±à°µà±†à°°à±€"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"సెరà±à°šà±"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°¸à±à°¤à±à°‚ది"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"వాయిసౠసెరà±à°šà±"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"వీరితో షేరౠచేసà±à°¤à±à°‚ది"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>తో షేరౠచేసà±à°¤à±à°‚ది"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"à°•à±à°¦à°¿à°¸à±à°¤à±à°‚ది"</string> + <string msgid="6264217191555673260" name="search_menu_title">"సెరà±à°šà±"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-th/values-th.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..58dae3a1139fed2525aa537250c02e76cea16288 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-th/values-th.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"นำทางไปหน้าà¹à¸£à¸"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"à¸à¸¥à¸±à¸š"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"เสร็จ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"เลืà¸à¸à¹à¸à¸›"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ปิด"</string> + <string msgid="884982626291842264" name="abc_capital_on">"เปิด"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ลบ"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"เมนู+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"ค้นหา…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ล้างคำค้นหา"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"คำค้นหา"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"ค้นหา"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ส่งคำค้นหา"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"à¹à¸Šà¸£à¹Œà¸à¸±à¸š"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"à¹à¸Šà¸£à¹Œà¸—าง <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ยุบ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"ค้นหา"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tl/values-tl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..41792928151019e0af5f1438a53b2430a2dde980 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tl/values-tl.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Mag-navigate sa home"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Mag-navigate pataas"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Higit pang opsyon"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Tapos na"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Pumili ng app"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"I-OFF"</string> + <string msgid="884982626291842264" name="abc_capital_on">"I-ON"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Maghanap…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"I-clear ang query"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Query sa paghahanap"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Maghanap"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Isumite ang query"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Ibahagi gamit ang <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"I-collapse"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Maghanap"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tr/values-tr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..53948621b69ed64a7c433a81bf3c6f39977bb052 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-tr/values-tr.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Eve gidiÅŸ yolunu göster"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Yukarı git"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"DiÄŸer seçenekler"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Bitti"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"KAPAT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"AÇ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"sil"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Üst Karakter+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"boÅŸluk"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menü+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Ara…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Sorguyu temizle"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Arama sorgusu"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Ara"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Sorguyu gönder"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Sesli arama"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Åžununla paylaÅŸ:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ile paylaÅŸ"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Daralt"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Ara"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uk/values-uk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5bb9797091def8ae7dbba97dfb6a83c60618870 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uk/values-uk.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Перейти на головну"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Перейти вгору"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Більше опцій"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Показати вÑÑ–"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Вибрати програму"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"ЗÐИЖКÐ"</string> + <string msgid="884982626291842264" name="abc_capital_on">"УВІМК."</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"пробіл"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Введіть пошуковий запит…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"ОчиÑтити запит"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Пошуковий запит"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Пошук"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"ÐаіÑлати запит"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"ГолоÑовий пошук"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ПоділитиÑÑ:"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ПоділитиÑÑ Ñ‡ÐµÑ€ÐµÐ· додаток <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Згорнути"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Пошук"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ur/values-ur.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..7bb84fa5372b4faba68343509d55a78c11160216 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-ur/values-ur.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"گھر Ú©ÛŒ طر٠نیویگیٹ کریں"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"مزید اختیارات"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"ÛÙˆ گیا"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"Ø¢Ù"</string> + <string msgid="884982626291842264" name="abc_capital_on">"آن"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+‎"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+‎"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+‎"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+‎"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+‎"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+‎"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+‎"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"تلاش کریں…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Ø§Ø³ØªÙØ³Ø§Ø± صا٠کریں"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"تلاش کا Ø§Ø³ØªÙØ³Ø§Ø±"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"تلاش کریں"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Ø§Ø³ØªÙØ³Ø§Ø± جمع کرائیں"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"صوتی تلاش"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"اس Ú©Û’ ساتھ اشتراک کریں"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> Ú©Û’ ساتھ اشتراک کریں"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"سکیڑیں"</string> + <string msgid="6264217191555673260" name="search_menu_title">"تلاش کریں"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uz/values-uz.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..f26fb7c310abca223754b82a1f029b08efdf4cd6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-uz/values-uz.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Boshiga o‘tish"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Yopish"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Yana"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"OK"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Hammasi"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Ilovani tanlang"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"YOQILMAGAN"</string> + <string msgid="884982626291842264" name="abc_capital_on">"YONIQ"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Probel"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menyu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Qidirish…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"So‘rovni o‘chirish"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Qidiruv so‘rovi"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Qidiruv"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"So‘rov yaratish"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ovozli qidiruv"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Ulashish"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> orqali ulashish"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Yig‘ish"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Qidiruv"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v16/values-v16.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v16/values-v16.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ba0ed0c29153fd97dacbffe3bdb9bcfceabeae9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v16/values-v16.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="TextAppearance.AppCompat.Tooltip"> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textSize">14sp</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v17/values-v17.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v17/values-v17.xml new file mode 100644 index 0000000000000000000000000000000000000000..f85a197ad0e336e966ffd267e6ba2e63b7dc91bd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v17/values-v17.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat"> + <item name="android:textAlignment">viewStart</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget"> + <item name="android:layout_gravity">center_vertical|start</item> + <item name="android:paddingEnd">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget"> + <item name="android:layout_marginEnd">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget"> + <item name="android:paddingEnd">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget"> + <item name="android:layout_marginStart">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget"> + <item name="android:layout_marginStart">16dp</item> + <item name="android:textAlignment">viewEnd</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget"> + <item name="android:layout_marginStart">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget"> + <item name="android:layout_alignParentStart">true</item> + <item name="android:textAlignment">viewStart</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget"> + <item name="android:layout_marginStart">16dp</item> + <item name="android:textAlignment">viewStart</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget"> + <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item> + <item name="android:paddingEnd">4dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget"> + <item name="android:layout_alignParentStart">true</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget"> + <item name="android:layout_toStartOf">@id/edit_query</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget"> + <item name="android:layout_alignParentEnd">true</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner"> + <item name="android:layout_toStartOf">@android:id/icon2</item> + <item name="android:layout_toEndOf">@android:id/icon1</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget"> + <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item> + </style> + <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget"> + <item name="android:paddingStart">12dp</item> + <item name="android:paddingEnd">12dp</item> + </style> + <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton"> + <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item> + <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v18/values-v18.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v18/values-v18.xml new file mode 100644 index 0000000000000000000000000000000000000000..7dad77f9e2733e7725120ce7201d2728040504a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v18/values-v18.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="abc_switch_padding">0px</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v21/values-v21.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v21/values-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d3fae5646b05acfe970c7743f9209430f010ac9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v21/values-v21.xml @@ -0,0 +1,261 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/> + <style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/> + <style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/> + <style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/> + <style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/> + <style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/> + <style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/> + <style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/> + <style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/> + <style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/> + <style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/> + <style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/> + <style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/> + <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large"> + </style> + <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small"> + </style> + <style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/> + <style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/> + <style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/> + <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle"> + </style> + <style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title"> + </style> + <style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/> + <style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/> + <style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/> + <style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat"> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small"> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/> + <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/> + <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle"> + </style> + <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title"> + </style> + <style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/> + <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/> + <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/> + <style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat"> + + <item name="actionBarSize">?android:attr/actionBarSize</item> + <item name="actionBarDivider">?android:attr/actionBarDivider</item> + <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item> + <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> + <item name="actionModeBackground">?android:attr/actionModeBackground</item> + <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item> + <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item> + + + <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> + <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item> + <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item> + + + <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> + <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item> + <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item> + <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> + <item name="dividerVertical">?android:attr/dividerVertical</item> + <item name="editTextBackground">@drawable/abc_edit_text_material</item> + <item name="editTextColor">?android:attr/editTextColor</item> + <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item> + + + <item name="buttonStyle">?android:attr/buttonStyle</item> + <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item> + <item name="checkboxStyle">?android:attr/checkboxStyle</item> + <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item> + <item name="radioButtonStyle">?android:attr/radioButtonStyle</item> + <item name="ratingBarStyle">?android:attr/ratingBarStyle</item> + <item name="spinnerStyle">?android:attr/spinnerStyle</item> + + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <item name="android:colorButtonNormal">?attr/colorButtonNormal</item> + </style> + <style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"> + <item name="android:windowElevation">@dimen/abc_floating_window_z</item> + </style> + <style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light"> + + <item name="actionBarSize">?android:attr/actionBarSize</item> + <item name="actionBarDivider">?android:attr/actionBarDivider</item> + <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item> + <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> + <item name="actionModeBackground">?android:attr/actionModeBackground</item> + <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item> + <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item> + + + <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> + <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item> + <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item> + + + <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> + <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item> + <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item> + <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> + <item name="dividerVertical">?android:attr/dividerVertical</item> + <item name="editTextBackground">@drawable/abc_edit_text_material</item> + <item name="editTextColor">?android:attr/editTextColor</item> + <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item> + + + <item name="buttonStyle">?android:attr/buttonStyle</item> + <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item> + <item name="checkboxStyle">?android:attr/checkboxStyle</item> + <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item> + <item name="radioButtonStyle">?android:attr/radioButtonStyle</item> + <item name="ratingBarStyle">?android:attr/ratingBarStyle</item> + <item name="spinnerStyle">?android:attr/spinnerStyle</item> + + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <item name="android:colorButtonNormal">?attr/colorButtonNormal</item> + </style> + <style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"> + <item name="android:windowElevation">@dimen/abc_floating_window_z</item> + </style> + <style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"> + <item name="android:windowElevation">@dimen/abc_floating_window_z</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText"> + </style> + <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView"> + </style> + <style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton"> + </style> + <style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode"> + <item name="android:minWidth">56dp</item> + </style> + <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow"> + <item name="android:src">@null</item> + <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item> + </style> + <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView"> + <item name="android:background">?attr/editTextBackground</item> + </style> + <style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/> + <style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/> + <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"> + <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item> + </style> + <style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/> + <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/> + <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/> + <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/> + <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/> + <style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText"> + <item name="android:background">?attr/editTextBackground</item> + </style> + <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText"> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText"> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView"> + </style> + <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu"> + </style> + <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> + <item name="android:overlapAnchor">true</item> + </style> + <style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow"> + </style> + <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/> + <style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/> + <style name="Base.Widget.AppCompat.ListView.Menu"/> + <style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu"> + </style> + <style name="Base.Widget.AppCompat.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> + <item name="android:overlapAnchor">true</item> + </style> + <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar"> + </style> + <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal"> + </style> + <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/> + <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/> + <style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/> + <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.Material.TextView"/> + <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/> + <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation"> + </style> + <style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/> + <style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/> + <style name="Platform.ThemeOverlay.AppCompat" parent=""> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <item name="android:colorButtonNormal">?attr/colorButtonNormal</item> + </style> + <style name="Platform.ThemeOverlay.AppCompat.Dark"/> + <style name="Platform.ThemeOverlay.AppCompat.Light"/> + <style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar"> + + <item name="android:textColorLink">?android:attr/colorAccent</item> + <item name="android:textColorLinkInverse">?android:attr/colorAccent</item> + + + <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item> + + <item name="android:buttonBarStyle">?attr/buttonBarStyle</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + </style> + <style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar"> + + <item name="android:textColorLink">?android:attr/colorAccent</item> + <item name="android:textColorLinkInverse">?android:attr/colorAccent</item> + + + <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item> + + <item name="android:buttonBarStyle">?attr/buttonBarStyle</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v22/values-v22.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v22/values-v22.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ad118ee452ebd64ff47b43227815c7eedfd3af6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v22/values-v22.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/> + <style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"> + <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item> + + <item name="editTextBackground">?android:attr/editTextBackground</item> + </style> + <style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"> + <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item> + + <item name="editTextBackground">?android:attr/editTextBackground</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v23/values-v23.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v23/values-v23.xml new file mode 100644 index 0000000000000000000000000000000000000000..edb25cd2e9147b93785a9dfbf1add195162ff774 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v23/values-v23.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/> + <style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/> + <style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"> + + <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item> + <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item> + + + <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> + + <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item> + <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item> + <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item> + + <item name="controlBackground">@drawable/abc_control_background_material</item> + </style> + <style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"> + + <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item> + <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item> + + + <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> + + <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item> + <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item> + <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item> + + <item name="controlBackground">@drawable/abc_control_background_material</item> + </style> + <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow"/> + <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/> + <style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item> + </style> + <style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText"> + <item name="android:hyphenationFrequency">none</item> + <item name="android:breakStrategy">simple</item> + </style> + <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/> + <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/> + <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/> + <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.Material.TextView"> + <item name="android:hyphenationFrequency">none</item> + <item name="android:breakStrategy">high_quality</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v24/values-v24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v24/values-v24.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9b3c08d682f3caf32453ece29bbbb5dd677dcfd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v24/values-v24.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v25/values-v25.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v25/values-v25.xml new file mode 100644 index 0000000000000000000000000000000000000000..483ae0c4691a442c113f1acbfb63ab6962a5f756 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v25/values-v25.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/> + <style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/> + <style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar"> + </style> + <style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar"> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v26/values-v26.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v26/values-v26.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c30667579bc621039ff5c96111e34191f9fc155 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v26/values-v26.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.AppCompat" parent="Base.V26.Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light"/> + <style name="Base.V26.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"> + + <item name="colorError">?android:attr/colorError</item> + </style> + <style name="Base.V26.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"> + + <item name="colorError">?android:attr/colorError</item> + </style> + <style name="Base.V26.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"> + <item name="android:touchscreenBlocksFocus">true</item> + <item name="android:keyboardNavigationCluster">true</item> + </style> + <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V26.Widget.AppCompat.Toolbar"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v28/values-v28.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v28/values-v28.xml new file mode 100644 index 0000000000000000000000000000000000000000..6deada7f609774ca41e58ef28b4c5fe32f3c5582 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-v28/values-v28.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.AppCompat" parent="Base.V28.Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V28.Theme.AppCompat.Light"/> + <style name="Base.V28.Theme.AppCompat" parent="Base.V26.Theme.AppCompat"> + + <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item> + </style> + <style name="Base.V28.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light"> + + <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-vi/values-vi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..cedf7587e8f91c7484eb1fcff56dc9eaced9950b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-vi/values-vi.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Chỉ đưá»ng vá» nhà "</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Di chuyển lên"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Tùy chá»n khác"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Xong"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Chá»n má»™t ứng dụng"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"TẮT"</string> + <string msgid="884982626291842264" name="abc_capital_on">"BẬT"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Tìm kiếm…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Xóa truy vấn"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Truy vấn tìm kiếm"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Tìm kiếm"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Gá»i truy vấn"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Tìm kiếm bằng giá»ng nói"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Chia sẻ vá»›i"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Chia sẻ vá»›i <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Thu gá»n"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Tìm kiếm"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v20/values-watch-v20.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d85812e099f862b3d70b7c549a9e53b09729cc0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"> + <item name="android:windowIsFloating">false</item> + </style> + <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"> + <item name="android:windowIsFloating">false</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"> + <item name="android:windowIsFloating">false</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v21/values-watch-v21.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v21/values-watch-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..deecc9e8d5e90f684748295b8ae3cbd957e845a6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-watch-v21/values-watch-v21.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowElevation">0dp</item> + </style> + <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowElevation">0dp</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowElevation">0dp</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-xlarge-v4/values-xlarge-v4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..b499d2cf3729a0b92b869da97322e3cb7fc544c2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="abc_dialog_fixed_height_major" type="dimen">60%</item> + <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item> + <item name="abc_dialog_fixed_width_major" type="dimen">50%</item> + <item name="abc_dialog_fixed_width_minor" type="dimen">70%</item> + <item name="abc_dialog_min_width_major" type="dimen">45%</item> + <item name="abc_dialog_min_width_minor" type="dimen">72%</item> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rCN/values-zh-rCN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f19681221c09a36263cdf5270d167bc6dcad189 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"转到首页"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"转到上一层级"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"更多选项"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"完æˆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"查看全部"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"选择应用"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"å…³é—"</string> + <string msgid="884982626291842264" name="abc_capital_on">"å¼€å¯"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete é”®"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter é”®"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ç©ºæ ¼é”®"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"æœç´¢â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"清除查询"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"æœç´¢æŸ¥è¯¢"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"æœç´¢"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"æäº¤æŸ¥è¯¢"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"è¯éŸ³æœç´¢"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"分享对象"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"与<ns1:g id="APPLICATION_NAME">%s</ns1:g>分享"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"æ”¶èµ·"</string> + <string msgid="6264217191555673260" name="search_menu_title">"æœç´¢"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rHK/values-zh-rHK.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a0f333bc3d97251478a1193d520eac357f1fab0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ç€è¦½ä¸»é "</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"å‘上ç€è¦½"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"更多é¸é …"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"完æˆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"查看全部"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"鏿“‡æ‡‰ç”¨ç¨‹å¼"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"關閉"</string> + <string msgid="884982626291842264" name="abc_capital_on">"開啟"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"刪除"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter éµ"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"空白éµ"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"æœå°‹â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"清除查詢"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"æœå°‹æŸ¥è©¢"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"æœå°‹"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"æäº¤æŸ¥è©¢"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"語音æœå°‹"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"分享å°è±¡"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"使用「<ns1:g id="APPLICATION_NAME">%s</ns1:g>ã€åˆ†äº«"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"æ”¶åˆ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"æœå°‹"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rTW/values-zh-rTW.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..649b28f28a4d279dec482aa971f82dcbf002683b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"ç€è¦½é¦–é "</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"å‘上ç€è¦½"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"更多é¸é …"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"完æˆ"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"查看全部"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"鏿“‡æ‡‰ç”¨ç¨‹å¼"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"關閉"</string> + <string msgid="884982626291842264" name="abc_capital_on">"開啟"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete éµ"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter éµ"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ç©ºæ ¼éµ"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu +"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"æœå°‹â€¦"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"清除查詢"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"æœå°‹æŸ¥è©¢"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"æœå°‹"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"æäº¤æŸ¥è©¢"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"語音æœå°‹"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"分享å°è±¡"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"與「<ns1:g id="APPLICATION_NAME">%s</ns1:g>ã€åˆ†äº«"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"æ”¶åˆ"</string> + <string msgid="6264217191555673260" name="search_menu_title">"æœå°‹"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zu/values-zu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..94c91c1b0cafb27c5db880e9dede3c68107939d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values-zu/values-zu.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <string msgid="5976598919945601918" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string> + <string msgid="8388173803310557296" name="abc_action_bar_up_description">"Zulazulela phezulu"</string> + <string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Ezinye izinketho"</string> + <string msgid="4692188335987374352" name="abc_action_mode_done">"Kwenziwe"</string> + <string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Buka konke"</string> + <string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Khetha insiza"</string> + <string msgid="4215997306490295099" name="abc_capital_off">"VALA"</string> + <string msgid="884982626291842264" name="abc_capital_on">"VULA"</string> + <string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string> + <string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string> + <string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string> + <string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string> + <string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string> + <string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string> + <string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string> + <string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string> + <string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string> + <string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Imenyu+"</string> + <string msgid="7208076849092622260" name="abc_search_hint">"Sesha…"</string> + <string msgid="3741173234950517107" name="abc_searchview_description_clear">"Sula inkinga"</string> + <string msgid="693312494995508443" name="abc_searchview_description_query">"Sesha umbuzo"</string> + <string msgid="3417662926640357176" name="abc_searchview_description_search">"Sesha"</string> + <string msgid="1486535517437947103" name="abc_searchview_description_submit">"Thumela umbuzo"</string> + <string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string> + <string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Yabelana no"</string> + <string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Yabelana ne-<ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string> + <string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Goqa"</string> + <string msgid="6264217191555673260" name="search_menu_title">"Sesha"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..14c2d4050561a8fdeeeef3fa04af511bbc1831d9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/127/jl/res/values/values.xml @@ -0,0 +1,2848 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> + <attr format="reference" name="drawerArrowStyle"/> + <attr format="dimension" name="height"/> + <attr format="boolean" name="isLightTheme"/> + <attr format="string" name="title"/> + <bool name="abc_action_bar_embed_tabs">true</bool> + <bool name="abc_config_actionMenuItemAllCaps">true</bool> + <color name="abc_decor_view_status_guard">#ff000000</color> + <color name="abc_decor_view_status_guard_light">#ffffffff</color> + <color name="abc_search_url_text_normal">#7fa87f</color> + <color name="abc_search_url_text_pressed">@android:color/black</color> + <color name="abc_search_url_text_selected">@android:color/black</color> + <color name="accent_material_dark">@color/material_deep_teal_200</color> + <color name="accent_material_light">@color/material_deep_teal_500</color> + <color name="background_floating_material_dark">@color/material_grey_800</color> + <color name="background_floating_material_light">@android:color/white</color> + <color name="background_material_dark">@color/material_grey_850</color> + <color name="background_material_light">@color/material_grey_50</color> + <color name="bright_foreground_disabled_material_dark">#80ffffff</color> + <color name="bright_foreground_disabled_material_light">#80000000</color> + <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color> + <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color> + <color name="bright_foreground_material_dark">@android:color/white</color> + <color name="bright_foreground_material_light">@android:color/black</color> + <color name="button_material_dark">#ff5a595b</color> + <color name="button_material_light">#ffd6d7d7</color> + <color name="dim_foreground_disabled_material_dark">#80bebebe</color> + <color name="dim_foreground_disabled_material_light">#80323232</color> + <color name="dim_foreground_material_dark">#ffbebebe</color> + <color name="dim_foreground_material_light">#ff323232</color> + <color name="error_color_material_dark">#ff7043</color> + <color name="error_color_material_light">#ff5722</color> + <color name="foreground_material_dark">@android:color/white</color> + <color name="foreground_material_light">@android:color/black</color> + <color name="highlighted_text_material_dark">#6680cbc4</color> + <color name="highlighted_text_material_light">#66009688</color> + <color name="material_blue_grey_800">#ff37474f</color> + <color name="material_blue_grey_900">#ff263238</color> + <color name="material_blue_grey_950">#ff21272b</color> + <color name="material_deep_teal_200">#ff80cbc4</color> + <color name="material_deep_teal_500">#ff008577</color> + <color name="material_grey_100">#fff5f5f5</color> + <color name="material_grey_300">#ffe0e0e0</color> + <color name="material_grey_50">#fffafafa</color> + <color name="material_grey_600">#ff757575</color> + <color name="material_grey_800">#ff424242</color> + <color name="material_grey_850">#ff303030</color> + <color name="material_grey_900">#ff212121</color> + <color name="primary_dark_material_dark">@android:color/black</color> + <color name="primary_dark_material_light">@color/material_grey_600</color> + <color name="primary_material_dark">@color/material_grey_900</color> + <color name="primary_material_light">@color/material_grey_100</color> + <color name="primary_text_default_material_dark">#ffffffff</color> + <color name="primary_text_default_material_light">#de000000</color> + <color name="primary_text_disabled_material_dark">#4Dffffff</color> + <color name="primary_text_disabled_material_light">#39000000</color> + <color name="ripple_material_dark">#33ffffff</color> + <color name="ripple_material_light">#1f000000</color> + <color name="secondary_text_default_material_dark">#b3ffffff</color> + <color name="secondary_text_default_material_light">#8a000000</color> + <color name="secondary_text_disabled_material_dark">#36ffffff</color> + <color name="secondary_text_disabled_material_light">#24000000</color> + <color name="switch_thumb_disabled_material_dark">#ff616161</color> + <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color> + <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color> + <color name="switch_thumb_normal_material_light">#fff1f1f1</color> + <color name="tooltip_background_dark">#e6616161</color> + <color name="tooltip_background_light">#e6FFFFFF</color> + <dimen name="abc_action_bar_content_inset_material">16dp</dimen> + <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen> + <dimen name="abc_action_bar_default_height_material">56dp</dimen> + <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen> + <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen> + <dimen name="abc_action_bar_elevation_material">4dp</dimen> + <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen> + <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen> + <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen> + <dimen name="abc_action_bar_stacked_max_height">48dp</dimen> + <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen> + <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen> + <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen> + <dimen name="abc_action_button_min_height_material">48dp</dimen> + <dimen name="abc_action_button_min_width_material">48dp</dimen> + <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen> + <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen> + <dimen name="abc_alert_dialog_button_dimen">48dp</dimen> + <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen> + <dimen name="abc_button_inset_vertical_material">6dp</dimen> + <dimen name="abc_button_padding_horizontal_material">8dp</dimen> + <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen> + <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen> + <dimen name="abc_config_prefDialogWidth">320dp</dimen> + <dimen name="abc_control_corner_material">2dp</dimen> + <dimen name="abc_control_inset_material">4dp</dimen> + <dimen name="abc_control_padding_material">4dp</dimen> + <dimen name="abc_dialog_corner_radius_material">2dp</dimen> + <item name="abc_dialog_fixed_height_major" type="dimen">80%</item> + <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item> + <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item> + <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item> + <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen> + <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen> + <item name="abc_dialog_min_width_major" type="dimen">65%</item> + <item name="abc_dialog_min_width_minor" type="dimen">95%</item> + <dimen name="abc_dialog_padding_material">24dp</dimen> + <dimen name="abc_dialog_padding_top_material">18dp</dimen> + <dimen name="abc_dialog_title_divider_material">8dp</dimen> + <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item> + <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item> + <dimen name="abc_dropdownitem_icon_width">32dip</dimen> + <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen> + <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen> + <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen> + <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen> + <dimen name="abc_edit_text_inset_top_material">10dp</dimen> + <dimen name="abc_floating_window_z">16dp</dimen> + <dimen name="abc_list_item_height_large_material">80dp</dimen> + <dimen name="abc_list_item_height_material">64dp</dimen> + <dimen name="abc_list_item_height_small_material">48dp</dimen> + <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen> + <dimen name="abc_panel_menu_list_width">296dp</dimen> + <dimen name="abc_progress_bar_height_material">4dp</dimen> + <dimen name="abc_search_view_preferred_height">48dip</dimen> + <dimen name="abc_search_view_preferred_width">320dip</dimen> + <dimen name="abc_seekbar_track_background_height_material">2dp</dimen> + <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen> + <dimen name="abc_select_dialog_padding_start_material">20dp</dimen> + <dimen name="abc_star_big">48dp</dimen> + <dimen name="abc_star_medium">36dp</dimen> + <dimen name="abc_star_small">16dp</dimen> + <dimen name="abc_switch_padding">3dp</dimen> + <dimen name="abc_text_size_body_1_material">14sp</dimen> + <dimen name="abc_text_size_body_2_material">14sp</dimen> + <dimen name="abc_text_size_button_material">14sp</dimen> + <dimen name="abc_text_size_caption_material">12sp</dimen> + <dimen name="abc_text_size_display_1_material">34sp</dimen> + <dimen name="abc_text_size_display_2_material">45sp</dimen> + <dimen name="abc_text_size_display_3_material">56sp</dimen> + <dimen name="abc_text_size_display_4_material">112sp</dimen> + <dimen name="abc_text_size_headline_material">24sp</dimen> + <dimen name="abc_text_size_large_material">22sp</dimen> + <dimen name="abc_text_size_medium_material">18sp</dimen> + <dimen name="abc_text_size_menu_header_material">14sp</dimen> + <dimen name="abc_text_size_menu_material">16sp</dimen> + <dimen name="abc_text_size_small_material">14sp</dimen> + <dimen name="abc_text_size_subhead_material">16sp</dimen> + <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen> + <dimen name="abc_text_size_title_material">20sp</dimen> + <dimen name="abc_text_size_title_material_toolbar">20dp</dimen> + <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item> + <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item> + <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item> + <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item> + <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item> + <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item> + <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item> + <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item> + <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item> + <dimen name="tooltip_corner_radius">2dp</dimen> + <dimen name="tooltip_horizontal_padding">16dp</dimen> + <dimen name="tooltip_margin">8dp</dimen> + <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen> + <dimen name="tooltip_precise_anchor_threshold">96dp</dimen> + <dimen name="tooltip_vertical_padding">6.5dp</dimen> + <dimen name="tooltip_y_offset_non_touch">0dp</dimen> + <dimen name="tooltip_y_offset_touch">16dp</dimen> + <item name="action_bar_activity_content" type="id"/> + <item name="action_bar_spinner" type="id"/> + <item name="action_menu_divider" type="id"/> + <item name="action_menu_presenter" type="id"/> + <item name="home" type="id"/> + <item name="progress_circular" type="id"/> + <item name="progress_horizontal" type="id"/> + <item name="split_action_bar" type="id"/> + <item name="up" type="id"/> + <integer name="abc_config_activityDefaultDur">220</integer> + <integer name="abc_config_activityShortDur">150</integer> + <integer name="cancel_button_image_alpha">127</integer> + <integer name="config_tooltipAnimTime">150</integer> + <string name="abc_action_bar_home_description">Navigate home</string> + <string name="abc_action_bar_up_description">Navigate up</string> + <string name="abc_action_menu_overflow_description">More options</string> + <string name="abc_action_mode_done">Done</string> + <string name="abc_activity_chooser_view_see_all">See all</string> + <string name="abc_activitychooserview_choose_application">Choose an app</string> + <string name="abc_capital_off">OFF</string> + <string name="abc_capital_on">ON</string> + <string name="abc_menu_alt_shortcut_label">Alt+</string> + <string name="abc_menu_ctrl_shortcut_label">Ctrl+</string> + <string name="abc_menu_delete_shortcut_label">delete</string> + <string name="abc_menu_enter_shortcut_label">enter</string> + <string name="abc_menu_function_shortcut_label">Function+</string> + <string name="abc_menu_meta_shortcut_label">Meta+</string> + <string name="abc_menu_shift_shortcut_label">Shift+</string> + <string name="abc_menu_space_shortcut_label">space</string> + <string name="abc_menu_sym_shortcut_label">Sym+</string> + <string name="abc_prepend_shortcut_label">Menu+</string> + <string name="abc_search_hint">Search…</string> + <string name="abc_searchview_description_clear">Clear query</string> + <string name="abc_searchview_description_query">Search query</string> + <string name="abc_searchview_description_search">Search</string> + <string name="abc_searchview_description_submit">Submit query</string> + <string name="abc_searchview_description_voice">Voice search</string> + <string name="abc_shareactionprovider_share_with">Share with</string> + <string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string> + <string name="abc_toolbar_collapse_description">Collapse</string> + <string name="search_menu_title">Search</string> + <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/> + <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/> + <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/> + <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/> + <style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/> + <style name="Base.AlertDialog.AppCompat" parent="android:Widget"> + <item name="android:layout">@layout/abc_alert_dialog_material</item> + <item name="listLayout">@layout/abc_select_dialog_material</item> + <item name="listItemLayout">@layout/select_dialog_item_material</item> + <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item> + <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item> + <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item> + </style> + <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/> + <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation"> + <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item> + <item name="android:windowExitAnimation">@anim/abc_popup_exit</item> + </style> + <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation"> + <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item> + <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item> + </style> + <style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation"> + <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item> + <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item> + </style> + <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget"> + <item name="android:maxLines">1</item> + <item name="android:scrollHorizontally">true</item> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item> + </style> + <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget"> + <item name="android:background">@null</item> + <item name="android:paddingLeft">?attr/dialogPreferredPadding</item> + <item name="android:paddingRight">?attr/dialogPreferredPadding</item> + <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item> + </style> + <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance"> + <item name="android:textColor">?android:textColorPrimary</item> + <item name="android:textColorHint">?android:textColorHint</item> + <item name="android:textColorHighlight">?android:textColorHighlight</item> + <item name="android:textColorLink">?android:textColorLink</item> + <item name="android:textSize">@dimen/abc_text_size_body_1_material</item> + </style> + <style name="Base.TextAppearance.AppCompat.Body1"> + <item name="android:textSize">@dimen/abc_text_size_body_1_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Body2"> + <item name="android:textSize">@dimen/abc_text_size_body_2_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Button"> + <item name="android:textSize">@dimen/abc_text_size_button_material</item> + <item name="android:textAllCaps">true</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Caption"> + <item name="android:textSize">@dimen/abc_text_size_caption_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Display1"> + <item name="android:textSize">@dimen/abc_text_size_display_1_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Display2"> + <item name="android:textSize">@dimen/abc_text_size_display_2_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Display3"> + <item name="android:textSize">@dimen/abc_text_size_display_3_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Display4"> + <item name="android:textSize">@dimen/abc_text_size_display_4_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Headline"> + <item name="android:textSize">@dimen/abc_text_size_headline_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Large"> + <item name="android:textSize">@dimen/abc_text_size_large_material</item> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Large.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Medium"> + <item name="android:textSize">@dimen/abc_text_size_medium_material</item> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Medium.Inverse"> + <item name="android:textColor">?android:attr/textColorSecondaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Menu"> + <item name="android:textSize">@dimen/abc_text_size_menu_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.SearchResult" parent=""> + <item name="android:textStyle">normal</item> + <item name="android:textColor">?android:textColorPrimary</item> + <item name="android:textColorHint">?android:textColorHint</item> + </style> + <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle"> + <item name="android:textSize">14sp</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.SearchResult.Title"> + <item name="android:textSize">18sp</item> + </style> + <style name="Base.TextAppearance.AppCompat.Small"> + <item name="android:textSize">@dimen/abc_text_size_small_material</item> + <item name="android:textColor">?android:attr/textColorTertiary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Small.Inverse"> + <item name="android:textColor">?android:attr/textColorTertiaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Subhead"> + <item name="android:textSize">@dimen/abc_text_size_subhead_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Subhead.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Title"> + <item name="android:textSize">@dimen/abc_text_size_title_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Title.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item> + <item name="android:textColorLink">?android:attr/textColorLinkInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Tooltip"> + <item name="android:textSize">14sp</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button"> + <item name="android:textColor">?attr/actionMenuTextColor</item> + <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead"> + <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse"> + <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item> + <item name="android:textColor">?android:attr/textColorSecondaryInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title"> + <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse"> + <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/> + <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button"> + <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored"> + <item name="android:textColor">@color/abc_btn_colored_text_material</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button"> + <item name="android:textColor">?android:textColorPrimaryInverse</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small"> + <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat"> + <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item> + <item name="android:textColor">?attr/colorAccent</item> + </style> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/> + <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/> + <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/> + <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium"> + <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> + </style> + <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"> + </style> + <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"> + </style> + <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat"> + </style> + <style name="Base.Theme.AppCompat.CompactMenu" parent=""> + <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item> + <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item> + <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item> + </style> + <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/> + <style name="Base.Theme.AppCompat.Dialog.Alert"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.AppCompat.Dialog.FixedSize"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Base.Theme.AppCompat.Dialog.MinWidth"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/> + <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light"> + </style> + <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light"> + <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item> + <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> + <item name="actionModeTheme">?attr/actionBarTheme</item> + + + <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> + + <item name="colorPrimaryDark">@color/primary_dark_material_dark</item> + <item name="colorPrimary">@color/primary_material_dark</item> + </style> + <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/> + <style name="Base.Theme.AppCompat.Light.Dialog.Alert"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/> + <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/> + <style name="Base.ThemeOverlay.AppCompat.ActionBar"> + <item name="colorControlNormal">?android:attr/textColorPrimary</item> + <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark"> + <item name="android:windowBackground">@color/background_material_dark</item> + <item name="android:colorForeground">@color/foreground_material_dark</item> + <item name="android:colorForegroundInverse">@color/foreground_material_light</item> + <item name="android:colorBackground">@color/background_material_dark</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item> + <item name="colorBackgroundFloating">@color/background_floating_material_dark</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item> + <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item> + <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlHighlight">@color/ripple_material_dark</item> + <item name="colorButtonNormal">@color/button_material_dark</item> + <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item> + + + <item name="isLightTheme">false</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar"> + <item name="colorControlNormal">?android:attr/textColorPrimary</item> + <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/> + <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light"> + <item name="android:windowBackground">@color/background_material_light</item> + <item name="android:colorForeground">@color/foreground_material_light</item> + <item name="android:colorForegroundInverse">@color/foreground_material_dark</item> + <item name="android:colorBackground">@color/background_material_light</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item> + <item name="colorBackgroundFloating">@color/background_floating_material_light</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item> + <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item> + <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item> + <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_light</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlHighlight">@color/ripple_material_light</item> + <item name="colorButtonNormal">@color/button_material_light</item> + <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item> + + + <item name="isLightTheme">true</item> + </style> + <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat"> + <item name="windowNoTitle">false</item> + <item name="windowActionBar">true</item> + <item name="windowActionBarOverlay">false</item> + <item name="windowActionModeOverlay">false</item> + <item name="actionBarPopupTheme">@null</item> + + <item name="colorBackgroundFloating">@color/background_floating_material_dark</item> + + + <item name="isLightTheme">false</item> + + <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item> + <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item> + <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item> + <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item> + + <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item> + <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item> + + + <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item> + <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item> + <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item> + <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> + <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item> + <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item> + <item name="actionBarSplitStyle">?attr/actionBarStyle</item> + <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item> + <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> + <item name="actionBarDivider">?attr/dividerVertical</item> + <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item> + <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item> + <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item> + + + <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item> + + + <item name="actionModeTheme">?attr/actionBarTheme</item> + <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item> + <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item> + <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item> + <item name="actionModeCloseContentDescription">@string/abc_action_mode_done</item> + <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item> + <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item> + + <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item> + <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item> + <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item> + <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item> + <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item> + + + <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item> + <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item> + <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item> + <item name="android:panelBackground">@android:color/transparent</item> + <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> + + + <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item> + <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item> + <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item> + <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item> + <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item> + + + <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item> + <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item> + <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item> + + + <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item> + + + <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item> + <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item> + <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item> + <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item> + <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item> + <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item> + + + <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item> + <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + <item name="textColorSearchUrl">@color/abc_search_url_text</item> + <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item> + <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item> + + + <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item> + + + <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item> + <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item> + + <item name="editTextStyle">@style/Widget.AppCompat.EditText</item> + <item name="editTextBackground">@drawable/abc_edit_text_material</item> + <item name="editTextColor">?android:attr/textColorPrimary</item> + <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item> + <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item> + + + <item name="colorPrimaryDark">@color/primary_dark_material_dark</item> + <item name="colorPrimary">@color/primary_material_dark</item> + <item name="colorAccent">@color/accent_material_dark</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlActivated">?attr/colorAccent</item> + <item name="colorControlHighlight">@color/ripple_material_dark</item> + <item name="colorButtonNormal">@color/button_material_dark</item> + <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item> + <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item> + + <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item> + + <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item> + <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item> + <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item> + <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item> + + <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item> + <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item> + <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item> + <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item> + + + <item name="buttonStyle">@style/Widget.AppCompat.Button</item> + <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item> + <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item> + + <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item> + + <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item> + <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item> + <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item> + + + <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item> + <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item> + <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item> + + <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item> + <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item> + <item name="alertDialogCenterButtons">false</item> + <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item> + <item name="listDividerAlertDialog">@null</item> + + + <item name="windowFixedWidthMajor">@null</item> + <item name="windowFixedWidthMinor">@null</item> + <item name="windowFixedHeightMajor">@null</item> + <item name="windowFixedHeightMinor">@null</item> + + + <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item> + <item name="tooltipForegroundColor">@color/foreground_material_light</item> + + <item name="colorError">@color/error_color_material_dark</item> + </style> + <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat"> + <item name="android:colorBackground">?attr/colorBackgroundFloating</item> + <item name="android:colorBackgroundCacheHint">@null</item> + + <item name="android:windowFrame">@null</item> + <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item> + <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item> + <item name="android:windowBackground">@drawable/abc_dialog_material_background</item> + <item name="android:windowIsFloating">true</item> + <item name="android:backgroundDimEnabled">true</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> + + <item name="windowActionBar">false</item> + <item name="windowActionModeOverlay">true</item> + + <item name="listPreferredItemPaddingLeft">24dip</item> + <item name="listPreferredItemPaddingRight">24dip</item> + + <item name="android:listDivider">@null</item> + + <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item> + <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item> + <item name="android:windowCloseOnTouchOutside">true</item> + </style> + <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light"> + <item name="windowNoTitle">false</item> + <item name="windowActionBar">true</item> + <item name="windowActionBarOverlay">false</item> + <item name="windowActionModeOverlay">false</item> + <item name="actionBarPopupTheme">@null</item> + + <item name="colorBackgroundFloating">@color/background_floating_material_light</item> + + + <item name="isLightTheme">true</item> + + <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item> + <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item> + <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item> + <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item> + + <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item> + <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item> + + + <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item> + <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item> + <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item> + <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item> + <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item> + <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item> + <item name="actionBarSplitStyle">?attr/actionBarStyle</item> + <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item> + <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> + <item name="actionBarDivider">?attr/dividerVertical</item> + <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item> + <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item> + <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item> + + + <item name="actionModeTheme">?attr/actionBarTheme</item> + <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item> + <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item> + <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item> + <item name="actionModeCloseContentDescription">@string/abc_action_mode_done</item> + <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item> + <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item> + + <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item> + <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item> + <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item> + <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item> + <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item> + + + <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item> + + + <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item> + <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item> + <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item> + <item name="android:panelBackground">@android:color/transparent</item> + <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item> + + + <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item> + <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item> + <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item> + <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item> + <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item> + + + <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item> + <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item> + <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item> + + + <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item> + + + <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item> + <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item> + <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item> + <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item> + <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item> + <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item> + + + <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item> + <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + <item name="textColorSearchUrl">@color/abc_search_url_text</item> + <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item> + <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item> + + + <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item> + + + <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item> + <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item> + + <item name="editTextStyle">@style/Widget.AppCompat.EditText</item> + <item name="editTextBackground">@drawable/abc_edit_text_material</item> + <item name="editTextColor">?android:attr/textColorPrimary</item> + <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item> + <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item> + + + <item name="colorPrimaryDark">@color/primary_dark_material_light</item> + <item name="colorPrimary">@color/primary_material_light</item> + <item name="colorAccent">@color/accent_material_light</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlActivated">?attr/colorAccent</item> + <item name="colorControlHighlight">@color/ripple_material_light</item> + <item name="colorButtonNormal">@color/button_material_light</item> + <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item> + <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item> + + <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item> + + <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item> + <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item> + <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item> + + <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item> + <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item> + <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item> + <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item> + + + <item name="buttonStyle">@style/Widget.AppCompat.Button</item> + <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item> + <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item> + + <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item> + + <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item> + <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item> + <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item> + + + <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item> + <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item> + <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item> + + <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item> + <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item> + <item name="alertDialogCenterButtons">false</item> + <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item> + <item name="listDividerAlertDialog">@null</item> + + + <item name="windowFixedWidthMajor">@null</item> + <item name="windowFixedWidthMinor">@null</item> + <item name="windowFixedHeightMajor">@null</item> + <item name="windowFixedHeightMinor">@null</item> + + + <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item> + <item name="tooltipForegroundColor">@color/foreground_material_dark</item> + + <item name="colorError">@color/error_color_material_light</item> + </style> + <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light"> + <item name="android:colorBackground">?attr/colorBackgroundFloating</item> + <item name="android:colorBackgroundCacheHint">@null</item> + + <item name="android:windowFrame">@null</item> + <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item> + <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item> + <item name="android:windowBackground">@drawable/abc_dialog_material_background</item> + <item name="android:windowIsFloating">true</item> + <item name="android:backgroundDimEnabled">true</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> + + <item name="windowActionBar">false</item> + <item name="windowActionModeOverlay">true</item> + + <item name="listPreferredItemPaddingLeft">24dip</item> + <item name="listPreferredItemPaddingRight">24dip</item> + + <item name="android:listDivider">@null</item> + + <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item> + <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item> + <item name="android:windowCloseOnTouchOutside">true</item> + </style> + <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat"> + <item name="android:colorBackgroundCacheHint">@null</item> + <item name="android:colorBackground">?attr/colorBackgroundFloating</item> + + <item name="android:windowFrame">@null</item> + <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item> + <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item> + <item name="android:windowBackground">@drawable/abc_dialog_material_background</item> + <item name="android:windowIsFloating">true</item> + <item name="android:backgroundDimEnabled">true</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> + + <item name="windowActionBar">false</item> + <item name="windowActionModeOverlay">true</item> + + <item name="listPreferredItemPaddingLeft">24dip</item> + <item name="listPreferredItemPaddingRight">24dip</item> + + <item name="android:listDivider">@null</item> + + <item name="windowFixedWidthMajor">@null</item> + <item name="windowFixedWidthMinor">@null</item> + <item name="windowFixedHeightMajor">@null</item> + <item name="windowFixedHeightMinor">@null</item> + + <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item> + <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item> + <item name="android:windowCloseOnTouchOutside">true</item> + </style> + <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView"> + <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item> + <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item> + <item name="android:background">?attr/editTextBackground</item> + <item name="android:textColor">?attr/editTextColor</item> + <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item> + <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item> + </style> + <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText"> + <item name="android:background">?attr/editTextBackground</item> + <item name="android:textColor">?attr/editTextColor</item> + <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item> + <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item> + </style> + <style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget"> + <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item> + <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item> + <item name="android:minHeight">?attr/actionBarSize</item> + <item name="titleMargin">4dp</item> + <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item> + <item name="buttonGravity">top</item> + <item name="collapseIcon">?attr/homeAsUpIndicator</item> + <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item> + <item name="contentInsetStart">16dp</item> + <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item> + <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item> + <item name="android:paddingStart">@dimen/abc_action_bar_default_padding_start_material</item> + <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item> + <item name="android:paddingEnd">@dimen/abc_action_bar_default_padding_end_material</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar" parent=""> + <item name="displayOptions">showTitle</item> + <item name="divider">?attr/dividerVertical</item> + <item name="height">?attr/actionBarSize</item> + + <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item> + <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item> + + <item name="background">@null</item> + <item name="backgroundStacked">@null</item> + <item name="backgroundSplit">@null</item> + + <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> + + <item name="android:gravity">center_vertical</item> + <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item> + <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item> + <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item> + <item name="elevation">@dimen/abc_action_bar_elevation_material</item> + <item name="popupTheme">?attr/actionBarPopupTheme</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar.Solid"> + <item name="background">?attr/colorPrimary</item> + <item name="backgroundStacked">?attr/colorPrimary</item> + <item name="backgroundSplit">?attr/colorPrimary</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent=""> + <item name="divider">?attr/actionBarDivider</item> + <item name="showDividers">middle</item> + <item name="dividerPadding">8dip</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar.TabText" parent=""> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textColor">?android:attr/textColorPrimary</item> + <item name="android:textSize">12sp</item> + <item name="android:textStyle">bold</item> + <item name="android:ellipsize">marquee</item> + <item name="android:maxLines">2</item> + <item name="android:maxWidth">180dp</item> + <item name="textAllCaps">true</item> + </style> + <style name="Base.Widget.AppCompat.ActionBar.TabView" parent=""> + <item name="android:background">@drawable/abc_tab_indicator_material</item> + <item name="android:gravity">center_horizontal</item> + <item name="android:paddingLeft">16dip</item> + <item name="android:paddingRight">16dip</item> + <item name="android:layout_width">0dip</item> + <item name="android:layout_weight">1</item> + <item name="android:minWidth">80dip</item> + </style> + <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton"> + <item name="android:background">?attr/actionBarItemBackground</item> + <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item> + <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item> + <item name="android:scaleType">center</item> + <item name="android:gravity">center</item> + <item name="android:maxLines">2</item> + <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item> + </style> + <style name="Base.Widget.AppCompat.ActionButton.CloseMode"> + <item name="android:background">?attr/controlBackground</item> + <item name="android:minWidth">56dp</item> + </style> + <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow"> + <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item> + <item name="android:background">?attr/actionBarItemBackground</item> + <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item> + <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item> + <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item> + </style> + <style name="Base.Widget.AppCompat.ActionMode" parent=""> + <item name="background">?attr/actionModeBackground</item> + <item name="backgroundSplit">?attr/actionModeSplitBackground</item> + <item name="height">?attr/actionBarSize</item> + <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item> + <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item> + <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item> + + <item name="android:minHeight">?attr/actionBarSize</item> + <item name="titleMargin">4dp</item> + <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item> + <item name="buttonGravity">top</item> + <item name="contentInsetStart">16dp</item> + <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item> + <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item> + <item name="android:paddingStart">@dimen/abc_action_bar_default_padding_start_material</item> + <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item> + <item name="android:paddingEnd">@dimen/abc_action_bar_default_padding_end_material</item> + </style> + <style name="Base.Widget.AppCompat.ActivityChooserView" parent=""> + <item name="android:gravity">center</item> + <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item> + <item name="divider">?attr/dividerVertical</item> + <item name="showDividers">middle</item> + <item name="dividerPadding">6dip</item> + </style> + <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/> + <style name="Base.Widget.AppCompat.Button" parent="android:Widget"> + <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item> + <item name="android:textAppearance">?android:attr/textAppearanceButton</item> + <item name="android:minHeight">48dip</item> + <item name="android:minWidth">88dip</item> + <item name="android:focusable">true</item> + <item name="android:clickable">true</item> + <item name="android:gravity">center_vertical|center_horizontal</item> + </style> + <style name="Base.Widget.AppCompat.Button.Borderless"> + <item name="android:background">@drawable/abc_btn_borderless_material</item> + </style> + <style name="Base.Widget.AppCompat.Button.Borderless.Colored"> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item> + </style> + <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored"> + <item name="android:minWidth">64dp</item> + <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item> + </style> + <style name="Base.Widget.AppCompat.Button.Colored"> + <item name="android:background">@drawable/abc_btn_colored_material</item> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item> + </style> + <style name="Base.Widget.AppCompat.Button.Small"> + <item name="android:minHeight">48dip</item> + <item name="android:minWidth">48dip</item> + </style> + <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget"> + <item name="android:background">@null</item> + </style> + <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/> + <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox"> + <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item> + <item name="buttonCompat">?attr/listChoiceIndicatorMultipleAnimated</item> + <item name="android:background">?attr/controlBackground</item> + </style> + <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton"> + <item name="android:button">?android:attr/listChoiceIndicatorSingle</item> + <item name="buttonCompat">?attr/listChoiceIndicatorSingleAnimated</item> + <item name="android:background">?attr/controlBackground</item> + </style> + <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton"> + <item name="track">@drawable/abc_switch_track_mtrl_alpha</item> + <item name="android:thumb">@drawable/abc_switch_thumb_material</item> + <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item> + <item name="android:background">?attr/controlBackground</item> + <item name="showText">false</item> + <item name="switchPadding">@dimen/abc_switch_padding</item> + <item name="android:textOn">@string/abc_capital_on</item> + <item name="android:textOff">@string/abc_capital_off</item> + </style> + <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common"> + <item name="barLength">18dp</item> + <item name="gapBetweenBars">3dp</item> + <item name="drawableSize">24dp</item> + </style> + <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent=""> + <item name="color">?android:attr/textColorSecondary</item> + <item name="spinBars">true</item> + <item name="thickness">2dp</item> + <item name="arrowShaftLength">16dp</item> + <item name="arrowHeadLength">8dp</item> + </style> + <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent=""> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item> + <item name="android:paddingLeft">8dp</item> + <item name="android:paddingRight">8dp</item> + <item name="android:gravity">center_vertical</item> + </style> + <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/> + <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton"> + <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar"> + <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.Solid"> + <item name="background">?attr/colorPrimary</item> + <item name="backgroundStacked">?attr/colorPrimary</item> + <item name="backgroundSplit">?attr/colorPrimary</item> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar"> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText"> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText"> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item> + </style> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView"> + <item name="android:background">@drawable/abc_tab_indicator_material</item> + </style> + <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow"> + </style> + <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow"> + <item name="overlapAnchor">true</item> + <item name="android:dropDownHorizontalOffset">-4dip</item> + </style> + <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget"> + <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item> + </style> + <style name="Base.Widget.AppCompat.ListPopupWindow" parent=""> + <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item> + <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item> + <item name="android:dropDownVerticalOffset">0dip</item> + <item name="android:dropDownHorizontalOffset">0dip</item> + <item name="android:dropDownWidth">wrap_content</item> + </style> + <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView"> + <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item> + </style> + <style name="Base.Widget.AppCompat.ListView.DropDown"> + <item name="android:divider">@null</item> + </style> + <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu"> + <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item> + <item name="android:divider">?attr/dividerHorizontal</item> + </style> + <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow"> + </style> + <style name="Base.Widget.AppCompat.PopupMenu.Overflow"> + <item name="overlapAnchor">true</item> + <item name="android:dropDownHorizontalOffset">-4dip</item> + </style> + <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow"> + </style> + <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar"> + </style> + <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal"> + </style> + <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar"> + <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item> + <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item> + </style> + <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar"> + <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item> + <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item> + <item name="android:minHeight">36dp</item> + <item name="android:maxHeight">36dp</item> + <item name="android:isIndicator">true</item> + <item name="android:thumb">@null</item> + </style> + <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar"> + <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item> + <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item> + <item name="android:minHeight">16dp</item> + <item name="android:maxHeight">16dp</item> + <item name="android:isIndicator">true</item> + <item name="android:thumb">@null</item> + </style> + <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget"> + <item name="layout">@layout/abc_search_view</item> + <item name="queryBackground">@drawable/abc_textfield_search_material</item> + <item name="submitBackground">@drawable/abc_textfield_search_material</item> + <item name="closeIcon">@drawable/abc_ic_clear_material</item> + <item name="searchIcon">@drawable/abc_ic_search_api_material</item> + <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item> + <item name="goIcon">@drawable/abc_ic_go_search_api_material</item> + <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item> + <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item> + <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item> + </style> + <style name="Base.Widget.AppCompat.SearchView.ActionBar"> + <item name="queryBackground">@null</item> + <item name="submitBackground">@null</item> + <item name="searchHintIcon">@null</item> + <item name="defaultQueryHint">@string/abc_search_hint</item> + </style> + <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget"> + <item name="android:indeterminateOnly">false</item> + <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item> + <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item> + <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item> + <item name="android:focusable">true</item> + <item name="android:paddingLeft">16dip</item> + <item name="android:paddingRight">16dip</item> + </style> + <style name="Base.Widget.AppCompat.SeekBar.Discrete"> + <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item> + </style> + <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner"> + <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item> + <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item> + <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item> + <item name="android:dropDownVerticalOffset">0dip</item> + <item name="android:dropDownHorizontalOffset">0dip</item> + <item name="android:dropDownWidth">wrap_content</item> + <item name="android:clickable">true</item> + <item name="android:gravity">left|start|center_vertical</item> + <item name="overlapAnchor">true</item> + </style> + <style name="Base.Widget.AppCompat.Spinner.Underlined"> + <item name="android:background">@drawable/abc_spinner_textfield_background_material</item> + </style> + <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.TextView"/> + <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem"> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item> + <item name="android:paddingLeft">8dp</item> + <item name="android:paddingRight">8dp</item> + </style> + <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/> + <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget"> + <item name="android:background">?attr/controlBackground</item> + <item name="android:minWidth">56dp</item> + <item name="android:scaleType">center</item> + </style> + <style name="Platform.AppCompat" parent="android:Theme.Holo"> + <item name="android:windowNoTitle">true</item> + <item name="android:windowActionBar">false</item> + + <item name="android:buttonBarStyle">?attr/buttonBarStyle</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item> + + + <item name="android:colorForeground">@color/foreground_material_dark</item> + <item name="android:colorForegroundInverse">@color/foreground_material_light</item> + <item name="android:colorBackground">@color/background_material_dark</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item> + <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item> + <item name="android:backgroundDimAmount">0.6</item> + <item name="android:windowBackground">@color/background_material_dark</item> + + + <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item> + <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item> + <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item> + <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item> + <item name="android:textColorLink">?attr/colorAccent</item> + <item name="android:textColorLinkInverse">?attr/colorAccent</item> + <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item> + + + <item name="android:textAppearance">@style/TextAppearance.AppCompat</item> + <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item> + <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item> + <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item> + <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item> + <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item> + <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item> + + <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item> + <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item> + <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item> + <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item> + + + <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + + <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item> + <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item> + <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item> + <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item> + + <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item> + <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item> + <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item> + <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item> + + <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl</item> + <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl</item> + <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl</item> + </style> + <style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light"> + <item name="android:windowNoTitle">true</item> + <item name="android:windowActionBar">false</item> + + <item name="android:buttonBarStyle">?attr/buttonBarStyle</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item> + + + <item name="android:colorForeground">@color/foreground_material_light</item> + <item name="android:colorForegroundInverse">@color/foreground_material_dark</item> + <item name="android:colorBackground">@color/background_material_light</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item> + <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item> + <item name="android:backgroundDimAmount">0.6</item> + <item name="android:windowBackground">@color/background_material_light</item> + + + <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item> + <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item> + <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item> + <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item> + <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_light</item> + <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item> + <item name="android:textColorLink">?attr/colorAccent</item> + <item name="android:textColorLinkInverse">?attr/colorAccent</item> + <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item> + + + <item name="android:textAppearance">@style/TextAppearance.AppCompat</item> + <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item> + <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item> + <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item> + <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item> + <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item> + <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item> + + <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item> + <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item> + <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item> + <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item> + + + <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + + <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item> + <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item> + <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item> + <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item> + <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item> + + <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item> + <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item> + <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item> + <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item> + + <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl</item> + <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl</item> + <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl</item> + </style> + <style name="Platform.ThemeOverlay.AppCompat" parent=""/> + <style name="Platform.ThemeOverlay.AppCompat.Dark"> + + <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item> + <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item> + <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item> + + + <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item> + <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + </style> + <style name="Platform.ThemeOverlay.AppCompat.Light"> + <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item> + <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item> + <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item> + + + <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item> + <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item> + </style> + <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/> + <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat"> + </style> + <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget"> + <item name="android:layout_gravity">center_vertical|left</item> + <item name="android:paddingRight">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget"> + <item name="android:layout_marginRight">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget"> + <item name="android:paddingRight">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget"> + <item name="android:layout_marginLeft">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget"> + <item name="android:layout_marginLeft">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget"> + <item name="android:layout_marginLeft">8dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget"> + <item name="android:layout_alignParentLeft">true</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget"> + <item name="android:layout_marginLeft">16dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget"> + <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item> + <item name="android:paddingRight">4dp</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget"> + <item name="android:layout_alignParentLeft">true</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget"> + <item name="android:layout_toLeftOf">@id/edit_query</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget"> + <item name="android:layout_alignParentRight">true</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner"> + <item name="android:layout_toLeftOf">@android:id/icon2</item> + <item name="android:layout_toRightOf">@android:id/icon1</item> + </style> + <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget"> + <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item> + </style> + <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget"> + <item name="android:paddingLeft">12dp</item> + <item name="android:paddingRight">12dp</item> + </style> + <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton"> + <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item> + <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item> + </style> + <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/> + <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/> + <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/> + <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/> + <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/> + <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/> + <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/> + <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/> + <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/> + <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/> + <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/> + <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/> + <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/> + <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/> + <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/> + <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/> + <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/> + <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/> + <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/> + <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/> + <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle"> + </style> + <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title"> + </style> + <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/> + <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/> + <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/> + <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/> + <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/> + <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/> + <style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/> + <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu"> + </style> + <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/> + <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse"> + </style> + <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/> + <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"> + </style> + <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle"> + </style> + <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/> + <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title"> + </style> + <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/> + <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/> + <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/> + <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/> + <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/> + <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem"> + </style> + <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/> + <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/> + <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/> + <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/> + <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/> + <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item"> + </style> + <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle"> + </style> + <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title"> + </style> + <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/> + <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/> + <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/> + <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/> + <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/> + <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/> + <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/> + <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/> + <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/> + <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/> + <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/> + <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/> + <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge"> + </style> + <style name="Theme.AppCompat.Empty" parent=""/> + <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/> + <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/> + <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/> + <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/> + <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/> + <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge"> + </style> + <style name="Theme.AppCompat.Light.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.AppCompat.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/> + <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/> + <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/> + <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/> + <style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Light"/> + <style name="ThemeOverlay.AppCompat.DayNight.ActionBar"> + <item name="colorControlNormal">?android:attr/textColorPrimary</item> + <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item> + </style> + <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/> + <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/> + <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/> + <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar"> + </style> + <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid"> + </style> + <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar"> + </style> + <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText"> + </style> + <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView"> + </style> + <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/> + <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/> + <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/> + <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode"> + </style> + <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView"> + </style> + <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView"> + </style> + <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/> + <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/> + <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/> + <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/> + <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/> + <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/> + <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/> + <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/> + <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/> + <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/> + <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/> + <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle"> + <item name="color">?attr/colorControlNormal</item> + </style> + <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/> + <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/> + <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/> + <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/> + <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/> + <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView"> + </style> + <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/> + <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/> + <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/> + <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/> + <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/> + <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/> + <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/> + <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/> + <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/> + <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/> + <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/> + <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow"> + </style> + <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/> + <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/> + <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/> + <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow"> + </style> + <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/> + <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/> + <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/> + <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/> + <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow"> + </style> + <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow"> + </style> + <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar"> + </style> + <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal"> + </style> + <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/> + <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/> + <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/> + <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/> + <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/> + <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/> + <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/> + <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/> + <style name="Widget.AppCompat.Spinner.DropDown"/> + <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/> + <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/> + <style name="Widget.AppCompat.TextView" parent="Base.Widget.AppCompat.TextView"/> + <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/> + <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/> + <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/> + <declare-styleable name="ActionBar"> + + <attr name="navigationMode"> + <!-- Normal static title text --> + <enum name="normal" value="0"/> + <!-- The action bar will use a selection list for navigation. --> + <enum name="listMode" value="1"/> + <!-- The action bar will use a series of horizontal tabs for navigation. --> + <enum name="tabMode" value="2"/> + </attr> + + <attr name="displayOptions"> + <flag name="none" value="0"/> + <flag name="useLogo" value="0x1"/> + <flag name="showHome" value="0x2"/> + <flag name="homeAsUp" value="0x4"/> + <flag name="showTitle" value="0x8"/> + <flag name="showCustom" value="0x10"/> + <flag name="disableHome" value="0x20"/> + </attr> + + <attr name="title"/> + + <attr format="string" name="subtitle"/> + + <attr format="reference" name="titleTextStyle"/> + + <attr format="reference" name="subtitleTextStyle"/> + + <attr format="reference" name="icon"/> + + <attr format="reference" name="logo"/> + + <attr format="reference" name="divider"/> + + <attr format="reference" name="background"/> + + <attr format="reference|color" name="backgroundStacked"/> + + <attr format="reference|color" name="backgroundSplit"/> + + <attr format="reference" name="customNavigationLayout"/> + + <attr name="height"/> + + <attr format="reference" name="homeLayout"/> + + <attr format="reference" name="progressBarStyle"/> + + <attr format="reference" name="indeterminateProgressStyle"/> + + <attr format="dimension" name="progressBarPadding"/> + + <attr name="homeAsUpIndicator"/> + + <attr format="dimension" name="itemPadding"/> + + <attr format="boolean" name="hideOnContentScroll"/> + + <attr format="dimension" name="contentInsetStart"/> + + <attr format="dimension" name="contentInsetEnd"/> + + <attr format="dimension" name="contentInsetLeft"/> + + <attr format="dimension" name="contentInsetRight"/> + + <attr format="dimension" name="contentInsetStartWithNavigation"/> + + <attr format="dimension" name="contentInsetEndWithActions"/> + + <attr format="dimension" name="elevation"/> + + <attr format="reference" name="popupTheme"/> + </declare-styleable> + <declare-styleable name="ActionBarLayout"> + <attr name="android:layout_gravity"/> + </declare-styleable> + <declare-styleable name="ActionMenuItemView"> + <attr name="android:minWidth"/> + </declare-styleable> + <declare-styleable name="ActionMenuView"> + + </declare-styleable> + <declare-styleable name="ActionMode"> + + <attr name="titleTextStyle"/> + + <attr name="subtitleTextStyle"/> + + <attr name="background"/> + + <attr name="backgroundSplit"/> + + <attr name="height"/> + + <attr format="reference" name="closeItemLayout"/> + </declare-styleable> + <declare-styleable name="ActivityChooserView"> + + <attr format="string" name="initialActivityCount"/> + + <attr format="reference" name="expandActivityOverflowButtonDrawable"/> + </declare-styleable> + <declare-styleable name="AlertDialog"> + <attr name="android:layout"/> + <attr format="reference" name="buttonPanelSideLayout"/> + <attr format="reference" name="listLayout"/> + <attr format="reference" name="multiChoiceItemLayout"/> + <attr format="reference" name="singleChoiceItemLayout"/> + <attr format="reference" name="listItemLayout"/> + <attr format="boolean" name="showTitle"/> + <attr format="dimension" name="buttonIconDimen"/> + </declare-styleable> + <declare-styleable name="AppCompatEmojiHelper"> + + </declare-styleable> + <declare-styleable name="AppCompatImageView"> + <attr name="android:src"/> + + <attr format="reference" name="srcCompat"/> + + + <attr format="color" name="tint"/> + + + <attr name="tintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and icon color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="AppCompatSeekBar"> + <attr name="android:thumb"/> + + <attr format="reference" name="tickMark"/> + + <attr format="color" name="tickMarkTint"/> + + <attr name="tickMarkTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="AppCompatTextHelper"> + <attr name="android:drawableLeft"/> + <attr name="android:drawableTop"/> + <attr name="android:drawableRight"/> + <attr name="android:drawableBottom"/> + <attr name="android:drawableStart"/> + <attr name="android:drawableEnd"/> + <attr name="android:textAppearance"/> + </declare-styleable> + <declare-styleable name="AppCompatTextView"> + + <attr format="reference|boolean" name="textAllCaps"/> + + <attr format="string" name="textLocale"/> + <attr name="android:textAppearance"/> + + <attr format="enum" name="autoSizeTextType"> + <!-- No auto-sizing (default). --> + <enum name="none" value="0"/> + <!-- Uniform horizontal and vertical text size scaling to fit within the + container. --> + <enum name="uniform" value="1"/> + </attr> + + <attr format="dimension" name="autoSizeStepGranularity"/> + + <attr format="reference" name="autoSizePresetSizes"/> + + <attr format="dimension" name="autoSizeMinTextSize"/> + + <attr format="dimension" name="autoSizeMaxTextSize"/> + + <attr format="string" name="fontFamily"/> + + <attr format="dimension" name="lineHeight"/> + + <attr format="dimension" name="firstBaselineToTopHeight"/> + + <attr format="dimension" name="lastBaselineToBottomHeight"/> + + <attr format="string" name="fontVariationSettings"/> + + <attr format="reference" name="drawableLeftCompat"/> + <attr format="reference" name="drawableTopCompat"/> + <attr format="reference" name="drawableRightCompat"/> + <attr format="reference" name="drawableBottomCompat"/> + <attr format="reference" name="drawableStartCompat"/> + <attr format="reference" name="drawableEndCompat"/> + + <attr format="color" name="drawableTint"/> + + <attr name="drawableTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + <attr format="boolean" name="emojiCompatEnabled"/> + </declare-styleable> + <declare-styleable name="AppCompatTheme"> + + + + + <eat-comment/> + + + <attr format="boolean" name="windowActionBar"/> + + + <attr format="boolean" name="windowNoTitle"/> + + + <attr format="boolean" name="windowActionBarOverlay"/> + + + <attr format="boolean" name="windowActionModeOverlay"/> + + + <attr format="dimension|fraction" name="windowFixedWidthMajor"/> + + <attr format="dimension|fraction" name="windowFixedHeightMinor"/> + + + <attr format="dimension|fraction" name="windowFixedWidthMinor"/> + + <attr format="dimension|fraction" name="windowFixedHeightMajor"/> + + + <attr format="dimension|fraction" name="windowMinWidthMajor"/> + + <attr format="dimension|fraction" name="windowMinWidthMinor"/> + + <attr name="android:windowIsFloating"/> + <attr name="android:windowAnimationStyle"/> + + + + + <eat-comment/> + + <attr format="reference" name="actionBarTabStyle"/> + <attr format="reference" name="actionBarTabBarStyle"/> + <attr format="reference" name="actionBarTabTextStyle"/> + <attr format="reference" name="actionOverflowButtonStyle"/> + <attr format="reference" name="actionOverflowMenuStyle"/> + + <attr format="reference" name="actionBarPopupTheme"/> + + <attr format="reference" name="actionBarStyle"/> + + <attr format="reference" name="actionBarSplitStyle"/> + + <attr format="reference" name="actionBarTheme"/> + + <attr format="reference" name="actionModeTheme"/> + + <attr format="reference" name="actionBarWidgetTheme"/> + + <attr format="dimension" name="actionBarSize"> + <enum name="wrap_content" value="0"/> + </attr> + + <attr format="reference" name="actionBarDivider"/> + + <attr format="reference" name="actionBarItemBackground"/> + + <attr format="reference" name="actionMenuTextAppearance"/> + + + <attr format="color|reference" name="actionMenuTextColor"/> + + + + + + <eat-comment/> + <attr format="reference" name="actionModeStyle"/> + <attr format="reference" name="actionModeCloseButtonStyle"/> + + <attr format="reference" name="actionModeBackground"/> + + <attr format="reference" name="actionModeSplitBackground"/> + + <attr format="reference" name="actionModeCloseDrawable"/> + + <attr format="reference" name="actionModeCutDrawable"/> + + <attr format="reference" name="actionModeCopyDrawable"/> + + <attr format="reference" name="actionModePasteDrawable"/> + + <attr format="reference" name="actionModeSelectAllDrawable"/> + + <attr format="reference" name="actionModeShareDrawable"/> + + <attr format="reference" name="actionModeFindDrawable"/> + + <attr format="reference" name="actionModeWebSearchDrawable"/> + + + <attr format="string" name="actionModeCloseContentDescription"/> + + + <attr format="reference" name="actionModePopupWindowStyle"/> + + + + + <eat-comment/> + + <attr format="reference" name="textAppearanceLargePopupMenu"/> + + <attr format="reference" name="textAppearanceSmallPopupMenu"/> + + <attr format="reference" name="textAppearancePopupMenuHeader"/> + + + + + + <eat-comment/> + + + <attr format="reference" name="dialogTheme"/> + + <attr format="dimension" name="dialogPreferredPadding"/> + + <attr format="reference" name="listDividerAlertDialog"/> + + <attr format="dimension" name="dialogCornerRadius"/> + + + + + <eat-comment/> + + + <attr format="reference" name="actionDropDownStyle"/> + + <attr format="dimension" name="dropdownListPreferredItemHeight"/> + + <attr format="reference" name="spinnerDropDownItemStyle"/> + + <attr format="reference" name="homeAsUpIndicator"/> + + + <attr format="reference" name="actionButtonStyle"/> + + + <attr format="reference" name="buttonBarStyle"/> + + <attr format="reference" name="buttonBarButtonStyle"/> + + <attr format="reference" name="selectableItemBackground"/> + + <attr format="reference" name="selectableItemBackgroundBorderless"/> + + <attr format="reference" name="borderlessButtonStyle"/> + + <attr format="reference" name="dividerVertical"/> + + <attr format="reference" name="dividerHorizontal"/> + + <attr format="reference" name="activityChooserViewStyle"/> + + + <attr format="reference" name="toolbarStyle"/> + + <attr format="reference" name="toolbarNavigationButtonStyle"/> + + + <attr format="reference" name="popupMenuStyle"/> + + <attr format="reference" name="popupWindowStyle"/> + + + <attr format="reference|color" name="editTextColor"/> + + <attr format="reference" name="editTextBackground"/> + + + <attr format="reference" name="imageButtonStyle"/> + + + + + <eat-comment/> + + <attr format="reference" name="textAppearanceSearchResultTitle"/> + + <attr format="reference" name="textAppearanceSearchResultSubtitle"/> + + <attr format="reference|color" name="textColorSearchUrl"/> + + <attr format="reference" name="searchViewStyle"/> + + + + + <eat-comment/> + + + <attr format="dimension" name="listPreferredItemHeight"/> + + <attr format="dimension" name="listPreferredItemHeightSmall"/> + + <attr format="dimension" name="listPreferredItemHeightLarge"/> + + + <attr format="dimension" name="listPreferredItemPaddingLeft"/> + + <attr format="dimension" name="listPreferredItemPaddingRight"/> + + + <attr format="dimension" name="listPreferredItemPaddingStart"/> + + <attr format="dimension" name="listPreferredItemPaddingEnd"/> + + + <attr format="reference" name="dropDownListViewStyle"/> + <attr format="reference" name="listPopupWindowStyle"/> + + + <attr format="reference" name="textAppearanceListItem"/> + + <attr format="reference" name="textAppearanceListItemSecondary"/> + + <attr format="reference" name="textAppearanceListItemSmall"/> + + + + + <eat-comment/> + + + <attr format="reference" name="panelBackground"/> + + <attr format="dimension" name="panelMenuListWidth"/> + + <attr format="reference" name="panelMenuListTheme"/> + + <attr format="reference" name="listChoiceBackgroundIndicator"/> + + + + + <eat-comment/> + + + <attr format="color" name="colorPrimary"/> + + + <attr format="color" name="colorPrimaryDark"/> + + + <attr format="color" name="colorAccent"/> + + + <attr format="color" name="colorControlNormal"/> + + + <attr format="color" name="colorControlActivated"/> + + + <attr format="color" name="colorControlHighlight"/> + + + <attr format="color" name="colorButtonNormal"/> + + + <attr format="color" name="colorSwitchThumbNormal"/> + + + <attr format="reference" name="controlBackground"/> + + + <attr format="color" name="colorBackgroundFloating"/> + + + + + <eat-comment/> + <attr format="reference" name="alertDialogStyle"/> + <attr format="reference" name="alertDialogButtonGroupStyle"/> + <attr format="boolean" name="alertDialogCenterButtons"/> + + <attr format="reference" name="alertDialogTheme"/> + + + <attr format="reference|color" name="textColorAlertDialogListItem"/> + + + <attr format="reference" name="buttonBarPositiveButtonStyle"/> + + + <attr format="reference" name="buttonBarNegativeButtonStyle"/> + + + <attr format="reference" name="buttonBarNeutralButtonStyle"/> + + + + + <eat-comment/> + + + <attr format="reference" name="autoCompleteTextViewStyle"/> + + <attr format="reference" name="buttonStyle"/> + + <attr format="reference" name="buttonStyleSmall"/> + + <attr format="reference" name="checkboxStyle"/> + + <attr format="reference" name="checkedTextViewStyle"/> + + <attr format="reference" name="editTextStyle"/> + + <attr format="reference" name="radioButtonStyle"/> + + <attr format="reference" name="ratingBarStyle"/> + + <attr format="reference" name="ratingBarStyleIndicator"/> + + <attr format="reference" name="ratingBarStyleSmall"/> + + <attr format="reference" name="seekBarStyle"/> + + <attr format="reference" name="spinnerStyle"/> + + <attr format="reference" name="switchStyle"/> + + + <attr format="reference" name="listMenuViewStyle"/> + + + + + <eat-comment/> + + + <attr format="reference" name="tooltipFrameBackground"/> + + <attr format="reference|color" name="tooltipForegroundColor"/> + + + <attr format="reference|color" name="colorError"/> + + <attr format="string" name="viewInflaterClass"/> + + + + + <eat-comment/> + + + <attr format="reference" name="listChoiceIndicatorSingleAnimated"/> + + <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/> + + </declare-styleable> + <declare-styleable name="ButtonBarLayout"> + + <attr format="boolean" name="allowStacking"/> + </declare-styleable> + <declare-styleable name="CheckedTextView"> + <attr name="android:checkMark"/> + + <attr format="reference" name="checkMarkCompat"/> + + <attr format="color" name="checkMarkTint"/> + + + <attr name="checkMarkTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and icon color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="CompoundButton"> + <attr name="android:button"/> + + <attr format="reference" name="buttonCompat"/> + + <attr format="color" name="buttonTint"/> + + + <attr name="buttonTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and icon color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="DrawerArrowToggle"> + + <attr format="color" name="color"/> + + <attr format="boolean" name="spinBars"/> + + <attr format="dimension" name="drawableSize"/> + + <attr format="dimension" name="gapBetweenBars"/> + + <attr format="dimension" name="arrowHeadLength"/> + + <attr format="dimension" name="arrowShaftLength"/> + + <attr format="dimension" name="barLength"/> + + <attr format="dimension" name="thickness"/> + </declare-styleable> + <declare-styleable name="LinearLayoutCompat"> + + <attr name="android:orientation"/> + <attr name="android:gravity"/> + + <attr name="android:baselineAligned"/> + + <attr name="android:baselineAlignedChildIndex"/> + + <attr name="android:weightSum"/> + + <attr format="boolean" name="measureWithLargestChild"/> + + <attr name="divider"/> + + <attr name="showDividers"> + <flag name="none" value="0"/> + <flag name="beginning" value="1"/> + <flag name="middle" value="2"/> + <flag name="end" value="4"/> + </attr> + + <attr format="dimension" name="dividerPadding"/> + </declare-styleable> + <declare-styleable name="LinearLayoutCompat_Layout"> + <attr name="android:layout_width"/> + <attr name="android:layout_height"/> + <attr name="android:layout_weight"/> + <attr name="android:layout_gravity"/> + </declare-styleable> + <declare-styleable name="ListPopupWindow"> + + <attr name="android:dropDownVerticalOffset"/> + + <attr name="android:dropDownHorizontalOffset"/> + </declare-styleable> + <declare-styleable name="MenuGroup"> + + + <attr name="android:id"/> + + + <attr name="android:menuCategory"/> + + + <attr name="android:orderInCategory"/> + + + <attr name="android:checkableBehavior"/> + + + <attr name="android:visible"/> + + + <attr name="android:enabled"/> + + </declare-styleable> + <declare-styleable name="MenuItem"> + + + <attr name="android:id"/> + + + <attr name="android:menuCategory"/> + + + <attr name="android:orderInCategory"/> + + + <attr name="android:title"/> + + + <attr name="android:titleCondensed"/> + + + <attr name="android:icon"/> + + + <attr name="android:alphabeticShortcut"/> + + + <attr name="alphabeticModifiers"> + <flag name="META" value="0x10000"/> + <flag name="CTRL" value="0x1000"/> + <flag name="ALT" value="0x02"/> + <flag name="SHIFT" value="0x1"/> + <flag name="SYM" value="0x4"/> + <flag name="FUNCTION" value="0x8"/> + </attr> + + + <attr name="android:numericShortcut"/> + + + <attr name="numericModifiers"> + <flag name="META" value="0x10000"/> + <flag name="CTRL" value="0x1000"/> + <flag name="ALT" value="0x02"/> + <flag name="SHIFT" value="0x1"/> + <flag name="SYM" value="0x4"/> + <flag name="FUNCTION" value="0x8"/> + </attr> + + + <attr name="android:checkable"/> + + + <attr name="android:checked"/> + + + <attr name="android:visible"/> + + + <attr name="android:enabled"/> + + + <attr name="android:onClick"/> + + + <attr name="showAsAction"> + <!-- Never show this item in an action bar, show it in the overflow menu instead. + Mutually exclusive with "ifRoom" and "always". --> + <flag name="never" value="0"/> + <!-- Show this item in an action bar if there is room for it as determined + by the system. Favor this option over "always" where possible. + Mutually exclusive with "never" and "always". --> + <flag name="ifRoom" value="1"/> + <!-- Always show this item in an actionbar, even if it would override + the system's limits of how much stuff to put there. This may make + your action bar look bad on some screens. In most cases you should + use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". --> + <flag name="always" value="2"/> + <!-- When this item is shown as an action in the action bar, show a text + label with it even if it has an icon representation. --> + <flag name="withText" value="4"/> + <!-- This item's action view collapses to a normal menu + item. When expanded, the action view takes over a + larger segment of its container. --> + <flag name="collapseActionView" value="8"/> + </attr> + + + <attr format="reference" name="actionLayout"/> + + + <attr format="string" name="actionViewClass"/> + + + <attr format="string" name="actionProviderClass"/> + + + <attr format="string" name="contentDescription"/> + + + <attr format="string" name="tooltipText"/> + + + <attr format="color" name="iconTint"/> + + + <attr name="iconTintMode"> + <!-- The tint is drawn on top of the icon. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the icon. The icon’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the icon, but with the icon’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the icon with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and icon color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + </declare-styleable> + <declare-styleable name="MenuView"> + + <attr name="android:itemTextAppearance"/> + + <attr name="android:horizontalDivider"/> + + <attr name="android:verticalDivider"/> + + <attr name="android:headerBackground"/> + + <attr name="android:itemBackground"/> + + <attr name="android:windowAnimationStyle"/> + + <attr name="android:itemIconDisabledAlpha"/> + + <attr format="boolean" name="preserveIconSpacing"/> + + <attr format="reference" name="subMenuArrow"/> + </declare-styleable> + <declare-styleable name="PopupWindow"> + + <attr format="boolean" name="overlapAnchor"/> + <attr name="android:popupBackground"/> + <attr name="android:popupAnimationStyle"/> + </declare-styleable> + <declare-styleable name="PopupWindowBackgroundState"> + + <attr format="boolean" name="state_above_anchor"/> + </declare-styleable> + <declare-styleable name="RecycleListView"> + + <attr format="dimension" name="paddingBottomNoButtons"/> + + <attr format="dimension" name="paddingTopNoTitle"/> + </declare-styleable> + <declare-styleable name="SearchView"> + + <attr format="reference" name="layout"/> + + <attr format="boolean" name="iconifiedByDefault"/> + + <attr name="android:maxWidth"/> + + <attr format="string" name="queryHint"/> + + <attr format="string" name="defaultQueryHint"/> + + <attr name="android:imeOptions"/> + + <attr name="android:inputType"/> + + <attr format="reference" name="closeIcon"/> + + <attr format="reference" name="goIcon"/> + + <attr format="reference" name="searchIcon"/> + + <attr format="reference" name="searchHintIcon"/> + + <attr format="reference" name="voiceIcon"/> + + <attr format="reference" name="commitIcon"/> + + <attr format="reference" name="suggestionRowLayout"/> + + <attr format="reference" name="queryBackground"/> + + <attr format="reference" name="submitBackground"/> + <attr name="android:focusable"/> + </declare-styleable> + <declare-styleable name="Spinner"> + + <attr name="android:prompt"/> + + <attr name="popupTheme"/> + + <attr name="android:popupBackground"/> + + <attr name="android:dropDownWidth"/> + + <attr name="android:entries"/> + </declare-styleable> + <declare-styleable name="SwitchCompat"> + + <attr name="android:thumb"/> + + <attr format="color" name="thumbTint"/> + + <attr name="thumbTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + <attr format="reference" name="track"/> + + <attr format="color" name="trackTint"/> + + <attr name="trackTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + <attr name="android:textOn"/> + + <attr name="android:textOff"/> + + <attr format="dimension" name="thumbTextPadding"/> + + <attr format="reference" name="switchTextAppearance"/> + + <attr format="dimension" name="switchMinWidth"/> + + <attr format="dimension" name="switchPadding"/> + + <attr format="boolean" name="splitTrack"/> + + <attr format="boolean" name="showText"/> + </declare-styleable> + <declare-styleable name="TextAppearance"> + <attr name="android:textSize"/> + <attr name="android:textColor"/> + <attr name="android:textColorHint"/> + <attr name="android:textColorLink"/> + <attr name="android:textStyle"/> + <attr name="android:textFontWeight"/> + <attr name="android:typeface"/> + <attr name="android:fontFamily"/> + <attr name="fontFamily"/> + <attr name="textAllCaps"/> + + <attr name="textLocale"/> + <attr name="android:shadowColor"/> + <attr name="android:shadowDy"/> + <attr name="android:shadowDx"/> + <attr name="android:shadowRadius"/> + + <attr name="fontVariationSettings"/> + </declare-styleable> + <declare-styleable name="Toolbar"> + <attr format="reference" name="titleTextAppearance"/> + <attr format="reference" name="subtitleTextAppearance"/> + <attr name="title"/> + <attr name="subtitle"/> + <attr name="android:gravity"/> + + <attr format="dimension" name="titleMargin"/> + + <attr format="dimension" name="titleMarginStart"/> + + <attr format="dimension" name="titleMarginEnd"/> + + <attr format="dimension" name="titleMarginTop"/> + + <attr format="dimension" name="titleMarginBottom"/> + + <attr format="dimension" name="titleMargins"/> + <attr name="contentInsetStart"/> + <attr name="contentInsetEnd"/> + <attr name="contentInsetLeft"/> + <attr name="contentInsetRight"/> + <attr name="contentInsetStartWithNavigation"/> + <attr name="contentInsetEndWithActions"/> + <attr format="dimension" name="maxButtonHeight"/> + <attr name="buttonGravity"> + <!-- Place object in the vertical center of its container, not changing its size. --> + <flag name="center_vertical" value="0x10"/> + <!-- Push object to the top of its container, not changing its size. --> + <flag name="top" value="0x30"/> + <!-- Push object to the bottom of its container, not changing its size. --> + <flag name="bottom" value="0x50"/> + </attr> + + <attr format="reference" name="collapseIcon"/> + + <attr format="string" name="collapseContentDescription"/> + + <attr name="popupTheme"/> + + <attr format="reference" name="navigationIcon"/> + + <attr format="string" name="navigationContentDescription"/> + + <attr name="logo"/> + + <attr format="string" name="logoDescription"/> + + <attr format="color" name="titleTextColor"/> + + <attr format="color" name="subtitleTextColor"/> + <attr name="android:minHeight"/> + + <attr format="reference" name="menu"/> + </declare-styleable> + <declare-styleable name="View"> + + <attr format="dimension" name="paddingStart"/> + + <attr format="dimension" name="paddingEnd"/> + + <attr name="android:focusable"/> + + <attr format="reference" name="theme"/> + + <attr name="android:theme"/> + </declare-styleable> + <declare-styleable name="ViewBackgroundHelper"> + <attr name="android:background"/> + + <attr format="color" name="backgroundTint"/> + + + <attr name="backgroundTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and icon color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="ViewStubCompat"> + + <attr name="android:layout"/> + + <attr name="android:inflatedId"/> + <attr name="android:id"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/128.stamp new file mode 100644 index 0000000000000000000000000000000000000000..4b29ae6af18eb20c302951ddd4eb5a3f53fc1993 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/128.stamp @@ -0,0 +1 @@ +8E9F920EDEB0A7C5 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..884bf7be67897774d715b7586c2787d7463e3561 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/AndroidManifest.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.constraintlayout.widget" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="30" /> + + <application /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..d8560bd4e22fad481a9d1edd484574bd157147f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,2 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..79772462752b9b3ccc59abcab6c88f692abf45e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/R.txt @@ -0,0 +1,2899 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 +int anim btn_checkbox_to_checked_icon_null_animation 0x0 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 +int attr SharedValue 0x0 +int attr SharedValueId 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionViewClass 0x0 +int attr activityChooserViewStyle 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alpha 0x0 +int attr alphabeticModifiers 0x0 +int attr altSrc 0x0 +int attr animateCircleAngleTo 0x0 +int attr animateRelativeTo 0x0 +int attr applyMotionScene 0x0 +int attr arcMode 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr attributeName 0x0 +int attr autoCompleteMode 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr autoTransition 0x0 +int attr background 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr barLength 0x0 +int attr barrierAllowsGoneWidgets 0x0 +int attr barrierDirection 0x0 +int attr barrierMargin 0x0 +int attr blendSrc 0x0 +int attr borderRound 0x0 +int attr borderRoundPercent 0x0 +int attr borderlessButtonStyle 0x0 +int attr brightness 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonCompat 0x0 +int attr buttonGravity 0x0 +int attr buttonIconDimen 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr carousel_backwardTransition 0x0 +int attr carousel_emptyViewsBehavior 0x0 +int attr carousel_firstView 0x0 +int attr carousel_forwardTransition 0x0 +int attr carousel_infinite 0x0 +int attr carousel_nextState 0x0 +int attr carousel_previousState 0x0 +int attr carousel_touchUpMode 0x0 +int attr carousel_touchUp_dampeningFactor 0x0 +int attr carousel_touchUp_velocityThreshold 0x0 +int attr chainUseRtl 0x0 +int attr checkboxStyle 0x0 +int attr checkedTextViewStyle 0x0 +int attr circleRadius 0x0 +int attr circularflow_angles 0x0 +int attr circularflow_defaultAngle 0x0 +int attr circularflow_defaultRadius 0x0 +int attr circularflow_radiusInDP 0x0 +int attr circularflow_viewCenter 0x0 +int attr clearsTag 0x0 +int attr clickAction 0x0 +int attr closeIcon 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryDark 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr commitIcon 0x0 +int attr constraintRotate 0x0 +int attr constraintSet 0x0 +int attr constraintSetEnd 0x0 +int attr constraintSetStart 0x0 +int attr constraint_referenced_ids 0x0 +int attr constraint_referenced_tags 0x0 +int attr constraints 0x0 +int attr content 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr contrast 0x0 +int attr controlBackground 0x0 +int attr crossfade 0x0 +int attr currentState 0x0 +int attr curveFit 0x0 +int attr customBoolean 0x0 +int attr customColorDrawableValue 0x0 +int attr customColorValue 0x0 +int attr customDimension 0x0 +int attr customFloatValue 0x0 +int attr customIntegerValue 0x0 +int attr customNavigationLayout 0x0 +int attr customPixelDimension 0x0 +int attr customReference 0x0 +int attr customStringValue 0x0 +int attr defaultDuration 0x0 +int attr defaultQueryHint 0x0 +int attr defaultState 0x0 +int attr deltaPolarAngle 0x0 +int attr deltaPolarRadius 0x0 +int attr deriveConstraintsFrom 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerHorizontal 0x0 +int attr dividerPadding 0x0 +int attr dividerVertical 0x0 +int attr dragDirection 0x0 +int attr dragScale 0x0 +int attr dragThreshold 0x0 +int attr drawPath 0x0 +int attr drawableBottomCompat 0x0 +int attr drawableEndCompat 0x0 +int attr drawableLeftCompat 0x0 +int attr drawableRightCompat 0x0 +int attr drawableSize 0x0 +int attr drawableStartCompat 0x0 +int attr drawableTint 0x0 +int attr drawableTintMode 0x0 +int attr drawableTopCompat 0x0 +int attr drawerArrowStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr duration 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr flow_firstHorizontalBias 0x0 +int attr flow_firstHorizontalStyle 0x0 +int attr flow_firstVerticalBias 0x0 +int attr flow_firstVerticalStyle 0x0 +int attr flow_horizontalAlign 0x0 +int attr flow_horizontalBias 0x0 +int attr flow_horizontalGap 0x0 +int attr flow_horizontalStyle 0x0 +int attr flow_lastHorizontalBias 0x0 +int attr flow_lastHorizontalStyle 0x0 +int attr flow_lastVerticalBias 0x0 +int attr flow_lastVerticalStyle 0x0 +int attr flow_maxElementsWrap 0x0 +int attr flow_padding 0x0 +int attr flow_verticalAlign 0x0 +int attr flow_verticalBias 0x0 +int attr flow_verticalGap 0x0 +int attr flow_verticalStyle 0x0 +int attr flow_wrapMode 0x0 +int attr font 0x0 +int attr fontFamily 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr framePosition 0x0 +int attr gapBetweenBars 0x0 +int attr goIcon 0x0 +int attr guidelineUseRtl 0x0 +int attr height 0x0 +int attr hideOnContentScroll 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr icon 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr ifTagNotSet 0x0 +int attr ifTagSet 0x0 +int attr imageButtonStyle 0x0 +int attr imagePanX 0x0 +int attr imagePanY 0x0 +int attr imageRotate 0x0 +int attr imageZoom 0x0 +int attr indeterminateProgressStyle 0x0 +int attr initialActivityCount 0x0 +int attr isLightTheme 0x0 +int attr itemPadding 0x0 +int attr keyPositionType 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr layout 0x0 +int attr layoutDescription 0x0 +int attr layoutDuringTransition 0x0 +int attr layout_constrainedHeight 0x0 +int attr layout_constrainedWidth 0x0 +int attr layout_constraintBaseline_creator 0x0 +int attr layout_constraintBaseline_toBaselineOf 0x0 +int attr layout_constraintBaseline_toBottomOf 0x0 +int attr layout_constraintBaseline_toTopOf 0x0 +int attr layout_constraintBottom_creator 0x0 +int attr layout_constraintBottom_toBottomOf 0x0 +int attr layout_constraintBottom_toTopOf 0x0 +int attr layout_constraintCircle 0x0 +int attr layout_constraintCircleAngle 0x0 +int attr layout_constraintCircleRadius 0x0 +int attr layout_constraintDimensionRatio 0x0 +int attr layout_constraintEnd_toEndOf 0x0 +int attr layout_constraintEnd_toStartOf 0x0 +int attr layout_constraintGuide_begin 0x0 +int attr layout_constraintGuide_end 0x0 +int attr layout_constraintGuide_percent 0x0 +int attr layout_constraintHeight 0x0 +int attr layout_constraintHeight_default 0x0 +int attr layout_constraintHeight_max 0x0 +int attr layout_constraintHeight_min 0x0 +int attr layout_constraintHeight_percent 0x0 +int attr layout_constraintHorizontal_bias 0x0 +int attr layout_constraintHorizontal_chainStyle 0x0 +int attr layout_constraintHorizontal_weight 0x0 +int attr layout_constraintLeft_creator 0x0 +int attr layout_constraintLeft_toLeftOf 0x0 +int attr layout_constraintLeft_toRightOf 0x0 +int attr layout_constraintRight_creator 0x0 +int attr layout_constraintRight_toLeftOf 0x0 +int attr layout_constraintRight_toRightOf 0x0 +int attr layout_constraintStart_toEndOf 0x0 +int attr layout_constraintStart_toStartOf 0x0 +int attr layout_constraintTag 0x0 +int attr layout_constraintTop_creator 0x0 +int attr layout_constraintTop_toBottomOf 0x0 +int attr layout_constraintTop_toTopOf 0x0 +int attr layout_constraintVertical_bias 0x0 +int attr layout_constraintVertical_chainStyle 0x0 +int attr layout_constraintVertical_weight 0x0 +int attr layout_constraintWidth 0x0 +int attr layout_constraintWidth_default 0x0 +int attr layout_constraintWidth_max 0x0 +int attr layout_constraintWidth_min 0x0 +int attr layout_constraintWidth_percent 0x0 +int attr layout_editor_absoluteX 0x0 +int attr layout_editor_absoluteY 0x0 +int attr layout_goneMarginBaseline 0x0 +int attr layout_goneMarginBottom 0x0 +int attr layout_goneMarginEnd 0x0 +int attr layout_goneMarginLeft 0x0 +int attr layout_goneMarginRight 0x0 +int attr layout_goneMarginStart 0x0 +int attr layout_goneMarginTop 0x0 +int attr layout_marginBaseline 0x0 +int attr layout_optimizationLevel 0x0 +int attr layout_wrapBehaviorInParent 0x0 +int attr limitBoundsTo 0x0 +int attr lineHeight 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listChoiceIndicatorMultipleAnimated 0x0 +int attr listChoiceIndicatorSingleAnimated 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingEnd 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr listPreferredItemPaddingStart 0x0 +int attr logo 0x0 +int attr logoDescription 0x0 +int attr maxAcceleration 0x0 +int attr maxButtonHeight 0x0 +int attr maxHeight 0x0 +int attr maxVelocity 0x0 +int attr maxWidth 0x0 +int attr measureWithLargestChild 0x0 +int attr menu 0x0 +int attr methodName 0x0 +int attr minHeight 0x0 +int attr minWidth 0x0 +int attr mock_diagonalsColor 0x0 +int attr mock_label 0x0 +int attr mock_labelBackgroundColor 0x0 +int attr mock_labelColor 0x0 +int attr mock_showDiagonals 0x0 +int attr mock_showLabel 0x0 +int attr motionDebug 0x0 +int attr motionEffect_alpha 0x0 +int attr motionEffect_end 0x0 +int attr motionEffect_move 0x0 +int attr motionEffect_start 0x0 +int attr motionEffect_strict 0x0 +int attr motionEffect_translationX 0x0 +int attr motionEffect_translationY 0x0 +int attr motionEffect_viewTransition 0x0 +int attr motionInterpolator 0x0 +int attr motionPathRotate 0x0 +int attr motionProgress 0x0 +int attr motionStagger 0x0 +int attr motionTarget 0x0 +int attr motion_postLayoutCollision 0x0 +int attr motion_triggerOnCollision 0x0 +int attr moveWhenScrollAtTop 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationMode 0x0 +int attr nestedScrollFlags 0x0 +int attr numericModifiers 0x0 +int attr onCross 0x0 +int attr onHide 0x0 +int attr onNegativeCross 0x0 +int attr onPositiveCross 0x0 +int attr onShow 0x0 +int attr onStateTransition 0x0 +int attr onTouchUp 0x0 +int attr overlapAnchor 0x0 +int attr overlay 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingEnd 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr pathMotionArc 0x0 +int attr path_percent 0x0 +int attr percentHeight 0x0 +int attr percentWidth 0x0 +int attr percentX 0x0 +int attr percentY 0x0 +int attr perpendicularPath_percent 0x0 +int attr pivotAnchor 0x0 +int attr placeholder_emptyVisibility 0x0 +int attr polarRelativeTo 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr preserveIconSpacing 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr quantizeMotionInterpolator 0x0 +int attr quantizeMotionPhase 0x0 +int attr quantizeMotionSteps 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr radioButtonStyle 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr reactiveGuide_animateChange 0x0 +int attr reactiveGuide_applyToAllConstraintSets 0x0 +int attr reactiveGuide_applyToConstraintSet 0x0 +int attr reactiveGuide_valueId 0x0 +int attr region_heightLessThan 0x0 +int attr region_heightMoreThan 0x0 +int attr region_widthLessThan 0x0 +int attr region_widthMoreThan 0x0 +int attr rotationCenterId 0x0 +int attr round 0x0 +int attr roundPercent 0x0 +int attr saturation 0x0 +int attr scaleFromTextSize 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchViewStyle 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr setsTag 0x0 +int attr showAsAction 0x0 +int attr showDividers 0x0 +int attr showPaths 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr singleChoiceItemLayout 0x0 +int attr sizePercent 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitTrack 0x0 +int attr springBoundary 0x0 +int attr springDamping 0x0 +int attr springMass 0x0 +int attr springStiffness 0x0 +int attr springStopThreshold 0x0 +int attr srcCompat 0x0 +int attr staggered 0x0 +int attr state_above_anchor 0x0 +int attr subMenuArrow 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr targetId 0x0 +int attr telltales_tailColor 0x0 +int attr telltales_tailScale 0x0 +int attr telltales_velocityMode 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textBackground 0x0 +int attr textBackgroundPanX 0x0 +int attr textBackgroundPanY 0x0 +int attr textBackgroundRotate 0x0 +int attr textBackgroundZoom 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr textFillColor 0x0 +int attr textLocale 0x0 +int attr textOutlineColor 0x0 +int attr textOutlineThickness 0x0 +int attr textPanX 0x0 +int attr textPanY 0x0 +int attr textureBlurFactor 0x0 +int attr textureEffect 0x0 +int attr textureHeight 0x0 +int attr textureWidth 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr title 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextStyle 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipText 0x0 +int attr touchAnchorId 0x0 +int attr touchAnchorSide 0x0 +int attr touchRegionId 0x0 +int attr track 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr transformPivotTarget 0x0 +int attr transitionDisable 0x0 +int attr transitionEasing 0x0 +int attr transitionFlags 0x0 +int attr transitionPathRotate 0x0 +int attr triggerId 0x0 +int attr triggerReceiver 0x0 +int attr triggerSlack 0x0 +int attr ttcIndex 0x0 +int attr upDuration 0x0 +int attr viewInflaterClass 0x0 +int attr viewTransitionMode 0x0 +int attr viewTransitionOnCross 0x0 +int attr viewTransitionOnNegativeCross 0x0 +int attr viewTransitionOnPositiveCross 0x0 +int attr visibilityMode 0x0 +int attr voiceIcon 0x0 +int attr warmth 0x0 +int attr waveDecay 0x0 +int attr waveOffset 0x0 +int attr wavePeriod 0x0 +int attr wavePhase 0x0 +int attr waveShape 0x0 +int attr waveVariesBy 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_allow_stacked_button_bar 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_decor_view_status_guard 0x0 +int color abc_decor_view_status_guard_light 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_height_large_material 0x0 +int dimen abc_list_item_height_material 0x0 +int dimen abc_list_item_height_small_material 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_material_anim 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_material_anim 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_star_black_16dp 0x0 +int drawable abc_ic_star_black_36dp 0x0 +int drawable abc_ic_star_black_48dp 0x0 +int drawable abc_ic_star_half_black_16dp 0x0 +int drawable abc_ic_star_half_black_36dp 0x0 +int drawable abc_ic_star_half_black_48dp 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl_dark 0x0 +int drawable abc_text_select_handle_left_mtrl_light 0x0 +int drawable abc_text_select_handle_middle_mtrl_dark 0x0 +int drawable abc_text_select_handle_middle_mtrl_light 0x0 +int drawable abc_text_select_handle_right_mtrl_dark 0x0 +int drawable abc_text_select_handle_right_mtrl_light 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable abc_vector_test 0x0 +int drawable btn_checkbox_checked_mtrl 0x0 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 +int drawable btn_checkbox_unchecked_mtrl 0x0 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 +int drawable btn_radio_off_mtrl 0x0 +int drawable btn_radio_off_to_on_mtrl_animation 0x0 +int drawable btn_radio_on_mtrl 0x0 +int drawable btn_radio_on_to_off_mtrl_animation 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id NO_DEBUG 0x0 +int id SHOW_ALL 0x0 +int id SHOW_PATH 0x0 +int id SHOW_PROGRESS 0x0 +int id accelerate 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id actionDown 0x0 +int id actionDownUp 0x0 +int id actionUp 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_container 0x0 +int id action_context_bar 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id action_text 0x0 +int id actions 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id alertTitle 0x0 +int id aligned 0x0 +int id allStates 0x0 +int id animateToEnd 0x0 +int id animateToStart 0x0 +int id antiClockwise 0x0 +int id anticipate 0x0 +int id asConfigured 0x0 +int id async 0x0 +int id auto 0x0 +int id autoComplete 0x0 +int id autoCompleteToEnd 0x0 +int id autoCompleteToStart 0x0 +int id baseline 0x0 +int id bestChoice 0x0 +int id blocking 0x0 +int id bottom 0x0 +int id bounce 0x0 +int id buttonPanel 0x0 +int id callMeasure 0x0 +int id carryVelocity 0x0 +int id center 0x0 +int id chain 0x0 +int id chain2 0x0 +int id checkbox 0x0 +int id checked 0x0 +int id chronometer 0x0 +int id clockwise 0x0 +int id closest 0x0 +int id constraint 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id continuousVelocity 0x0 +int id cos 0x0 +int id currentState 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id decelerate 0x0 +int id decelerateAndComplete 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id deltaRelative 0x0 +int id dialog_button 0x0 +int id dragAnticlockwise 0x0 +int id dragClockwise 0x0 +int id dragDown 0x0 +int id dragEnd 0x0 +int id dragLeft 0x0 +int id dragRight 0x0 +int id dragStart 0x0 +int id dragUp 0x0 +int id easeIn 0x0 +int id easeInOut 0x0 +int id easeOut 0x0 +int id east 0x0 +int id edit_query 0x0 +int id end 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id flip 0x0 +int id forever 0x0 +int id frost 0x0 +int id gone 0x0 +int id group_divider 0x0 +int id home 0x0 +int id honorRequest 0x0 +int id horizontal_only 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id ignore 0x0 +int id ignoreRequest 0x0 +int id image 0x0 +int id immediateStop 0x0 +int id included 0x0 +int id info 0x0 +int id invisible 0x0 +int id italic 0x0 +int id jumpToEnd 0x0 +int id jumpToStart 0x0 +int id layout 0x0 +int id left 0x0 +int id line1 0x0 +int id line3 0x0 +int id linear 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id match_constraint 0x0 +int id match_parent 0x0 +int id message 0x0 +int id middle 0x0 +int id motion_base 0x0 +int id multiply 0x0 +int id neverCompleteToEnd 0x0 +int id neverCompleteToStart 0x0 +int id noState 0x0 +int id none 0x0 +int id normal 0x0 +int id north 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id off 0x0 +int id on 0x0 +int id overshoot 0x0 +int id packed 0x0 +int id parent 0x0 +int id parentPanel 0x0 +int id parentRelative 0x0 +int id path 0x0 +int id pathRelative 0x0 +int id percent 0x0 +int id position 0x0 +int id postLayout 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id rectangles 0x0 +int id reverseSawtooth 0x0 +int id right 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id sawtooth 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id sharedValueSet 0x0 +int id sharedValueUnset 0x0 +int id shortcut 0x0 +int id sin 0x0 +int id skipped 0x0 +int id south 0x0 +int id spacer 0x0 +int id spline 0x0 +int id split_action_bar 0x0 +int id spread 0x0 +int id spread_inside 0x0 +int id spring 0x0 +int id square 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id standard 0x0 +int id start 0x0 +int id startHorizontal 0x0 +int id startVertical 0x0 +int id staticLayout 0x0 +int id staticPostLayout 0x0 +int id stop 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id text 0x0 +int id text2 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id time 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id top 0x0 +int id topPanel 0x0 +int id triangle 0x0 +int id unchecked 0x0 +int id uniform 0x0 +int id up 0x0 +int id vertical_only 0x0 +int id view_transition 0x0 +int id visible 0x0 +int id west 0x0 +int id wrap 0x0 +int id wrap_content 0x0 +int id wrap_content_constrained 0x0 +int id x_left 0x0 +int id x_right 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 +int interpolator fast_out_slow_in 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string search_menu_title 0x0 +int string status_bar_notification_info_overflow 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_DayNight 0x0 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Empty 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Carousel { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_barrierAllowsGoneWidgets 29 +int styleable Constraint_barrierDirection 30 +int styleable Constraint_barrierMargin 31 +int styleable Constraint_chainUseRtl 32 +int styleable Constraint_constraint_referenced_ids 33 +int styleable Constraint_constraint_referenced_tags 34 +int styleable Constraint_drawPath 35 +int styleable Constraint_flow_firstHorizontalBias 36 +int styleable Constraint_flow_firstHorizontalStyle 37 +int styleable Constraint_flow_firstVerticalBias 38 +int styleable Constraint_flow_firstVerticalStyle 39 +int styleable Constraint_flow_horizontalAlign 40 +int styleable Constraint_flow_horizontalBias 41 +int styleable Constraint_flow_horizontalGap 42 +int styleable Constraint_flow_horizontalStyle 43 +int styleable Constraint_flow_lastHorizontalBias 44 +int styleable Constraint_flow_lastHorizontalStyle 45 +int styleable Constraint_flow_lastVerticalBias 46 +int styleable Constraint_flow_lastVerticalStyle 47 +int styleable Constraint_flow_maxElementsWrap 48 +int styleable Constraint_flow_verticalAlign 49 +int styleable Constraint_flow_verticalBias 50 +int styleable Constraint_flow_verticalGap 51 +int styleable Constraint_flow_verticalStyle 52 +int styleable Constraint_flow_wrapMode 53 +int styleable Constraint_guidelineUseRtl 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x10100f5, 0x10100f6, 0x10100fa, 0x10103b6, 0x101053b, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x101053c, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_guidelineUseRtl 55 +int styleable ConstraintLayout_Layout_layoutDescription 56 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 57 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 64 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 65 +int styleable ConstraintLayout_Layout_layout_constraintCircle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 67 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 68 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 70 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 73 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 78 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 81 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 84 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 87 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 89 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 90 +int styleable ConstraintLayout_Layout_layout_constraintTag 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 93 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 96 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 101 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 103 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 105 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 106 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 107 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 108 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 109 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 110 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 111 +int styleable ConstraintLayout_Layout_layout_marginBaseline 112 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 113 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 114 +int[] styleable ConstraintLayout_ReactiveGuide { 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x0, 0x0 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_guidelineUseRtl 53 +int styleable ConstraintOverride_layout_constrainedHeight 54 +int styleable ConstraintOverride_layout_constrainedWidth 55 +int styleable ConstraintOverride_layout_constraintBaseline_creator 56 +int styleable ConstraintOverride_layout_constraintBottom_creator 57 +int styleable ConstraintOverride_layout_constraintCircleAngle 58 +int styleable ConstraintOverride_layout_constraintCircleRadius 59 +int styleable ConstraintOverride_layout_constraintDimensionRatio 60 +int styleable ConstraintOverride_layout_constraintGuide_begin 61 +int styleable ConstraintOverride_layout_constraintGuide_end 62 +int styleable ConstraintOverride_layout_constraintGuide_percent 63 +int styleable ConstraintOverride_layout_constraintHeight 64 +int styleable ConstraintOverride_layout_constraintHeight_default 65 +int styleable ConstraintOverride_layout_constraintHeight_max 66 +int styleable ConstraintOverride_layout_constraintHeight_min 67 +int styleable ConstraintOverride_layout_constraintHeight_percent 68 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 69 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 70 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 71 +int styleable ConstraintOverride_layout_constraintLeft_creator 72 +int styleable ConstraintOverride_layout_constraintRight_creator 73 +int styleable ConstraintOverride_layout_constraintTag 74 +int styleable ConstraintOverride_layout_constraintTop_creator 75 +int styleable ConstraintOverride_layout_constraintVertical_bias 76 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 77 +int styleable ConstraintOverride_layout_constraintVertical_weight 78 +int styleable ConstraintOverride_layout_constraintWidth 79 +int styleable ConstraintOverride_layout_constraintWidth_default 80 +int styleable ConstraintOverride_layout_constraintWidth_max 81 +int styleable ConstraintOverride_layout_constraintWidth_min 82 +int styleable ConstraintOverride_layout_constraintWidth_percent 83 +int styleable ConstraintOverride_layout_editor_absoluteX 84 +int styleable ConstraintOverride_layout_editor_absoluteY 85 +int styleable ConstraintOverride_layout_goneMarginBaseline 86 +int styleable ConstraintOverride_layout_goneMarginBottom 87 +int styleable ConstraintOverride_layout_goneMarginEnd 88 +int styleable ConstraintOverride_layout_goneMarginLeft 89 +int styleable ConstraintOverride_layout_goneMarginRight 90 +int styleable ConstraintOverride_layout_goneMarginStart 91 +int styleable ConstraintOverride_layout_goneMarginTop 92 +int styleable ConstraintOverride_layout_marginBaseline 93 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 94 +int styleable ConstraintOverride_motionProgress 95 +int styleable ConstraintOverride_motionStagger 96 +int styleable ConstraintOverride_motionTarget 97 +int styleable ConstraintOverride_pathMotionArc 98 +int styleable ConstraintOverride_pivotAnchor 99 +int styleable ConstraintOverride_polarRelativeTo 100 +int styleable ConstraintOverride_quantizeMotionInterpolator 101 +int styleable ConstraintOverride_quantizeMotionPhase 102 +int styleable ConstraintOverride_quantizeMotionSteps 103 +int styleable ConstraintOverride_transformPivotTarget 104 +int styleable ConstraintOverride_transitionEasing 105 +int styleable ConstraintOverride_transitionPathRotate 106 +int styleable ConstraintOverride_visibilityMode 107 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animateCircleAngleTo 29 +int styleable ConstraintSet_animateRelativeTo 30 +int styleable ConstraintSet_barrierAllowsGoneWidgets 31 +int styleable ConstraintSet_barrierDirection 32 +int styleable ConstraintSet_barrierMargin 33 +int styleable ConstraintSet_chainUseRtl 34 +int styleable ConstraintSet_constraintRotate 35 +int styleable ConstraintSet_constraint_referenced_ids 36 +int styleable ConstraintSet_constraint_referenced_tags 37 +int styleable ConstraintSet_deriveConstraintsFrom 38 +int styleable ConstraintSet_drawPath 39 +int styleable ConstraintSet_flow_firstHorizontalBias 40 +int styleable ConstraintSet_flow_firstHorizontalStyle 41 +int styleable ConstraintSet_flow_firstVerticalBias 42 +int styleable ConstraintSet_flow_firstVerticalStyle 43 +int styleable ConstraintSet_flow_horizontalAlign 44 +int styleable ConstraintSet_flow_horizontalBias 45 +int styleable ConstraintSet_flow_horizontalGap 46 +int styleable ConstraintSet_flow_horizontalStyle 47 +int styleable ConstraintSet_flow_lastHorizontalBias 48 +int styleable ConstraintSet_flow_lastHorizontalStyle 49 +int styleable ConstraintSet_flow_lastVerticalBias 50 +int styleable ConstraintSet_flow_lastVerticalStyle 51 +int styleable ConstraintSet_flow_maxElementsWrap 52 +int styleable ConstraintSet_flow_verticalAlign 53 +int styleable ConstraintSet_flow_verticalBias 54 +int styleable ConstraintSet_flow_verticalGap 55 +int styleable ConstraintSet_flow_verticalStyle 56 +int styleable ConstraintSet_flow_wrapMode 57 +int styleable ConstraintSet_guidelineUseRtl 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int[] styleable CustomAttribute { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_guidelineUseRtl 15 +int styleable Layout_layout_constrainedHeight 16 +int styleable Layout_layout_constrainedWidth 17 +int styleable Layout_layout_constraintBaseline_creator 18 +int styleable Layout_layout_constraintBaseline_toBaselineOf 19 +int styleable Layout_layout_constraintBaseline_toBottomOf 20 +int styleable Layout_layout_constraintBaseline_toTopOf 21 +int styleable Layout_layout_constraintBottom_creator 22 +int styleable Layout_layout_constraintBottom_toBottomOf 23 +int styleable Layout_layout_constraintBottom_toTopOf 24 +int styleable Layout_layout_constraintCircle 25 +int styleable Layout_layout_constraintCircleAngle 26 +int styleable Layout_layout_constraintCircleRadius 27 +int styleable Layout_layout_constraintDimensionRatio 28 +int styleable Layout_layout_constraintEnd_toEndOf 29 +int styleable Layout_layout_constraintEnd_toStartOf 30 +int styleable Layout_layout_constraintGuide_begin 31 +int styleable Layout_layout_constraintGuide_end 32 +int styleable Layout_layout_constraintGuide_percent 33 +int styleable Layout_layout_constraintHeight 34 +int styleable Layout_layout_constraintHeight_default 35 +int styleable Layout_layout_constraintHeight_max 36 +int styleable Layout_layout_constraintHeight_min 37 +int styleable Layout_layout_constraintHeight_percent 38 +int styleable Layout_layout_constraintHorizontal_bias 39 +int styleable Layout_layout_constraintHorizontal_chainStyle 40 +int styleable Layout_layout_constraintHorizontal_weight 41 +int styleable Layout_layout_constraintLeft_creator 42 +int styleable Layout_layout_constraintLeft_toLeftOf 43 +int styleable Layout_layout_constraintLeft_toRightOf 44 +int styleable Layout_layout_constraintRight_creator 45 +int styleable Layout_layout_constraintRight_toLeftOf 46 +int styleable Layout_layout_constraintRight_toRightOf 47 +int styleable Layout_layout_constraintStart_toEndOf 48 +int styleable Layout_layout_constraintStart_toStartOf 49 +int styleable Layout_layout_constraintTop_creator 50 +int styleable Layout_layout_constraintTop_toBottomOf 51 +int styleable Layout_layout_constraintTop_toTopOf 52 +int styleable Layout_layout_constraintVertical_bias 53 +int styleable Layout_layout_constraintVertical_chainStyle 54 +int styleable Layout_layout_constraintVertical_weight 55 +int styleable Layout_layout_constraintWidth 56 +int styleable Layout_layout_constraintWidth_default 57 +int styleable Layout_layout_constraintWidth_max 58 +int styleable Layout_layout_constraintWidth_min 59 +int styleable Layout_layout_constraintWidth_percent 60 +int styleable Layout_layout_editor_absoluteX 61 +int styleable Layout_layout_editor_absoluteY 62 +int styleable Layout_layout_goneMarginBaseline 63 +int styleable Layout_layout_goneMarginBottom 64 +int styleable Layout_layout_goneMarginEnd 65 +int styleable Layout_layout_goneMarginLeft 66 +int styleable Layout_layout_goneMarginRight 67 +int styleable Layout_layout_goneMarginStart 68 +int styleable Layout_layout_goneMarginTop 69 +int styleable Layout_layout_marginBaseline 70 +int styleable Layout_layout_wrapBehaviorInParent 71 +int styleable Layout_maxHeight 72 +int styleable Layout_maxWidth 73 +int styleable Layout_minHeight 74 +int styleable Layout_minWidth 75 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_drawPath 2 +int styleable Motion_motionPathRotate 3 +int styleable Motion_motionStagger 4 +int styleable Motion_pathMotionArc 5 +int styleable Motion_quantizeMotionInterpolator 6 +int styleable Motion_quantizeMotionPhase 7 +int styleable Motion_quantizeMotionSteps 8 +int styleable Motion_transitionEasing 9 +int[] styleable MotionEffect { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x0, 0x0 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x0, 0x0 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x0, 0x0, 0x0 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable OnClick { 0x0, 0x0 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x0, 0x0, 0x0 } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x0 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x0 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x101014f, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x0 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x10100d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x0, 0x0, 0x10100d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ViewTransition_SharedValue 0 +int styleable ViewTransition_SharedValueId 1 +int styleable ViewTransition_android_id 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable include { 0x0 } +int styleable include_constraintSet 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..6020b54fa3de86638f3177e9bad11df5d0232ff4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..185f113c4c7045d2fab63c35a0487ed30ae176e1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..ecd644d04f196cd3b3e2f2a2a5e627a8aff8dd43 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/128/jl/res/values/values.xml @@ -0,0 +1,1563 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="enum" name="animateCircleAngleTo"> + <enum name="bestChoice" value="0"/> + <enum name="closest" value="1"/> + <enum name="clockwise" value="2"/> + <enum name="antiClockwise" value="3"/> + <enum name="constraint" value="4"/> + </attr> + <attr format="reference" name="animateRelativeTo"/> + <attr format="enum" name="arcMode"> + <enum name="startVertical" value="0"/> + <enum name="startHorizontal" value="1"/> + <enum name="flip" value="2"/> + </attr> + <attr format="boolean" name="barrierAllowsGoneWidgets"/> + <attr format="enum" name="barrierDirection"> + <enum name="left" value="0"/> + <enum name="right" value="1"/> + <enum name="top" value="2"/> + <enum name="bottom" value="3"/> + <enum name="start" value="5"/> + <enum name="end" value="6"/> + </attr> + <attr format="dimension" name="barrierMargin"/> + <attr format="dimension" name="borderRound"/> + <attr format="float" name="borderRoundPercent"/> + <attr format="boolean" name="chainUseRtl"/> + <attr format="dimension" name="circleRadius"/> + <attr format="string" name="circularflow_angles"/> + <attr format="float" name="circularflow_defaultAngle"/> + <attr format="dimension" name="circularflow_defaultRadius"/> + <attr format="string" name="circularflow_radiusInDP"/> + <attr format="reference" name="circularflow_viewCenter"/> + <attr format="reference" name="constraintSet"/> + <attr format="string" name="constraint_referenced_ids"/> + <attr format="string" name="constraint_referenced_tags"/> + <attr format="reference" name="content"/> + <attr format="enum" name="curveFit"> + <enum name="spline" value="0"/> + <enum name="linear" value="1"/> + </attr> + <attr format="integer" name="defaultDuration"/> + <attr format="float" name="deltaPolarAngle"/> + <attr format="float" name="deltaPolarRadius"/> + <attr format="enum" name="dragDirection"> + <enum name="dragUp" value="0"/> + <enum name="dragDown" value="1"/> + <enum name="dragLeft" value="2"/> + <enum name="dragRight" value="3"/> + <enum name="dragStart" value="4"/> + <enum name="dragEnd" value="5"/> + <enum name="dragClockwise" value="6"/> + <enum name="dragAnticlockwise" value="7"/> + </attr> + <attr format="enum" name="drawPath"> + <enum name="none" value="0"/> + <enum name="path" value="1"/> + <enum name="pathRelative" value="2"/> + <enum name="deltaRelative" value="3"/> + <enum name="asConfigured" value="4"/> + <enum name="rectangles" value="5"/> + </attr> + <attr format="integer" name="duration"/> + <attr format="float" name="flow_firstHorizontalBias"/> + <attr format="enum" name="flow_firstHorizontalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="float" name="flow_firstVerticalBias"/> + <attr format="enum" name="flow_firstVerticalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="enum" name="flow_horizontalAlign"> + <enum name="start" value="0"/> + <enum name="end" value="1"/> + <enum name="center" value="2"/> + </attr> + <attr format="float" name="flow_horizontalBias"/> + <attr format="dimension" name="flow_horizontalGap"/> + <attr format="enum" name="flow_horizontalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="float" name="flow_lastHorizontalBias"/> + <attr format="enum" name="flow_lastHorizontalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="float" name="flow_lastVerticalBias"/> + <attr format="enum" name="flow_lastVerticalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="integer" name="flow_maxElementsWrap"/> + <attr format="dimension" name="flow_padding"/> + <attr format="enum" name="flow_verticalAlign"> + <enum name="top" value="0"/> + <enum name="bottom" value="1"/> + <enum name="center" value="2"/> + <enum name="baseline" value="3"/> + </attr> + <attr format="float" name="flow_verticalBias"/> + <attr format="dimension" name="flow_verticalGap"/> + <attr format="enum" name="flow_verticalStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="enum" name="flow_wrapMode"> + <enum name="none" value="0"/> + <enum name="chain" value="1"/> + <enum name="aligned" value="2"/> + <enum name="chain2" value="3"/> + </attr> + <attr format="integer" name="framePosition"/> + <attr format="boolean" name="guidelineUseRtl"/> + <attr format="reference" name="layoutDescription"/> + <attr format="enum" name="layoutDuringTransition"> + <enum name="ignoreRequest" value="0"/> + <enum name="honorRequest" value="1"/> + <enum name="callMeasure" value="2"/> + + </attr> + <attr format="boolean" name="layout_constrainedHeight"/> + <attr format="boolean" name="layout_constrainedWidth"/> + <attr format="integer" name="layout_constraintBaseline_creator"/> + <attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintBaseline_toBottomOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintBaseline_toTopOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="integer" name="layout_constraintBottom_creator"/> + <attr format="reference|enum" name="layout_constraintBottom_toBottomOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintBottom_toTopOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference" name="layout_constraintCircle"/> + <attr format="float" name="layout_constraintCircleAngle"/> + <attr format="dimension" name="layout_constraintCircleRadius"/> + <attr format="string" name="layout_constraintDimensionRatio"/> + <attr format="reference|enum" name="layout_constraintEnd_toEndOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintEnd_toStartOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="dimension" name="layout_constraintGuide_begin"/> + <attr format="dimension" name="layout_constraintGuide_end"/> + <attr format="float" name="layout_constraintGuide_percent"/> + <attr format="dimension|enum|string" name="layout_constraintHeight"> + <enum name="match_parent" value="-1"/> + <enum name="wrap_content" value="-2"/> + <enum name="match_constraint" value="-3"/> + <enum name="wrap_content_constrained" value="-4"/> + </attr> + <attr name="layout_constraintHeight_default"> + <enum name="spread" value="0"/> + <enum name="wrap" value="1"/> + <enum name="percent" value="2"/> + </attr> + <attr format="dimension|enum" name="layout_constraintHeight_max"> + <enum name="wrap" value="-2"/> + </attr> + <attr format="dimension|enum" name="layout_constraintHeight_min"> + <enum name="wrap" value="-2"/> + </attr> + <attr format="float" name="layout_constraintHeight_percent"/> + <attr format="float" name="layout_constraintHorizontal_bias"/> + <attr format="enum" name="layout_constraintHorizontal_chainStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="float" name="layout_constraintHorizontal_weight"/> + <attr format="integer" name="layout_constraintLeft_creator"/> + <attr format="reference|enum" name="layout_constraintLeft_toLeftOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintLeft_toRightOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="integer" name="layout_constraintRight_creator"/> + <attr format="reference|enum" name="layout_constraintRight_toLeftOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintRight_toRightOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintStart_toEndOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintStart_toStartOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="string" name="layout_constraintTag"/> + <attr format="integer" name="layout_constraintTop_creator"/> + <attr format="reference|enum" name="layout_constraintTop_toBottomOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="reference|enum" name="layout_constraintTop_toTopOf"> + <enum name="parent" value="0"/> + </attr> + <attr format="float" name="layout_constraintVertical_bias"/> + <attr format="enum" name="layout_constraintVertical_chainStyle"> + <enum name="spread" value="0"/> + <enum name="spread_inside" value="1"/> + <enum name="packed" value="2"/> + </attr> + <attr format="float" name="layout_constraintVertical_weight"/> + <attr format="dimension|enum|string" name="layout_constraintWidth"> + <enum name="match_parent" value="-1"/> + <enum name="wrap_content" value="-2"/> + <enum name="match_constraint" value="-3"/> + <enum name="wrap_content_constrained" value="-4"/> + </attr> + <attr name="layout_constraintWidth_default"> + <enum name="spread" value="0"/> + <enum name="wrap" value="1"/> + <enum name="percent" value="2"/> + </attr> + <attr format="dimension|enum" name="layout_constraintWidth_max"> + <enum name="wrap" value="-2"/> + </attr> + <attr format="dimension|enum" name="layout_constraintWidth_min"> + <enum name="wrap" value="-2"/> + </attr> + <attr format="float" name="layout_constraintWidth_percent"/> + <attr format="dimension" name="layout_editor_absoluteX"/> + <attr format="dimension" name="layout_editor_absoluteY"/> + <attr format="dimension" name="layout_goneMarginBaseline"/> + <attr format="dimension" name="layout_goneMarginBottom"/> + <attr format="dimension" name="layout_goneMarginEnd"/> + <attr format="dimension" name="layout_goneMarginLeft"/> + <attr format="dimension" name="layout_goneMarginRight"/> + <attr format="dimension" name="layout_goneMarginStart"/> + <attr format="dimension" name="layout_goneMarginTop"/> + <attr format="dimension" name="layout_marginBaseline"/> + <attr name="layout_optimizationLevel"> + <flag name="none" value="0"/> + <flag name="legacy" value="0"/> + <flag name="standard" value="257"/> <!-- direct, measure caches --> + <flag name="direct" value="1"/> + <flag name="barrier" value="2"/> + <flag name="chains" value="4"/> + <flag name="dimensions" value="8"/> + <flag name="ratio" value="16"/> + <flag name="groups" value="32"/> + <flag name="graph" value="64"/> + <flag name="graph_wrap" value="128"/> + <flag name="cache_measures" value="256"/> + <flag name="dependency_ordering" value="512"/> + <flag name="grouping" value="1024"/> + </attr> + <attr format="enum" name="layout_wrapBehaviorInParent"> + <enum name="included" value="0"/> + <enum name="horizontal_only" value="1"/> + <enum name="vertical_only" value="2"/> + <enum name="skipped" value="3"/> + </attr> + <attr format="float" name="motionPathRotate"/> + <attr format="float" name="motionProgress"/> + <attr format="float" name="motionStagger"/> + <attr format="reference|string" name="motionTarget"/> + <attr format="enum" name="onStateTransition"> + <enum name="actionDown" value="1"/> + <enum name="actionUp" value="2"/> + <enum name="actionDownUp" value="3"/> + <enum name="sharedValueSet" value="4"/> + <enum name="sharedValueUnset" value="5"/> + </attr> + <attr format="enum" name="pathMotionArc"> + <enum name="none" value="0"/> + <enum name="startVertical" value="1"/> + <enum name="startHorizontal" value="2"/> + <enum name="flip" value="3"/> + </attr> + <attr format="float" name="path_percent"/> + <attr format="float" name="perpendicularPath_percent"/> + <attr format="reference|enum" name="pivotAnchor"> + <enum name="parent" value="0"/> + </attr> + <attr name="placeholder_emptyVisibility"> + <enum name="visible" value="0"/> + <enum name="invisible" value="4"/> + <enum name="gone" value="8"/> + </attr> + <attr format="reference" name="polarRelativeTo"/> + <attr format="string|reference|enum" name="quantizeMotionInterpolator"> + <enum name="easeInOut" value="0"/> + <enum name="easeIn" value="1"/> + <enum name="easeOut" value="2"/> + <enum name="linear" value="3"/> + <enum name="bounce" value="4"/> + <enum name="overshoot" value="5"/> + </attr> + <attr format="float" name="quantizeMotionPhase"/> + <attr format="integer" name="quantizeMotionSteps"/> + <attr format="float" name="sizePercent"/> + <attr format="reference" name="targetId"/> + <attr format="color" name="textOutlineColor"/> + <attr format="dimension" name="textOutlineThickness"/> + <attr format="reference" name="touchAnchorId"/> + <attr format="enum" name="touchAnchorSide"> + <enum name="top" value="0"/> + <enum name="left" value="1"/> + <enum name="right" value="2"/> + <enum name="bottom" value="3"/> + <enum name="middle" value="4"/> + <enum name="start" value="5"/> + <enum name="end" value="6"/> + </attr> + <attr format="reference" name="transformPivotTarget"/> + <attr format="boolean" name="transitionDisable"/> + <attr format="string|enum" name="transitionEasing"> + <enum name="standard" value="0"/> + <enum name="accelerate" value="1"/> + <enum name="decelerate" value="2"/> + <enum name="linear" value="3"/> + </attr> + <attr format="float" name="transitionPathRotate"/> + <attr format="enum" name="viewTransitionMode"> + <enum name="currentState" value="0"/> + <enum name="allStates" value="1"/> + <!-- Operates independently of the rest of MotionLayout constraint set system --> + <enum name="noState" value="2"/> + </attr> + <attr format="enum" name="visibilityMode"> + <enum name="normal" value="0"/> + <enum name="ignore" value="1"/> + </attr> + <attr format="integer" name="waveDecay"/> + <attr format="float|dimension" name="waveOffset"/> + <attr format="float" name="wavePeriod"/> + <attr format="float" name="wavePhase"/> + <attr format="enum|string" name="waveShape"> + <enum name="sin" value="0"/> + <enum name="square" value="1"/> + <enum name="triangle" value="2"/> + <enum name="sawtooth" value="3"/> + <enum name="reverseSawtooth" value="4"/> + <enum name="cos" value="5"/> + <enum name="bounce" value="6"/> + </attr> + <attr format="enum" name="waveVariesBy"> + <enum name="position" value="0"/> + <enum name="path" value="1"/> + </attr> + <item name="motion_base" type="id"/> + <item name="view_transition" type="id"/> + <declare-styleable name="Carousel"> + <attr format="reference" name="carousel_firstView"/> + <attr format="reference" name="carousel_previousState"/> + <attr format="reference" name="carousel_nextState"/> + <attr format="boolean" name="carousel_infinite"/> + <attr format="reference" name="carousel_forwardTransition"/> + <attr format="reference" name="carousel_backwardTransition"/> + <attr format="float" name="carousel_touchUp_dampeningFactor"/> + <attr format="enum" name="carousel_touchUpMode"> + <enum name="immediateStop" value="1"/> + <enum name="carryVelocity" value="2"/> + </attr> + <attr format="float" name="carousel_touchUp_velocityThreshold"/> + <attr format="enum" name="carousel_emptyViewsBehavior"> + <enum name="invisible" value="4"/> + <enum name="gone" value="8"/> + </attr> + </declare-styleable> + <declare-styleable name="Constraint"> + <attr name="android:orientation"/> + <attr name="android:id"/> + + <!-- Controls the initial visibility of the view. --> + <attr name="android:visibility"/> + <attr name="visibilityMode"/> + + <!-- alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque). --> + <attr name="android:alpha"/> + + <!-- base z depth of the view. --> + <attr name="android:elevation"/> + + <!-- rotation of the view, in degrees. --> + <attr name="android:rotation"/> + + <!-- rotation of the view around the x axis, in degrees. --> + <attr name="android:rotationX"/> + + <!-- rotation of the view around the y axis, in degrees. --> + <attr name="android:rotationY"/> + + <!-- scale of the view in the x direction. --> + <attr name="android:scaleX"/> + + <!-- scale of the view in the y direction. --> + <attr name="android:scaleY"/> + <attr name="pivotAnchor"/> + + <attr name="android:transformPivotX"/> + <attr name="android:transformPivotY"/> + <attr name="transformPivotTarget"/> + + <!-- translation in x of the view. This value is added post-layout to the left + property of the view, which is set by its layout. --> + <attr name="android:translationX"/> + <!-- translation in y of the view. This value is added post-layout to the top + property of the view, which is set by its layout. --> + <attr name="android:translationY"/> + <!-- translation in z of the view. This value is added to its elevation. --> + <attr name="android:translationZ"/> + <!-- Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. --> + <attr name="android:layout_width"/> + <!-- Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. --> + <attr name="android:layout_height"/> + <!-- Specifies extra space on the start side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="layout_constraintWidth"/> + <attr name="layout_constraintHeight"/> + <attr name="android:layout_marginStart"/> + <!-- Specifies extra space on the bottom side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginBottom"/> + <!-- Specifies extra space on the top side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginTop"/> + <!-- Specifies extra space on the end side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginEnd"/> + <!-- Specifies extra space on the left side of this view. + This space is outside this view's bounds. + Margin values should be positive. --> + <attr name="android:layout_marginLeft"/> + <!-- Specifies extra space on the right side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginRight"/> + + <attr name="layout_constraintCircle"/> + <attr name="layout_constraintCircleRadius"/> + <attr name="layout_constraintCircleAngle"/> + + <attr name="layout_constraintGuide_begin"/> + <attr name="layout_constraintGuide_end"/> + <attr name="layout_constraintGuide_percent"/> + <attr name="guidelineUseRtl"/> + <attr name="layout_constraintLeft_toLeftOf"/> + <attr name="layout_constraintLeft_toRightOf"/> + <attr name="layout_constraintRight_toLeftOf"/> + <attr name="layout_constraintRight_toRightOf"/> + <attr name="layout_constraintTop_toTopOf"/> + <attr name="layout_constraintTop_toBottomOf"/> + <attr name="layout_constraintBottom_toTopOf"/> + <attr name="layout_constraintBottom_toBottomOf"/> + <attr name="layout_constraintBaseline_toBaselineOf"/> + <attr name="layout_constraintBaseline_toTopOf"/> + <attr name="layout_constraintBaseline_toBottomOf"/> + <attr name="layout_constraintStart_toEndOf"/> + <attr name="layout_constraintStart_toStartOf"/> + <attr name="layout_constraintEnd_toStartOf"/> + <attr name="layout_constraintEnd_toEndOf"/> + <attr name="layout_goneMarginLeft"/> + <attr name="layout_goneMarginTop"/> + <attr name="layout_goneMarginRight"/> + <attr name="layout_goneMarginBottom"/> + <attr name="layout_goneMarginStart"/> + <attr name="layout_goneMarginEnd"/> + <attr name="layout_goneMarginBaseline"/> + <attr name="layout_marginBaseline"/> + <attr name="layout_constrainedWidth"/> + <attr name="layout_constrainedHeight"/> + <attr name="layout_constraintHorizontal_bias"/> + <attr name="layout_constraintVertical_bias"/> + <attr name="layout_constraintWidth_default"/> + <attr name="layout_constraintHeight_default"/> + <attr name="layout_constraintWidth_min"/> + <attr name="layout_constraintWidth_max"/> + <attr name="layout_constraintWidth_percent"/> + <attr name="layout_constraintHeight_min"/> + <attr name="layout_constraintHeight_max"/> + <attr name="layout_constraintHeight_percent"/> + <attr name="layout_constraintLeft_creator"/> + <attr name="layout_constraintTop_creator"/> + <attr name="layout_constraintRight_creator"/> + <attr name="layout_constraintBottom_creator"/> + <attr name="layout_constraintBaseline_creator"/> + <attr name="layout_constraintDimensionRatio"/> + <attr name="layout_constraintHorizontal_weight"/> + <attr name="layout_constraintVertical_weight"/> + <attr name="layout_constraintHorizontal_chainStyle"/> + <attr name="layout_constraintVertical_chainStyle"/> + <attr name="layout_editor_absoluteX"/> + <attr name="layout_editor_absoluteY"/> + <attr name="layout_wrapBehaviorInParent"/> + + <attr name="barrierDirection"/> + <attr name="barrierMargin"/> + <attr name="constraint_referenced_ids"/> + <attr name="constraint_referenced_tags"/> + + <attr name="android:maxHeight"/> + <attr name="android:maxWidth"/> + <attr name="android:minHeight"/> + <attr name="android:minWidth"/> + <attr name="barrierAllowsGoneWidgets"/> + <attr name="chainUseRtl"/> + + <attr name="flow_horizontalStyle"/> + <attr name="flow_verticalStyle"/> + <attr name="flow_verticalAlign"/> + <attr name="flow_horizontalAlign"/> + <attr name="flow_verticalBias"/> + <attr name="flow_horizontalBias"/> + <attr name="flow_wrapMode"/> + <attr name="flow_maxElementsWrap"/> + <attr name="flow_horizontalGap"/> + <attr name="flow_verticalGap"/> + <!-- <attr name="flow_horizontalSeparator" />--> + <!-- <attr name="flow_verticalSeparator" />--> + + <attr name="flow_firstHorizontalStyle"/> + <attr name="flow_firstVerticalStyle"/> + <attr name="flow_firstHorizontalBias"/> + <attr name="flow_firstVerticalBias"/> + + <attr name="flow_lastHorizontalStyle"/> + <attr name="flow_lastVerticalStyle"/> + <attr name="flow_lastHorizontalBias"/> + <attr name="flow_lastVerticalBias"/> + + <attr name="animateRelativeTo"/> + <attr name="animateCircleAngleTo"/> + <attr name="transitionEasing"/> + <attr name="pathMotionArc"/> + <attr name="polarRelativeTo"/> + <attr name="transitionPathRotate"/> + <attr name="drawPath"/> + <attr name="motionProgress"/> + <attr name="layout_constraintTag"/> + <attr name="motionStagger"/> + <attr name="quantizeMotionSteps"/> + <attr name="quantizeMotionPhase"/> + <attr name="quantizeMotionInterpolator"/> + </declare-styleable> + <declare-styleable name="ConstraintLayout_Layout"> + <attr name="android:orientation"/> + <attr name="android:minWidth"/> + <attr name="android:minHeight"/> + <attr name="android:maxWidth"/> + <attr name="android:maxHeight"/> + <attr name="android:visibility"/> + <attr name="android:elevation"/> + + <attr name="layout_optimizationLevel"/> + <attr name="layoutDescription"/> + + <attr name="constraintSet"/> + <attr name="barrierDirection"/> + <attr name="barrierAllowsGoneWidgets"/> + <attr name="barrierMargin"/> + <attr name="constraint_referenced_ids"/> + <attr name="constraint_referenced_tags"/> + <attr name="chainUseRtl"/> + + <attr name="flow_horizontalStyle"/> + <attr name="flow_verticalStyle"/> + <attr name="flow_wrapMode"/> + <attr name="flow_maxElementsWrap"/> + <attr name="flow_horizontalGap"/> + <attr name="flow_verticalGap"/> + <attr name="android:padding"/> + <attr name="android:paddingTop"/> + <attr name="android:paddingBottom"/> + <attr name="android:paddingLeft"/> + <attr name="android:paddingRight"/> + <attr name="android:paddingStart"/> + <attr name="android:paddingEnd"/> + <attr name="flow_verticalAlign"/> + <attr name="flow_horizontalAlign"/> + <attr name="flow_verticalBias"/> + <attr name="flow_horizontalBias"/> + <!-- <attr name="flow_horizontalSeparator" />--> + <!-- <attr name="flow_verticalSeparator" />--> + + <attr name="flow_firstHorizontalStyle"/> + <attr name="flow_firstVerticalStyle"/> + <attr name="flow_firstHorizontalBias"/> + <attr name="flow_firstVerticalBias"/> + + <attr name="flow_lastHorizontalStyle"/> + <attr name="flow_lastVerticalStyle"/> + <attr name="flow_lastHorizontalBias"/> + <attr name="flow_lastVerticalBias"/> + + <attr name="circularflow_radiusInDP"/> + <attr name="circularflow_angles"/> + <attr name="circularflow_viewCenter"/> + <attr name="circularflow_defaultRadius"/> + <attr name="circularflow_defaultAngle"/> + + + <attr name="layout_constraintCircle"/> + <attr name="layout_constraintCircleRadius"/> + <attr name="layout_constraintCircleAngle"/> + + <attr name="layout_constraintGuide_begin"/> + <attr name="layout_constraintGuide_end"/> + <attr name="layout_constraintGuide_percent"/> + <attr name="guidelineUseRtl"/> + <attr name="layout_constraintLeft_toLeftOf"/> + <attr name="layout_constraintLeft_toRightOf"/> + <attr name="layout_constraintRight_toLeftOf"/> + <attr name="layout_constraintRight_toRightOf"/> + <attr name="layout_constraintTop_toTopOf"/> + <attr name="layout_constraintTop_toBottomOf"/> + <attr name="layout_constraintBottom_toTopOf"/> + <attr name="layout_constraintBottom_toBottomOf"/> + <attr name="layout_constraintBaseline_toBaselineOf"/> + <attr name="layout_constraintBaseline_toTopOf"/> + <attr name="layout_constraintBaseline_toBottomOf"/> + <attr name="layout_constraintStart_toEndOf"/> + <attr name="layout_constraintStart_toStartOf"/> + <attr name="layout_constraintEnd_toStartOf"/> + <attr name="layout_constraintEnd_toEndOf"/> + <attr name="layout_goneMarginLeft"/> + <attr name="layout_goneMarginTop"/> + <attr name="layout_goneMarginRight"/> + <attr name="layout_goneMarginBottom"/> + <attr name="layout_goneMarginStart"/> + <attr name="layout_goneMarginEnd"/> + <attr name="layout_goneMarginBaseline"/> + <attr name="layout_marginBaseline"/> + <attr name="layout_constraintWidth"/> + <attr name="layout_constraintHeight"/> + <attr name="android:layout_width"/> + <attr name="android:layout_height"/> + <attr name="android:layout_margin"/> + <attr name="android:layout_marginHorizontal"/> + <attr name="android:layout_marginVertical"/> + <attr name="android:layout_marginLeft"/> + <attr name="android:layout_marginRight"/> + <attr name="android:layout_marginTop"/> + <attr name="android:layout_marginBottom"/> + <attr name="android:layout_marginStart"/> + <attr name="android:layout_marginEnd"/> + <attr name="layout_constrainedWidth"/> + <attr name="layout_constrainedHeight"/> + <attr name="layout_constraintHorizontal_bias"/> + <attr name="layout_constraintVertical_bias"/> + <attr name="layout_constraintWidth_default"/> + <attr name="layout_constraintHeight_default"/> + <attr name="layout_constraintWidth_min"/> + <attr name="layout_constraintWidth_max"/> + <attr name="layout_constraintWidth_percent"/> + <attr name="layout_constraintHeight_min"/> + <attr name="layout_constraintHeight_max"/> + <attr name="layout_constraintHeight_percent"/> + <attr name="layout_constraintLeft_creator"/> + <attr name="layout_constraintTop_creator"/> + <attr name="layout_constraintRight_creator"/> + <attr name="layout_constraintBottom_creator"/> + <attr name="layout_constraintBaseline_creator"/> + <attr name="layout_constraintDimensionRatio"/> + <attr name="layout_constraintHorizontal_weight"/> + <attr name="layout_constraintVertical_weight"/> + <attr name="layout_constraintHorizontal_chainStyle"/> + <attr name="layout_constraintVertical_chainStyle"/> + <attr name="layout_editor_absoluteX"/> + <attr name="layout_editor_absoluteY"/> + <attr name="layout_constraintTag"/> + <attr name="layout_wrapBehaviorInParent"/> + </declare-styleable> + <declare-styleable name="ConstraintLayout_ReactiveGuide"> + <attr format="reference" name="reactiveGuide_valueId"/> + <attr format="boolean" name="reactiveGuide_animateChange"/> + <attr format="boolean" name="reactiveGuide_applyToAllConstraintSets"/> + <attr format="reference" name="reactiveGuide_applyToConstraintSet"/> + </declare-styleable> + <declare-styleable name="ConstraintLayout_placeholder"> + <attr name="placeholder_emptyVisibility"/> + <attr name="content"/> + </declare-styleable> + <declare-styleable name="ConstraintOverride"> + <attr name="android:orientation"/> + <attr name="android:id"/> + <attr name="motionTarget"/> + + <!-- Controls the initial visibility of the view. --> + <attr name="android:visibility"/> + <attr name="visibilityMode"/> + + <!-- alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque). --> + <attr name="android:alpha"/> + + <!-- base z depth of the view. --> + <attr name="android:elevation"/> + + <!-- rotation of the view, in degrees. --> + <attr name="android:rotation"/> + + <!-- rotation of the view around the x axis, in degrees. --> + <attr name="android:rotationX"/> + + <!-- rotation of the view around the y axis, in degrees. --> + <attr name="android:rotationY"/> + + <!-- scale of the view in the x direction. --> + <attr name="android:scaleX"/> + + <!-- scale of the view in the y direction. --> + <attr name="android:scaleY"/> + <attr name="pivotAnchor"/> + + <attr name="android:transformPivotX"/> + <attr name="android:transformPivotY"/> + <attr name="transformPivotTarget"/> + + <!-- translation in x of the view. This value is added post-layout to the left + property of the view, which is set by its layout. --> + <attr name="android:translationX"/> + <!-- translation in y of the view. This value is added post-layout to the top + property of the view, which is set by its layout. --> + <attr name="android:translationY"/> + <!-- translation in z of the view. This value is added to its elevation. --> + <attr name="android:translationZ"/> + <!-- Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. --> + <attr name="android:layout_width"/> + <!-- Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. --> + <attr name="android:layout_height"/> + <!-- Specifies extra space on the start side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="layout_constraintWidth"/> + <attr name="layout_constraintHeight"/> + <attr name="android:layout_marginStart"/> + <!-- Specifies extra space on the bottom side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginBottom"/> + <!-- Specifies extra space on the top side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginTop"/> + <!-- Specifies extra space on the end side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginEnd"/> + <!-- Specifies extra space on the left side of this view. + This space is outside this view's bounds. + Margin values should be positive. --> + <attr name="android:layout_marginLeft"/> + <!-- Specifies extra space on the right side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginRight"/> + + <attr name="layout_constraintCircleRadius"/> + <attr name="layout_constraintCircleAngle"/> + + <attr name="layout_constraintGuide_begin"/> + <attr name="layout_constraintGuide_end"/> + <attr name="layout_constraintGuide_percent"/> + <attr name="guidelineUseRtl"/> + + <attr name="layout_goneMarginLeft"/> + <attr name="layout_goneMarginTop"/> + <attr name="layout_goneMarginRight"/> + <attr name="layout_goneMarginBottom"/> + <attr name="layout_goneMarginStart"/> + <attr name="layout_goneMarginEnd"/> + <attr name="layout_goneMarginBaseline"/> + <attr name="layout_marginBaseline"/> + <attr name="layout_constrainedWidth"/> + <attr name="layout_constrainedHeight"/> + <attr name="layout_constraintHorizontal_bias"/> + <attr name="layout_constraintVertical_bias"/> + <attr name="layout_constraintWidth_default"/> + <attr name="layout_constraintHeight_default"/> + <attr name="layout_constraintWidth_min"/> + <attr name="layout_constraintWidth_max"/> + <attr name="layout_constraintWidth_percent"/> + <attr name="layout_constraintHeight_min"/> + <attr name="layout_constraintHeight_max"/> + <attr name="layout_constraintHeight_percent"/> + <attr name="layout_constraintLeft_creator"/> + <attr name="layout_constraintTop_creator"/> + <attr name="layout_constraintRight_creator"/> + <attr name="layout_constraintBottom_creator"/> + <attr name="layout_constraintBaseline_creator"/> + <attr name="layout_constraintDimensionRatio"/> + <attr name="layout_constraintHorizontal_weight"/> + <attr name="layout_constraintVertical_weight"/> + <attr name="layout_constraintHorizontal_chainStyle"/> + <attr name="layout_constraintVertical_chainStyle"/> + <attr name="layout_editor_absoluteX"/> + <attr name="layout_editor_absoluteY"/> + <attr name="layout_wrapBehaviorInParent"/> + + <attr name="barrierDirection"/> + <attr name="barrierMargin"/> + <attr name="constraint_referenced_ids"/> + <attr name="android:maxHeight"/> + <attr name="android:maxWidth"/> + <attr name="android:minHeight"/> + <attr name="android:minWidth"/> + <attr name="barrierAllowsGoneWidgets"/> + <attr name="chainUseRtl"/> + + <attr name="flow_horizontalStyle"/> + <attr name="flow_verticalStyle"/> + <attr name="flow_verticalAlign"/> + <attr name="flow_horizontalAlign"/> + <attr name="flow_verticalBias"/> + <attr name="flow_horizontalBias"/> + <attr name="flow_wrapMode"/> + <attr name="flow_maxElementsWrap"/> + <attr name="flow_horizontalGap"/> + <attr name="flow_verticalGap"/> + <!-- <attr name="flow_horizontalSeparator" />--> + <!-- <attr name="flow_verticalSeparator" />--> + + <attr name="flow_firstHorizontalStyle"/> + <attr name="flow_firstVerticalStyle"/> + <attr name="flow_firstHorizontalBias"/> + <attr name="flow_firstVerticalBias"/> + + <attr name="flow_lastHorizontalStyle"/> + <attr name="flow_lastVerticalStyle"/> + <attr name="flow_lastHorizontalBias"/> + <attr name="flow_lastVerticalBias"/> + + <attr name="animateRelativeTo"/> + <attr name="animateCircleAngleTo"/> + <attr name="transitionEasing"/> + <attr name="pathMotionArc"/> + <attr name="polarRelativeTo"/> + <attr name="transitionPathRotate"/> + <attr name="drawPath"/> + <attr name="motionProgress"/> + <attr name="layout_constraintTag"/> + <attr name="motionStagger"/> + <attr name="quantizeMotionSteps"/> + <attr name="quantizeMotionPhase"/> + <attr name="quantizeMotionInterpolator"/> + </declare-styleable> + <declare-styleable name="ConstraintSet"> + <attr format="reference" name="deriveConstraintsFrom"/> + <attr format="enum" name="constraintRotate"> + <enum name="none" value="0"/> + <enum name="right" value="1"/> + <enum name="left" value="2"/> + <enum name="x_right" value="3"/> + <enum name="x_left" value="4"/> + </attr> + <attr name="android:orientation"/> + <attr name="android:id"/> + <attr name="android:visibility"/> + <attr name="android:alpha"/> + <attr name="android:elevation"/> + <attr name="android:rotation"/> + <attr name="android:rotationX"/> + <attr name="android:rotationY"/> + <attr name="android:scaleX"/> + <attr name="android:scaleY"/> + <attr name="pivotAnchor"/> + <attr name="android:pivotX"/> + <attr name="android:pivotY"/> + <attr name="android:transformPivotX"/> + <attr name="android:transformPivotY"/> + <attr name="android:translationX"/> + <attr name="android:translationY"/> + <attr name="android:translationZ"/> + <attr name="android:layout_width"/> + <!-- Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. --> + <attr name="android:layout_height"/> + <!-- Specifies extra space on the start side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginStart"/> + <!-- Specifies extra space on the bottom side of this view. + This space is outside this view's bounds. + Margin values should be positive.--> + <attr name="android:layout_marginBottom"/> + <attr name="android:layout_marginTop"/> + <attr name="android:layout_marginEnd"/> + <attr name="android:layout_marginLeft"/> + <attr name="android:layout_marginRight"/> + + <attr name="layout_constraintCircle"/> + <attr name="layout_constraintCircleRadius"/> + <attr name="layout_constraintCircleAngle"/> + + <attr name="layout_constraintGuide_begin"/> + <attr name="layout_constraintGuide_end"/> + <attr name="layout_constraintGuide_percent"/> + <attr name="guidelineUseRtl"/> + + <attr name="layout_constraintLeft_toLeftOf"/> + <attr name="layout_constraintLeft_toRightOf"/> + <attr name="layout_constraintRight_toLeftOf"/> + <attr name="layout_constraintRight_toRightOf"/> + <attr name="layout_constraintTop_toTopOf"/> + <attr name="layout_constraintTop_toBottomOf"/> + <attr name="layout_constraintBottom_toTopOf"/> + <attr name="layout_constraintBottom_toBottomOf"/> + <attr name="layout_constraintBaseline_toBaselineOf"/> + <attr name="layout_constraintBaseline_toTopOf"/> + <attr name="layout_constraintBaseline_toBottomOf"/> + <attr name="layout_constraintStart_toEndOf"/> + <attr name="layout_constraintStart_toStartOf"/> + <attr name="layout_constraintEnd_toStartOf"/> + <attr name="layout_constraintEnd_toEndOf"/> + <attr name="layout_goneMarginLeft"/> + <attr name="layout_goneMarginTop"/> + <attr name="layout_goneMarginRight"/> + <attr name="layout_goneMarginBottom"/> + <attr name="layout_goneMarginStart"/> + <attr name="layout_goneMarginEnd"/> + <attr name="layout_goneMarginBaseline"/> + <attr name="layout_marginBaseline"/> + <attr name="layout_constrainedWidth"/> + <attr name="layout_constrainedHeight"/> + <attr name="layout_constraintHorizontal_bias"/> + <attr name="layout_constraintVertical_bias"/> + <attr name="layout_constraintWidth_default"/> + <attr name="layout_constraintHeight_default"/> + <attr name="layout_constraintWidth_min"/> + <attr name="layout_constraintWidth_max"/> + <attr name="layout_constraintWidth_percent"/> + <attr name="layout_constraintHeight_min"/> + <attr name="layout_constraintHeight_max"/> + <attr name="layout_constraintHeight_percent"/> + <attr name="layout_constraintLeft_creator"/> + <attr name="layout_constraintTop_creator"/> + <attr name="layout_constraintRight_creator"/> + <attr name="layout_constraintBottom_creator"/> + <attr name="layout_constraintBaseline_creator"/> + <attr name="layout_constraintDimensionRatio"/> + <attr name="layout_constraintHorizontal_weight"/> + <attr name="layout_constraintVertical_weight"/> + <attr name="layout_constraintHorizontal_chainStyle"/> + <attr name="layout_constraintVertical_chainStyle"/> + <attr name="layout_editor_absoluteX"/> + <attr name="layout_editor_absoluteY"/> + <attr name="layout_wrapBehaviorInParent"/> + + <attr name="barrierDirection"/> + <attr name="constraint_referenced_ids"/> + <attr name="constraint_referenced_tags"/> + <attr name="barrierMargin"/> + <attr name="android:maxHeight"/> + <attr name="android:maxWidth"/> + <attr name="android:minHeight"/> + <attr name="android:minWidth"/> + <attr name="barrierAllowsGoneWidgets"/> + <attr name="chainUseRtl"/> + + <attr name="flow_horizontalStyle"/> + <attr name="flow_verticalStyle"/> + <attr name="flow_verticalAlign"/> + <attr name="flow_horizontalAlign"/> + <attr name="flow_verticalBias"/> + <attr name="flow_horizontalBias"/> + <attr name="flow_wrapMode"/> + <attr name="flow_maxElementsWrap"/> + <attr name="flow_horizontalGap"/> + <attr name="flow_verticalGap"/> + <!-- <attr name="flow_horizontalSeparator" />--> + <!-- <attr name="flow_verticalSeparator" />--> + + <attr name="flow_firstHorizontalStyle"/> + <attr name="flow_firstVerticalStyle"/> + <attr name="flow_firstHorizontalBias"/> + <attr name="flow_firstVerticalBias"/> + + <attr name="flow_lastHorizontalStyle"/> + <attr name="flow_lastVerticalStyle"/> + <attr name="flow_lastHorizontalBias"/> + <attr name="flow_lastVerticalBias"/> + + <attr name="animateRelativeTo"/> + <attr name="animateCircleAngleTo"/> + + <attr name="transitionEasing"/> + <attr name="pathMotionArc"/> + <attr name="polarRelativeTo"/> + <attr name="transitionPathRotate"/> + <attr name="motionStagger"/> + <attr name="quantizeMotionSteps"/> + <attr name="drawPath"/> + <attr name="motionProgress"/> + <attr name="layout_constraintTag"/> + + </declare-styleable> + <declare-styleable name="CustomAttribute"> + <attr format="string" name="attributeName"/> + <attr format="string" name="methodName"/> + <attr format="color" name="customColorValue"/> + <attr format="color" name="customColorDrawableValue"/> + <attr format="integer" name="customIntegerValue"/> + <attr format="float" name="customFloatValue"/> + <attr format="string" name="customStringValue"/> + <attr format="dimension" name="customDimension"/> + <attr format="dimension" name="customPixelDimension"/> + <attr format="boolean" name="customBoolean"/> + <attr format="reference" name="customReference"/> + </declare-styleable> + <declare-styleable name="ImageFilterView"> + <attr format="reference" name="blendSrc"/> + <attr format="reference" name="altSrc"/> + <attr format="float" name="saturation"/> + <attr format="float" name="brightness"/> + <attr format="float" name="warmth"/> + <attr format="float" name="contrast"/> + <attr format="float" name="crossfade"/> + <attr format="dimension" name="round"/> + <attr format="boolean" name="overlay"/> + <attr format="float" name="roundPercent"/> + <attr format="float" name="imagePanX"/> + <attr format="float" name="imagePanY"/> + <attr format="float" name="imageZoom"/> + <attr format="float" name="imageRotate"/> + </declare-styleable> + <declare-styleable name="KeyAttribute"> + <attr name="framePosition"/> + <attr name="motionTarget"/> + <attr name="transitionEasing"/> + <attr name="curveFit"/> + + <attr name="motionProgress"/> + + <!-- interpolated --> + <attr name="android:alpha"/> + <attr name="android:elevation"/> + <attr name="android:rotation"/> + <attr name="android:rotationX"/> + <attr name="android:rotationY"/> + <attr name="android:transformPivotX"/> + <attr name="android:transformPivotY"/> + <attr name="transformPivotTarget"/> + + <attr name="transitionPathRotate"/> + <attr name="android:scaleX"/> + <attr name="android:scaleY"/> + <attr name="android:translationX"/> + <attr name="android:translationY"/> + <attr name="android:translationZ"/> + </declare-styleable> + <declare-styleable name="KeyCycle"> + <attr name="motionTarget"/> + <attr name="curveFit"/> + <attr name="framePosition"/> + <attr name="transitionEasing"/> + <attr name="motionProgress"/> + <attr name="waveShape"/> + <attr name="wavePhase"/> + <attr name="wavePeriod"/> + <attr name="waveOffset"/> + <attr name="waveVariesBy"/> + <attr name="transitionPathRotate"/> + <attr name="android:alpha"/> + <attr name="android:elevation"/> + <attr name="android:rotation"/> + <attr name="android:rotationX"/> + <attr name="android:rotationY"/> + <attr name="android:scaleX"/> + <attr name="android:scaleY"/> + <attr name="android:translationX"/> + <attr name="android:translationY"/> + <attr name="android:translationZ"/> + </declare-styleable> + <declare-styleable name="KeyFrame"> + + </declare-styleable> + <declare-styleable name="KeyFramesAcceleration"> + + </declare-styleable> + <declare-styleable name="KeyFramesVelocity"> + + </declare-styleable> + <declare-styleable name="KeyPosition"> + <!-- How this keyframe's deviation for linear path is calculated. --> + <attr format="enum" name="keyPositionType"> + <enum name="deltaRelative" value="0"/> + <enum name="pathRelative" value="1"/> + <enum name="parentRelative" value="2"/> + </attr> + + <!-- Percent distance from start to end along X axis (deltaRelative) + or along the path in pathRelative. --> + <attr format="float" name="percentX"/> + + <!-- Percent distance from start to end along Y axis (deltaRelative) + or perpendicular to the path in pathRelative. --> + <attr format="float" name="percentY"/> + + <!-- Percent of change in the width. Note if the width does not change this has no effect.This overrides sizePercent. --> + <attr format="float" name="percentWidth"/> + + <!-- Percent of change in the width. Note if the width does not change this has no effect.This overrides sizePercent. --> + <attr format="float" name="percentHeight"/> + <attr name="framePosition"/> + <attr name="motionTarget"/> + <attr name="transitionEasing"/> + <attr name="pathMotionArc"/> + <attr name="curveFit"/> + <attr name="drawPath"/> + <attr name="sizePercent"/> + </declare-styleable> + <declare-styleable name="KeyTimeCycle"> + <attr name="framePosition"/> + <attr name="motionTarget"/> + <attr name="transitionEasing"/> + <attr name="curveFit"/> + <attr name="waveShape"/> + <attr name="wavePeriod"/> + <attr name="motionProgress"/> + <attr name="waveOffset"/> + <attr name="wavePhase"/> + + <!-- The time in milliseconds before the wave decays to less than 1/256--> + <attr name="waveDecay"/> + + <!-- interpolated --> + <attr name="android:alpha"/> + <attr name="android:elevation"/> + <attr name="android:rotation"/> + <attr name="android:rotationX"/> + <attr name="android:rotationY"/> + <attr name="transitionPathRotate"/> + <attr name="android:scaleX"/> + <attr name="android:scaleY"/> + <attr name="android:translationX"/> + <attr name="android:translationY"/> + <attr name="android:translationZ"/> + </declare-styleable> + <declare-styleable name="KeyTrigger"> + <attr name="framePosition"/> + <attr name="motionTarget"/> + <attr format="reference" name="triggerReceiver"/> + <attr format="string" name="onNegativeCross"/> + <attr format="string" name="onPositiveCross"/> + <attr format="string" name="onCross"/> + <attr format="reference" name="viewTransitionOnNegativeCross"/> + <attr format="reference" name="viewTransitionOnPositiveCross"/> + <attr format="reference" name="viewTransitionOnCross"/> + <attr format="float" name="triggerSlack"/> + <!-- The id of this trigger use when a callback listens for triggers --> + <attr format="reference" name="triggerId"/> + <attr format="boolean" name="motion_postLayoutCollision"/> + <!-- Trigger if the motionTarget collides with the other motionTarget--> + <attr format="reference" name="motion_triggerOnCollision"/> + </declare-styleable> + <declare-styleable name="Layout"> + + <attr name="android:layout_width"/> + <attr name="android:layout_height"/> + <attr name="layout_constraintWidth"/> + <attr name="layout_constraintHeight"/> + + <attr name="android:layout_marginStart"/> + + <attr name="android:layout_marginBottom"/> + + <attr name="android:layout_marginTop"/> + + <attr name="android:layout_marginEnd"/> + + <attr name="android:layout_marginLeft"/> + + <attr name="android:layout_marginRight"/> + + <attr name="layout_constraintCircle"/> + <attr name="layout_constraintCircleRadius"/> + <attr name="layout_constraintCircleAngle"/> + <attr name="layout_constraintGuide_begin"/> + <attr name="layout_constraintGuide_end"/> + <attr name="layout_constraintGuide_percent"/> + <attr name="guidelineUseRtl"/> + <attr name="layout_constraintLeft_toLeftOf"/> + <attr name="layout_constraintLeft_toRightOf"/> + <attr name="layout_constraintRight_toLeftOf"/> + <attr name="layout_constraintRight_toRightOf"/> + <attr name="layout_constraintTop_toTopOf"/> + <attr name="layout_constraintTop_toBottomOf"/> + <attr name="layout_constraintBottom_toTopOf"/> + <attr name="layout_constraintBottom_toBottomOf"/> + <attr name="layout_constraintBaseline_toBaselineOf"/> + <attr name="layout_constraintBaseline_toTopOf"/> + <attr name="layout_constraintBaseline_toBottomOf"/> + <attr name="layout_constraintStart_toEndOf"/> + <attr name="layout_constraintStart_toStartOf"/> + <attr name="layout_constraintEnd_toStartOf"/> + <attr name="layout_constraintEnd_toEndOf"/> + <attr name="layout_goneMarginLeft"/> + <attr name="layout_goneMarginTop"/> + <attr name="layout_goneMarginRight"/> + <attr name="layout_goneMarginBottom"/> + <attr name="layout_goneMarginStart"/> + <attr name="layout_goneMarginEnd"/> + <attr name="layout_goneMarginBaseline"/> + <attr name="layout_marginBaseline"/> + <attr name="layout_constrainedWidth"/> + <attr name="layout_constrainedHeight"/> + <attr name="layout_constraintHorizontal_bias"/> + <attr name="layout_constraintVertical_bias"/> + <attr name="layout_constraintWidth_default"/> + <attr name="layout_constraintHeight_default"/> + <attr name="layout_constraintWidth_min"/> + <attr name="layout_constraintWidth_max"/> + <attr name="android:orientation"/> + <attr name="layout_constraintWidth_percent"/> + <attr name="layout_constraintHeight_min"/> + <attr name="layout_constraintHeight_max"/> + <attr name="layout_constraintHeight_percent"/> + <attr name="layout_constraintLeft_creator"/> + <attr name="layout_constraintTop_creator"/> + <attr name="layout_constraintRight_creator"/> + <attr name="layout_constraintBottom_creator"/> + <attr name="layout_constraintBaseline_creator"/> + <attr name="layout_constraintDimensionRatio"/> + <attr name="layout_constraintHorizontal_weight"/> + <attr name="layout_constraintVertical_weight"/> + <attr name="layout_constraintHorizontal_chainStyle"/> + <attr name="layout_constraintVertical_chainStyle"/> + <attr name="layout_editor_absoluteX"/> + <attr name="layout_editor_absoluteY"/> + <attr name="layout_wrapBehaviorInParent"/> + <attr name="barrierDirection"/> + <attr name="barrierMargin"/> + <attr name="constraint_referenced_ids"/> + <attr name="constraint_referenced_tags"/> + <attr format="dimension" name="maxHeight"/> + <attr format="dimension" name="maxWidth"/> + <attr format="dimension" name="minHeight"/> + <attr format="dimension" name="minWidth"/> + <attr name="barrierAllowsGoneWidgets"/> + <attr name="chainUseRtl"/> + </declare-styleable> + <declare-styleable name="MockView"> + <attr format="string" name="mock_label"/> + <attr format="color" name="mock_labelColor"/> + <attr format="color" name="mock_labelBackgroundColor"/> + <attr format="color" name="mock_diagonalsColor"/> + <attr format="boolean" name="mock_showDiagonals"/> + <attr format="boolean" name="mock_showLabel"/> + </declare-styleable> + <declare-styleable name="Motion"> + <attr name="animateRelativeTo"/> + <attr name="animateCircleAngleTo"/> + <attr name="transitionEasing"/> + <attr name="pathMotionArc"/> + <attr name="motionPathRotate"/> + <attr name="motionStagger"/> + <attr name="drawPath"/> + <attr name="quantizeMotionSteps"/> + <attr name="quantizeMotionPhase"/> + <attr name="quantizeMotionInterpolator"/> + + </declare-styleable> + <declare-styleable name="MotionEffect"> + <attr format="integer" name="motionEffect_start"/> + <attr format="integer" name="motionEffect_end"/> + <attr format="dimension" name="motionEffect_translationX"/> + <attr format="dimension" name="motionEffect_translationY"/> + <attr format="float" name="motionEffect_alpha"/> + <attr format="reference" name="motionEffect_viewTransition"/> + <attr format="enum" name="motionEffect_move"> + <enum name="auto" value="-1"/> + <enum name="north" value="0"/> + <enum name="south" value="1"/> + <enum name="east" value="2"/> + <enum name="west" value="3"/> + </attr> + <attr format="boolean" name="motionEffect_strict"/> + </declare-styleable> + <declare-styleable name="MotionHelper"> + <attr format="boolean" name="onShow"/> + <attr format="boolean" name="onHide"/> + </declare-styleable> + <declare-styleable name="MotionLabel"> + <attr name="android:text"/> + <attr name="android:textColor"/> + <attr name="android:textSize"/> + <attr name="android:fontFamily"/> + <attr name="android:gravity"/> + <attr format="float" name="textPanX"/> + <attr format="float" name="textPanY"/> + <attr name="android:typeface"/> + <attr name="android:shadowRadius"/> + <attr name="android:textStyle"/> + <attr name="borderRound"/> + <attr format="dimension" name="scaleFromTextSize"/> + <attr name="borderRoundPercent"/> + <attr name="textOutlineThickness"/> + <attr name="textOutlineColor"/> + <attr format="reference" name="textBackground"/> + <attr name="android:autoSizeTextType"/> + <attr format="dimension" name="textureWidth"/> + <attr format="dimension" name="textureHeight"/> + <attr format="integer" name="textureBlurFactor"/> + <attr format="float" name="textBackgroundPanX"/> + <attr format="float" name="textBackgroundPanY"/> + <attr format="float" name="textBackgroundZoom"/> + <attr format="float" name="textBackgroundRotate"/> + <attr format="enum" name="textureEffect"> + <enum name="none" value="0"/> + <enum name="frost" value="1"/> + </attr> + </declare-styleable> + <declare-styleable name="MotionLayout"> + <attr name="layoutDescription"/> + <attr format="reference" name="currentState"/> + <attr name="motionProgress"/> + <attr format="boolean" name="applyMotionScene"/> + <attr format="boolean" name="showPaths"/> + <attr format="enum" name="motionDebug"> + <enum name="NO_DEBUG" value="0"/> + <enum name="SHOW_PROGRESS" value="1"/> + <enum name="SHOW_PATH" value="2"/> + <enum name="SHOW_ALL" value="3"/> + </attr> + </declare-styleable> + <declare-styleable name="MotionScene"> + <attr name="defaultDuration"/> + <attr name="layoutDuringTransition"/> + </declare-styleable> + <declare-styleable name="MotionTelltales"> + <attr format="enum" name="telltales_velocityMode"> + <enum name="layout" value="0"/> + <enum name="postLayout" value="1"/> + <enum name="staticPostLayout" value="2"/> + <enum name="staticLayout" value="3"/> + </attr> + <attr format="color" name="telltales_tailColor"/> + <attr format="float" name="telltales_tailScale"/> + </declare-styleable> + <declare-styleable name="OnClick"> + <attr name="targetId"/> + <attr name="clickAction"> + <flag name="toggle" value="0x0011"/> + <flag name="transitionToEnd" value="0x0001"/> + <flag name="transitionToStart" value="0x0010"/> + <flag name="jumpToEnd" value="0x100"/> + <flag name="jumpToStart" value="0x1000"/> + </attr> + </declare-styleable> + <declare-styleable name="OnSwipe"> + <attr format="float" name="dragScale"/> + <attr format="float" name="dragThreshold"/> + <attr format="enum" name="autoCompleteMode"> + <enum name="continuousVelocity" value="0"/> + <enum name="spring" value="1"/> + </attr> + <attr format="float" name="maxVelocity"/> + <attr format="float" name="maxAcceleration"/> + <attr format="float" name="springMass"/> + <attr format="float" name="springStiffness"/> + <attr format="float" name="springDamping"/> + <attr format="float" name="springStopThreshold"/> + <attr format="flags" name="springBoundary"> + <flag name="overshoot" value="0"/> + <flag name="bounceStart" value="1"/> + <flag name="bounceEnd" value="2"/> + <flag name="bounceBoth" value="3"/> + </attr> + <attr name="dragDirection"/> + <attr name="touchAnchorId"/> + <attr name="touchAnchorSide"/> + <attr format="reference" name="rotationCenterId"/> + <attr format="reference" name="touchRegionId"/> + <attr format="reference" name="limitBoundsTo"/> + <attr format="flags" name="nestedScrollFlags"> + <flag name="none" value="0"/> + <flag name="disablePostScroll" value="1"/> + <flag name="disableScroll" value="2"/> + <flag name="supportScrollUp" value="4"/> + </attr> + <attr format="boolean" name="moveWhenScrollAtTop"/> + <attr format="enum" name="onTouchUp"> + <enum name="autoComplete" value="0"/> + <enum name="autoCompleteToStart" value="1"/> + <enum name="autoCompleteToEnd" value="2"/> + <enum name="stop" value="3"/> + <enum name="decelerate" value="4"/> + <enum name="decelerateAndComplete" value="5"/> + <enum name="neverCompleteToStart" value="6"/> + <enum name="neverCompleteToEnd" value="7"/> + </attr> + + </declare-styleable> + <declare-styleable name="PropertySet"> + <!-- Controls the initial visibility of the view. --> + <attr name="android:visibility"/> + <attr name="visibilityMode"/> + + <!-- alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque). --> + <attr name="android:alpha"/> + + <!-- calls setProgress(float) on the view if the method exist --> + <attr name="motionProgress"/> + <attr name="layout_constraintTag"/> + </declare-styleable> + <declare-styleable name="State"> + <attr name="android:id"/> + <attr format="reference" name="constraints"/> + </declare-styleable> + <declare-styleable name="StateSet"> + <attr format="reference" name="defaultState"/> + </declare-styleable> + <declare-styleable name="TextEffects"> + <attr name="android:text"/> + <attr name="android:textSize"/> + <attr name="android:fontFamily"/> + <attr name="android:typeface"/> + <attr name="android:shadowColor"/> + <attr name="android:shadowDx"/> + <attr name="android:shadowDy"/> + <attr name="android:shadowRadius"/> + <attr name="android:textStyle"/> + <attr format="color" name="textFillColor"/> + <attr name="textOutlineThickness"/> + <attr name="textOutlineColor"/> + <attr name="borderRound"/> + <attr name="borderRoundPercent"/> + </declare-styleable> + <declare-styleable name="Transform"> + <!-- base z depth of the view. --> + <attr name="android:elevation"/> + + <!-- rotation of the view, in degrees. --> + <attr name="android:rotation"/> + + <!-- rotation of the view around the x axis, in degrees. --> + <attr name="android:rotationX"/> + + <!-- rotation of the view around the y axis, in degrees. --> + <attr name="android:rotationY"/> + + <!-- scale of the view in the x direction. --> + <attr name="android:scaleX"/> + + <!-- scale of the view in the y direction. --> + <attr name="android:scaleY"/> + + <!-- x location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotX property of the View. --> + <attr name="android:transformPivotX"/> + + <!-- y location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotY property of the View. --> + <attr name="android:transformPivotY"/> + + <attr name="transformPivotTarget"/> + + <!-- translation in x of the view. This value is added post-layout to the left + property of the view, which is set by its layout. --> + <attr format="dimension" name="android:translationX"/> + + <!-- translation in y of the view. This value is added post-layout to the top + property of the view, which is set by its layout. --> + <attr format="dimension" name="android:translationY"/> + + <!-- translation in z of the view. This value is added to its elevation. --> + <attr format="dimension" name="android:translationZ"/> + + </declare-styleable> + <declare-styleable name="Transition"> + <attr name="android:id"/> + <attr format="reference" name="constraintSetStart"/> + <attr format="reference" name="constraintSetEnd"/> + <attr name="transitionDisable"/> + <attr name="layoutDuringTransition"/> + + <attr name="pathMotionArc"/> + <attr format="enum" name="autoTransition"> + <enum name="none" value="0"/> + <enum name="jumpToStart" value="1"/> + <enum name="jumpToEnd" value="2"/> + <enum name="animateToStart" value="3"/> + <enum name="animateToEnd" value="4"/> + </attr> + <attr format="string|reference|enum" name="motionInterpolator"> + <enum name="easeInOut" value="0"/> + <enum name="easeIn" value="1"/> + <enum name="easeOut" value="2"/> + <enum name="linear" value="3"/> + <enum name="bounce" value="4"/> + <enum name="overshoot" value="5"/> + <enum name="anticipate" value="6"/> + </attr> + + <attr name="duration"/> + <attr format="float" name="staggered"/> + + <attr name="transitionFlags"> + <flag name="none" value="0"/> + <flag name="beginOnFirstDraw" value="1"/> + <flag name="disableIntraAutoTransition" value="2"/> + <flag name="onInterceptTouchReturnSwipe" value="4"/> + </attr> + </declare-styleable> + <declare-styleable name="Variant"> + <attr format="dimension" name="region_widthLessThan"/> + <attr format="dimension" name="region_widthMoreThan"/> + <attr format="dimension" name="region_heightLessThan"/> + <attr format="dimension" name="region_heightMoreThan"/> + <attr name="constraints"/> + </declare-styleable> + <declare-styleable name="ViewTransition"> + <attr name="android:id"/> + <attr name="motionTarget"/> + <attr name="viewTransitionMode"/> + <attr name="onStateTransition"/> + <attr name="duration"/> + <attr format="integer" name="upDuration"/> + <attr name="transitionDisable"/> + <attr name="pathMotionArc"/> + <attr name="motionInterpolator"/> + <attr format="reference" name="SharedValueId"/> + <attr format="integer" name="SharedValue"/> + <attr format="reference" name="setsTag"/> + <attr format="reference" name="clearsTag"/> + <attr format="reference" name="ifTagSet"/> + <attr format="reference" name="ifTagNotSet"/> + </declare-styleable> + <declare-styleable name="include"> + <attr name="constraintSet"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/129.stamp new file mode 100644 index 0000000000000000000000000000000000000000..f852c4dc94947710786303c963f85c5c4e7bba36 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/129.stamp @@ -0,0 +1 @@ +327E59BCC5156568 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..c117c121e876541301115ff5cbfa917183aaab21 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.cardview" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd67b8c4f88502786bbf012e407bd1430f1251e6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/R.txt @@ -0,0 +1,37 @@ +int attr cardBackgroundColor 0x7f040001 +int attr cardCornerRadius 0x7f040002 +int attr cardElevation 0x7f040003 +int attr cardMaxElevation 0x7f040004 +int attr cardPreventCornerOverlap 0x7f040005 +int attr cardUseCompatPadding 0x7f040006 +int attr cardViewStyle 0x7f040007 +int attr contentPadding 0x7f040008 +int attr contentPaddingBottom 0x7f040009 +int attr contentPaddingLeft 0x7f04000a +int attr contentPaddingRight 0x7f04000b +int attr contentPaddingTop 0x7f04000c +int color cardview_dark_background 0x7f060001 +int color cardview_light_background 0x7f060002 +int color cardview_shadow_end_color 0x7f060003 +int color cardview_shadow_start_color 0x7f060004 +int dimen cardview_compat_inset_shadow 0x7f080001 +int dimen cardview_default_elevation 0x7f080002 +int dimen cardview_default_radius 0x7f080003 +int style Base_CardView 0x7f160001 +int style CardView 0x7f160002 +int style CardView_Dark 0x7f160003 +int style CardView_Light 0x7f160004 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..4c9f52f7e79f1f149e8f229859c9229889543867 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..9355ca42a602cd03d4e37d65acaefaed989d3f9f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values-v23/values-v23.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values-v23/values-v23.xml new file mode 100644 index 0000000000000000000000000000000000000000..1d09208e34b3d26440d97b6e2c5a55513acd434f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values-v23/values-v23.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="CardView" parent="Base.CardView"> + <item name="cardBackgroundColor">?android:attr/colorBackgroundFloating</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea0f9e18d0ac4dcc6d9fa004a4c50cd21c48d354 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/129/jl/res/values/values.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="reference" name="cardViewStyle"/> + <color name="cardview_dark_background">#FF424242</color> + <color name="cardview_light_background">#FFFFFFFF</color> + <color name="cardview_shadow_end_color">#03000000</color> + <color name="cardview_shadow_start_color">#37000000</color> + <declare-styleable name="CardView"> + <!-- Background color for CardView. --> + <attr format="color" name="cardBackgroundColor"/> + <!-- Corner radius for CardView. --> + <attr format="dimension" name="cardCornerRadius"/> + <!-- Elevation for CardView. --> + <attr format="dimension" name="cardElevation"/> + <!-- Maximum Elevation for CardView. --> + <attr format="dimension" name="cardMaxElevation"/> + <!-- Add padding in API v21+ as well to have the same measurements with previous versions. --> + <attr format="boolean" name="cardUseCompatPadding"/> + <!-- Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. --> + <attr format="boolean" name="cardPreventCornerOverlap"/> + <!-- Inner padding between the edges of the Card and children of the CardView. --> + <attr format="dimension" name="contentPadding"/> + <!-- Inner padding between the left edge of the Card and children of the CardView. --> + <attr format="dimension" name="contentPaddingLeft"/> + <!-- Inner padding between the right edge of the Card and children of the CardView. --> + <attr format="dimension" name="contentPaddingRight"/> + <!-- Inner padding between the top edge of the Card and children of the CardView. --> + <attr format="dimension" name="contentPaddingTop"/> + <!-- Inner padding between the bottom edge of the Card and children of the CardView. --> + <attr format="dimension" name="contentPaddingBottom"/> + <!-- Workaround to read user defined minimum width --> + <attr name="android:minWidth"/> + <!-- Workaround to read user defined minimum height --> + <attr name="android:minHeight"/> + </declare-styleable> + <dimen name="cardview_compat_inset_shadow">1dp</dimen> + <dimen name="cardview_default_elevation">2dp</dimen> + <dimen name="cardview_default_radius">2dp</dimen> + <style name="Base.CardView" parent="android:Widget"> + <item name="cardCornerRadius">@dimen/cardview_default_radius</item> + <item name="cardElevation">@dimen/cardview_default_elevation</item> + <item name="cardMaxElevation">@dimen/cardview_default_elevation</item> + <item name="cardUseCompatPadding">false</item> + <item name="cardPreventCornerOverlap">true</item> + </style> + <style name="CardView" parent="Base.CardView"> + </style> + <style name="CardView.Dark"> + <item name="cardBackgroundColor">@color/cardview_dark_background</item> + </style> + <style name="CardView.Light"> + <item name="cardBackgroundColor">@color/cardview_light_background</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/130.stamp new file mode 100644 index 0000000000000000000000000000000000000000..69612b8573bdfb0c9cbc04d7ab105fea470c4064 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130.stamp @@ -0,0 +1 @@ +AE5330E7739B7D2C \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..bff0c00a8ad74dea40591ba2ef4c7bfa0d89bf80 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/AndroidManifest.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.google.android.material" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="33" /> + + <application /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..8c9c6997a33bb9da672e8e423470e724a66b23bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e4fb98b9e4c0acd01996ea32668626ea53e8b49 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/R.txt @@ -0,0 +1,6538 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 +int anim btn_checkbox_to_checked_icon_null_animation 0x0 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 +int anim design_bottom_sheet_slide_in 0x0 +int anim design_bottom_sheet_slide_out 0x0 +int anim design_snackbar_in 0x0 +int anim design_snackbar_out 0x0 +int anim fragment_fast_out_extra_slow_in 0x0 +int anim linear_indeterminate_line1_head_interpolator 0x0 +int anim linear_indeterminate_line1_tail_interpolator 0x0 +int anim linear_indeterminate_line2_head_interpolator 0x0 +int anim linear_indeterminate_line2_tail_interpolator 0x0 +int anim m3_bottom_sheet_slide_in 0x0 +int anim m3_bottom_sheet_slide_out 0x0 +int anim m3_motion_fade_enter 0x0 +int anim m3_motion_fade_exit 0x0 +int anim m3_side_sheet_slide_in 0x0 +int anim m3_side_sheet_slide_out 0x0 +int anim mtrl_bottom_sheet_slide_in 0x0 +int anim mtrl_bottom_sheet_slide_out 0x0 +int anim mtrl_card_lowers_interpolator 0x0 +int animator design_appbar_state_list_animator 0x0 +int animator design_fab_hide_motion_spec 0x0 +int animator design_fab_show_motion_spec 0x0 +int animator fragment_close_enter 0x0 +int animator fragment_close_exit 0x0 +int animator fragment_fade_enter 0x0 +int animator fragment_fade_exit 0x0 +int animator fragment_open_enter 0x0 +int animator fragment_open_exit 0x0 +int animator m3_appbar_state_list_animator 0x0 +int animator m3_btn_elevated_btn_state_list_anim 0x0 +int animator m3_btn_state_list_anim 0x0 +int animator m3_card_elevated_state_list_anim 0x0 +int animator m3_card_state_list_anim 0x0 +int animator m3_chip_state_list_anim 0x0 +int animator m3_elevated_chip_state_list_anim 0x0 +int animator m3_extended_fab_change_size_collapse_motion_spec 0x0 +int animator m3_extended_fab_change_size_expand_motion_spec 0x0 +int animator m3_extended_fab_hide_motion_spec 0x0 +int animator m3_extended_fab_show_motion_spec 0x0 +int animator m3_extended_fab_state_list_animator 0x0 +int animator mtrl_btn_state_list_anim 0x0 +int animator mtrl_btn_unelevated_state_list_anim 0x0 +int animator mtrl_card_state_list_anim 0x0 +int animator mtrl_chip_state_list_anim 0x0 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x0 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x0 +int animator mtrl_extended_fab_hide_motion_spec 0x0 +int animator mtrl_extended_fab_show_motion_spec 0x0 +int animator mtrl_extended_fab_state_list_animator 0x0 +int animator mtrl_fab_hide_motion_spec 0x0 +int animator mtrl_fab_show_motion_spec 0x0 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x0 +int animator mtrl_fab_transformation_sheet_expand_spec 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseContentDescription 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeTheme 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionTextColorAlpha 0x0 +int attr actionViewClass 0x0 +int attr activityChooserViewStyle 0x0 +int attr addElevationShadow 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alpha 0x0 +int attr alphabeticModifiers 0x0 +int attr altSrc 0x0 +int attr animateMenuItems 0x0 +int attr animateNavigationIcon 0x0 +int attr animate_relativeTo 0x0 +int attr animationMode 0x0 +int attr appBarLayoutStyle 0x0 +int attr applyMotionScene 0x0 +int attr arcMode 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr attributeName 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoShowKeyboard 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr autoTransition 0x0 +int attr background 0x0 +int attr backgroundColor 0x0 +int attr backgroundInsetBottom 0x0 +int attr backgroundInsetEnd 0x0 +int attr backgroundInsetStart 0x0 +int attr backgroundInsetTop 0x0 +int attr backgroundOverlayColorAlpha 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr badgeGravity 0x0 +int attr badgeHeight 0x0 +int attr badgeRadius 0x0 +int attr badgeShapeAppearance 0x0 +int attr badgeShapeAppearanceOverlay 0x0 +int attr badgeStyle 0x0 +int attr badgeTextAppearance 0x0 +int attr badgeTextColor 0x0 +int attr badgeWidePadding 0x0 +int attr badgeWidth 0x0 +int attr badgeWithTextHeight 0x0 +int attr badgeWithTextRadius 0x0 +int attr badgeWithTextShapeAppearance 0x0 +int attr badgeWithTextShapeAppearanceOverlay 0x0 +int attr badgeWithTextWidth 0x0 +int attr barLength 0x0 +int attr barrierAllowsGoneWidgets 0x0 +int attr barrierDirection 0x0 +int attr barrierMargin 0x0 +int attr behavior_autoHide 0x0 +int attr behavior_autoShrink 0x0 +int attr behavior_draggable 0x0 +int attr behavior_expandedOffset 0x0 +int attr behavior_fitToContents 0x0 +int attr behavior_halfExpandedRatio 0x0 +int attr behavior_hideable 0x0 +int attr behavior_overlapTop 0x0 +int attr behavior_peekHeight 0x0 +int attr behavior_saveFlags 0x0 +int attr behavior_significantVelocityThreshold 0x0 +int attr behavior_skipCollapsed 0x0 +int attr borderWidth 0x0 +int attr borderlessButtonStyle 0x0 +int attr bottomAppBarStyle 0x0 +int attr bottomInsetScrimEnabled 0x0 +int attr bottomNavigationStyle 0x0 +int attr bottomSheetDialogTheme 0x0 +int attr bottomSheetDragHandleStyle 0x0 +int attr bottomSheetStyle 0x0 +int attr boxBackgroundColor 0x0 +int attr boxBackgroundMode 0x0 +int attr boxCollapsedPaddingTop 0x0 +int attr boxCornerRadiusBottomEnd 0x0 +int attr boxCornerRadiusBottomStart 0x0 +int attr boxCornerRadiusTopEnd 0x0 +int attr boxCornerRadiusTopStart 0x0 +int attr boxStrokeColor 0x0 +int attr boxStrokeErrorColor 0x0 +int attr boxStrokeWidth 0x0 +int attr boxStrokeWidthFocused 0x0 +int attr brightness 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonCompat 0x0 +int attr buttonGravity 0x0 +int attr buttonIcon 0x0 +int attr buttonIconDimen 0x0 +int attr buttonIconTint 0x0 +int attr buttonIconTintMode 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr cardBackgroundColor 0x0 +int attr cardCornerRadius 0x0 +int attr cardElevation 0x0 +int attr cardForegroundColor 0x0 +int attr cardMaxElevation 0x0 +int attr cardPreventCornerOverlap 0x0 +int attr cardUseCompatPadding 0x0 +int attr cardViewStyle 0x0 +int attr centerIfNoTextEnabled 0x0 +int attr chainUseRtl 0x0 +int attr checkMarkCompat 0x0 +int attr checkMarkTint 0x0 +int attr checkMarkTintMode 0x0 +int attr checkboxStyle 0x0 +int attr checkedButton 0x0 +int attr checkedChip 0x0 +int attr checkedIcon 0x0 +int attr checkedIconEnabled 0x0 +int attr checkedIconGravity 0x0 +int attr checkedIconMargin 0x0 +int attr checkedIconSize 0x0 +int attr checkedIconTint 0x0 +int attr checkedIconVisible 0x0 +int attr checkedState 0x0 +int attr checkedTextViewStyle 0x0 +int attr chipBackgroundColor 0x0 +int attr chipCornerRadius 0x0 +int attr chipEndPadding 0x0 +int attr chipGroupStyle 0x0 +int attr chipIcon 0x0 +int attr chipIconEnabled 0x0 +int attr chipIconSize 0x0 +int attr chipIconTint 0x0 +int attr chipIconVisible 0x0 +int attr chipMinHeight 0x0 +int attr chipMinTouchTargetSize 0x0 +int attr chipSpacing 0x0 +int attr chipSpacingHorizontal 0x0 +int attr chipSpacingVertical 0x0 +int attr chipStandaloneStyle 0x0 +int attr chipStartPadding 0x0 +int attr chipStrokeColor 0x0 +int attr chipStrokeWidth 0x0 +int attr chipStyle 0x0 +int attr chipSurfaceColor 0x0 +int attr circleRadius 0x0 +int attr circularProgressIndicatorStyle 0x0 +int attr clickAction 0x0 +int attr clockFaceBackgroundColor 0x0 +int attr clockHandColor 0x0 +int attr clockIcon 0x0 +int attr clockNumberTextColor 0x0 +int attr closeIcon 0x0 +int attr closeIconEnabled 0x0 +int attr closeIconEndPadding 0x0 +int attr closeIconSize 0x0 +int attr closeIconStartPadding 0x0 +int attr closeIconTint 0x0 +int attr closeIconVisible 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr collapsedSize 0x0 +int attr collapsedTitleGravity 0x0 +int attr collapsedTitleTextAppearance 0x0 +int attr collapsedTitleTextColor 0x0 +int attr collapsingToolbarLayoutLargeSize 0x0 +int attr collapsingToolbarLayoutLargeStyle 0x0 +int attr collapsingToolbarLayoutMediumSize 0x0 +int attr collapsingToolbarLayoutMediumStyle 0x0 +int attr collapsingToolbarLayoutStyle 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorContainer 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorErrorContainer 0x0 +int attr colorOnBackground 0x0 +int attr colorOnContainer 0x0 +int attr colorOnContainerUnchecked 0x0 +int attr colorOnError 0x0 +int attr colorOnErrorContainer 0x0 +int attr colorOnPrimary 0x0 +int attr colorOnPrimaryContainer 0x0 +int attr colorOnPrimaryFixed 0x0 +int attr colorOnPrimaryFixedVariant 0x0 +int attr colorOnPrimarySurface 0x0 +int attr colorOnSecondary 0x0 +int attr colorOnSecondaryContainer 0x0 +int attr colorOnSecondaryFixed 0x0 +int attr colorOnSecondaryFixedVariant 0x0 +int attr colorOnSurface 0x0 +int attr colorOnSurfaceInverse 0x0 +int attr colorOnSurfaceVariant 0x0 +int attr colorOnTertiary 0x0 +int attr colorOnTertiaryContainer 0x0 +int attr colorOnTertiaryFixed 0x0 +int attr colorOnTertiaryFixedVariant 0x0 +int attr colorOutline 0x0 +int attr colorOutlineVariant 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryContainer 0x0 +int attr colorPrimaryDark 0x0 +int attr colorPrimaryFixed 0x0 +int attr colorPrimaryFixedDim 0x0 +int attr colorPrimaryInverse 0x0 +int attr colorPrimarySurface 0x0 +int attr colorPrimaryVariant 0x0 +int attr colorSecondary 0x0 +int attr colorSecondaryContainer 0x0 +int attr colorSecondaryFixed 0x0 +int attr colorSecondaryFixedDim 0x0 +int attr colorSecondaryVariant 0x0 +int attr colorSurface 0x0 +int attr colorSurfaceBright 0x0 +int attr colorSurfaceContainer 0x0 +int attr colorSurfaceContainerHigh 0x0 +int attr colorSurfaceContainerHighest 0x0 +int attr colorSurfaceContainerLow 0x0 +int attr colorSurfaceContainerLowest 0x0 +int attr colorSurfaceDim 0x0 +int attr colorSurfaceInverse 0x0 +int attr colorSurfaceVariant 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr colorTertiary 0x0 +int attr colorTertiaryContainer 0x0 +int attr colorTertiaryFixed 0x0 +int attr colorTertiaryFixedDim 0x0 +int attr commitIcon 0x0 +int attr compatShadowEnabled 0x0 +int attr constraintSet 0x0 +int attr constraintSetEnd 0x0 +int attr constraintSetStart 0x0 +int attr constraint_referenced_ids 0x0 +int attr constraints 0x0 +int attr content 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr contentPadding 0x0 +int attr contentPaddingBottom 0x0 +int attr contentPaddingEnd 0x0 +int attr contentPaddingLeft 0x0 +int attr contentPaddingRight 0x0 +int attr contentPaddingStart 0x0 +int attr contentPaddingTop 0x0 +int attr contentScrim 0x0 +int attr contrast 0x0 +int attr controlBackground 0x0 +int attr coordinatorLayoutStyle 0x0 +int attr coplanarSiblingViewId 0x0 +int attr cornerFamily 0x0 +int attr cornerFamilyBottomLeft 0x0 +int attr cornerFamilyBottomRight 0x0 +int attr cornerFamilyTopLeft 0x0 +int attr cornerFamilyTopRight 0x0 +int attr cornerRadius 0x0 +int attr cornerSize 0x0 +int attr cornerSizeBottomLeft 0x0 +int attr cornerSizeBottomRight 0x0 +int attr cornerSizeTopLeft 0x0 +int attr cornerSizeTopRight 0x0 +int attr counterEnabled 0x0 +int attr counterMaxLength 0x0 +int attr counterOverflowTextAppearance 0x0 +int attr counterOverflowTextColor 0x0 +int attr counterTextAppearance 0x0 +int attr counterTextColor 0x0 +int attr crossfade 0x0 +int attr currentState 0x0 +int attr curveFit 0x0 +int attr customBoolean 0x0 +int attr customColorDrawableValue 0x0 +int attr customColorValue 0x0 +int attr customDimension 0x0 +int attr customFloatValue 0x0 +int attr customIntegerValue 0x0 +int attr customNavigationLayout 0x0 +int attr customPixelDimension 0x0 +int attr customStringValue 0x0 +int attr dayInvalidStyle 0x0 +int attr daySelectedStyle 0x0 +int attr dayStyle 0x0 +int attr dayTodayStyle 0x0 +int attr defaultDuration 0x0 +int attr defaultMarginsEnabled 0x0 +int attr defaultQueryHint 0x0 +int attr defaultScrollFlagsEnabled 0x0 +int attr defaultState 0x0 +int attr deltaPolarAngle 0x0 +int attr deltaPolarRadius 0x0 +int attr deriveConstraintsFrom 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerColor 0x0 +int attr dividerHorizontal 0x0 +int attr dividerInsetEnd 0x0 +int attr dividerInsetStart 0x0 +int attr dividerPadding 0x0 +int attr dividerThickness 0x0 +int attr dividerVertical 0x0 +int attr dragDirection 0x0 +int attr dragScale 0x0 +int attr dragThreshold 0x0 +int attr drawPath 0x0 +int attr drawableBottomCompat 0x0 +int attr drawableEndCompat 0x0 +int attr drawableLeftCompat 0x0 +int attr drawableRightCompat 0x0 +int attr drawableSize 0x0 +int attr drawableStartCompat 0x0 +int attr drawableTint 0x0 +int attr drawableTintMode 0x0 +int attr drawableTopCompat 0x0 +int attr drawerArrowStyle 0x0 +int attr drawerLayoutCornerSize 0x0 +int attr drawerLayoutStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr duration 0x0 +int attr dynamicColorThemeOverlay 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr elevationOverlayAccentColor 0x0 +int attr elevationOverlayColor 0x0 +int attr elevationOverlayEnabled 0x0 +int attr emojiCompatEnabled 0x0 +int attr enableEdgeToEdge 0x0 +int attr endIconCheckable 0x0 +int attr endIconContentDescription 0x0 +int attr endIconDrawable 0x0 +int attr endIconMinSize 0x0 +int attr endIconMode 0x0 +int attr endIconScaleType 0x0 +int attr endIconTint 0x0 +int attr endIconTintMode 0x0 +int attr enforceMaterialTheme 0x0 +int attr enforceTextAppearance 0x0 +int attr ensureMinTouchTargetSize 0x0 +int attr errorAccessibilityLabel 0x0 +int attr errorAccessibilityLiveRegion 0x0 +int attr errorContentDescription 0x0 +int attr errorEnabled 0x0 +int attr errorIconDrawable 0x0 +int attr errorIconTint 0x0 +int attr errorIconTintMode 0x0 +int attr errorShown 0x0 +int attr errorTextAppearance 0x0 +int attr errorTextColor 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr expanded 0x0 +int attr expandedHintEnabled 0x0 +int attr expandedTitleGravity 0x0 +int attr expandedTitleMargin 0x0 +int attr expandedTitleMarginBottom 0x0 +int attr expandedTitleMarginEnd 0x0 +int attr expandedTitleMarginStart 0x0 +int attr expandedTitleMarginTop 0x0 +int attr expandedTitleTextAppearance 0x0 +int attr expandedTitleTextColor 0x0 +int attr extendMotionSpec 0x0 +int attr extendStrategy 0x0 +int attr extendedFloatingActionButtonPrimaryStyle 0x0 +int attr extendedFloatingActionButtonSecondaryStyle 0x0 +int attr extendedFloatingActionButtonStyle 0x0 +int attr extendedFloatingActionButtonSurfaceStyle 0x0 +int attr extendedFloatingActionButtonTertiaryStyle 0x0 +int attr extraMultilineHeightEnabled 0x0 +int attr fabAlignmentMode 0x0 +int attr fabAlignmentModeEndMargin 0x0 +int attr fabAnchorMode 0x0 +int attr fabAnimationMode 0x0 +int attr fabCradleMargin 0x0 +int attr fabCradleRoundedCornerRadius 0x0 +int attr fabCradleVerticalOffset 0x0 +int attr fabCustomSize 0x0 +int attr fabSize 0x0 +int attr fastScrollEnabled 0x0 +int attr fastScrollHorizontalThumbDrawable 0x0 +int attr fastScrollHorizontalTrackDrawable 0x0 +int attr fastScrollVerticalThumbDrawable 0x0 +int attr fastScrollVerticalTrackDrawable 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr floatingActionButtonLargePrimaryStyle 0x0 +int attr floatingActionButtonLargeSecondaryStyle 0x0 +int attr floatingActionButtonLargeStyle 0x0 +int attr floatingActionButtonLargeSurfaceStyle 0x0 +int attr floatingActionButtonLargeTertiaryStyle 0x0 +int attr floatingActionButtonPrimaryStyle 0x0 +int attr floatingActionButtonSecondaryStyle 0x0 +int attr floatingActionButtonSmallPrimaryStyle 0x0 +int attr floatingActionButtonSmallSecondaryStyle 0x0 +int attr floatingActionButtonSmallStyle 0x0 +int attr floatingActionButtonSmallSurfaceStyle 0x0 +int attr floatingActionButtonSmallTertiaryStyle 0x0 +int attr floatingActionButtonStyle 0x0 +int attr floatingActionButtonSurfaceStyle 0x0 +int attr floatingActionButtonTertiaryStyle 0x0 +int attr flow_firstHorizontalBias 0x0 +int attr flow_firstHorizontalStyle 0x0 +int attr flow_firstVerticalBias 0x0 +int attr flow_firstVerticalStyle 0x0 +int attr flow_horizontalAlign 0x0 +int attr flow_horizontalBias 0x0 +int attr flow_horizontalGap 0x0 +int attr flow_horizontalStyle 0x0 +int attr flow_lastHorizontalBias 0x0 +int attr flow_lastHorizontalStyle 0x0 +int attr flow_lastVerticalBias 0x0 +int attr flow_lastVerticalStyle 0x0 +int attr flow_maxElementsWrap 0x0 +int attr flow_padding 0x0 +int attr flow_verticalAlign 0x0 +int attr flow_verticalBias 0x0 +int attr flow_verticalGap 0x0 +int attr flow_verticalStyle 0x0 +int attr flow_wrapMode 0x0 +int attr font 0x0 +int attr fontFamily 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr forceApplySystemWindowInsetTop 0x0 +int attr forceDefaultNavigationOnClickListener 0x0 +int attr foregroundInsidePadding 0x0 +int attr framePosition 0x0 +int attr gapBetweenBars 0x0 +int attr gestureInsetBottomIgnored 0x0 +int attr goIcon 0x0 +int attr haloColor 0x0 +int attr haloRadius 0x0 +int attr headerLayout 0x0 +int attr height 0x0 +int attr helperText 0x0 +int attr helperTextEnabled 0x0 +int attr helperTextTextAppearance 0x0 +int attr helperTextTextColor 0x0 +int attr hideAnimationBehavior 0x0 +int attr hideMotionSpec 0x0 +int attr hideNavigationIcon 0x0 +int attr hideOnContentScroll 0x0 +int attr hideOnScroll 0x0 +int attr hintAnimationEnabled 0x0 +int attr hintEnabled 0x0 +int attr hintTextAppearance 0x0 +int attr hintTextColor 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr horizontalOffset 0x0 +int attr horizontalOffsetWithText 0x0 +int attr hoveredFocusedTranslationZ 0x0 +int attr icon 0x0 +int attr iconEndPadding 0x0 +int attr iconGravity 0x0 +int attr iconPadding 0x0 +int attr iconSize 0x0 +int attr iconStartPadding 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr imageButtonStyle 0x0 +int attr indeterminateAnimationType 0x0 +int attr indeterminateProgressStyle 0x0 +int attr indicatorColor 0x0 +int attr indicatorDirectionCircular 0x0 +int attr indicatorDirectionLinear 0x0 +int attr indicatorInset 0x0 +int attr indicatorSize 0x0 +int attr initialActivityCount 0x0 +int attr insetForeground 0x0 +int attr isLightTheme 0x0 +int attr isMaterial3DynamicColorApplied 0x0 +int attr isMaterial3Theme 0x0 +int attr isMaterialTheme 0x0 +int attr itemActiveIndicatorStyle 0x0 +int attr itemBackground 0x0 +int attr itemFillColor 0x0 +int attr itemHorizontalPadding 0x0 +int attr itemHorizontalTranslationEnabled 0x0 +int attr itemIconPadding 0x0 +int attr itemIconSize 0x0 +int attr itemIconTint 0x0 +int attr itemMaxLines 0x0 +int attr itemMinHeight 0x0 +int attr itemPadding 0x0 +int attr itemPaddingBottom 0x0 +int attr itemPaddingTop 0x0 +int attr itemRippleColor 0x0 +int attr itemShapeAppearance 0x0 +int attr itemShapeAppearanceOverlay 0x0 +int attr itemShapeFillColor 0x0 +int attr itemShapeInsetBottom 0x0 +int attr itemShapeInsetEnd 0x0 +int attr itemShapeInsetStart 0x0 +int attr itemShapeInsetTop 0x0 +int attr itemSpacing 0x0 +int attr itemStrokeColor 0x0 +int attr itemStrokeWidth 0x0 +int attr itemTextAppearance 0x0 +int attr itemTextAppearanceActive 0x0 +int attr itemTextAppearanceInactive 0x0 +int attr itemTextColor 0x0 +int attr itemVerticalPadding 0x0 +int attr keyPositionType 0x0 +int attr keyboardIcon 0x0 +int attr keylines 0x0 +int attr lStar 0x0 +int attr labelBehavior 0x0 +int attr labelStyle 0x0 +int attr labelVisibilityMode 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr lastItemDecorated 0x0 +int attr layout 0x0 +int attr layoutDescription 0x0 +int attr layoutDuringTransition 0x0 +int attr layoutManager 0x0 +int attr layout_anchor 0x0 +int attr layout_anchorGravity 0x0 +int attr layout_behavior 0x0 +int attr layout_collapseMode 0x0 +int attr layout_collapseParallaxMultiplier 0x0 +int attr layout_constrainedHeight 0x0 +int attr layout_constrainedWidth 0x0 +int attr layout_constraintBaseline_creator 0x0 +int attr layout_constraintBaseline_toBaselineOf 0x0 +int attr layout_constraintBottom_creator 0x0 +int attr layout_constraintBottom_toBottomOf 0x0 +int attr layout_constraintBottom_toTopOf 0x0 +int attr layout_constraintCircle 0x0 +int attr layout_constraintCircleAngle 0x0 +int attr layout_constraintCircleRadius 0x0 +int attr layout_constraintDimensionRatio 0x0 +int attr layout_constraintEnd_toEndOf 0x0 +int attr layout_constraintEnd_toStartOf 0x0 +int attr layout_constraintGuide_begin 0x0 +int attr layout_constraintGuide_end 0x0 +int attr layout_constraintGuide_percent 0x0 +int attr layout_constraintHeight_default 0x0 +int attr layout_constraintHeight_max 0x0 +int attr layout_constraintHeight_min 0x0 +int attr layout_constraintHeight_percent 0x0 +int attr layout_constraintHorizontal_bias 0x0 +int attr layout_constraintHorizontal_chainStyle 0x0 +int attr layout_constraintHorizontal_weight 0x0 +int attr layout_constraintLeft_creator 0x0 +int attr layout_constraintLeft_toLeftOf 0x0 +int attr layout_constraintLeft_toRightOf 0x0 +int attr layout_constraintRight_creator 0x0 +int attr layout_constraintRight_toLeftOf 0x0 +int attr layout_constraintRight_toRightOf 0x0 +int attr layout_constraintStart_toEndOf 0x0 +int attr layout_constraintStart_toStartOf 0x0 +int attr layout_constraintTag 0x0 +int attr layout_constraintTop_creator 0x0 +int attr layout_constraintTop_toBottomOf 0x0 +int attr layout_constraintTop_toTopOf 0x0 +int attr layout_constraintVertical_bias 0x0 +int attr layout_constraintVertical_chainStyle 0x0 +int attr layout_constraintVertical_weight 0x0 +int attr layout_constraintWidth_default 0x0 +int attr layout_constraintWidth_max 0x0 +int attr layout_constraintWidth_min 0x0 +int attr layout_constraintWidth_percent 0x0 +int attr layout_dodgeInsetEdges 0x0 +int attr layout_editor_absoluteX 0x0 +int attr layout_editor_absoluteY 0x0 +int attr layout_goneMarginBottom 0x0 +int attr layout_goneMarginEnd 0x0 +int attr layout_goneMarginLeft 0x0 +int attr layout_goneMarginRight 0x0 +int attr layout_goneMarginStart 0x0 +int attr layout_goneMarginTop 0x0 +int attr layout_insetEdge 0x0 +int attr layout_keyline 0x0 +int attr layout_optimizationLevel 0x0 +int attr layout_scrollEffect 0x0 +int attr layout_scrollFlags 0x0 +int attr layout_scrollInterpolator 0x0 +int attr liftOnScroll 0x0 +int attr liftOnScrollColor 0x0 +int attr liftOnScrollTargetViewId 0x0 +int attr limitBoundsTo 0x0 +int attr lineHeight 0x0 +int attr lineSpacing 0x0 +int attr linearProgressIndicatorStyle 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listChoiceIndicatorMultipleAnimated 0x0 +int attr listChoiceIndicatorSingleAnimated 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingEnd 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr listPreferredItemPaddingStart 0x0 +int attr logo 0x0 +int attr logoAdjustViewBounds 0x0 +int attr logoDescription 0x0 +int attr logoScaleType 0x0 +int attr marginHorizontal 0x0 +int attr marginLeftSystemWindowInsets 0x0 +int attr marginRightSystemWindowInsets 0x0 +int attr marginTopSystemWindowInsets 0x0 +int attr materialAlertDialogBodyTextStyle 0x0 +int attr materialAlertDialogButtonSpacerVisibility 0x0 +int attr materialAlertDialogTheme 0x0 +int attr materialAlertDialogTitleIconStyle 0x0 +int attr materialAlertDialogTitlePanelStyle 0x0 +int attr materialAlertDialogTitleTextStyle 0x0 +int attr materialButtonOutlinedStyle 0x0 +int attr materialButtonStyle 0x0 +int attr materialButtonToggleGroupStyle 0x0 +int attr materialCalendarDay 0x0 +int attr materialCalendarDayOfWeekLabel 0x0 +int attr materialCalendarFullscreenTheme 0x0 +int attr materialCalendarHeaderCancelButton 0x0 +int attr materialCalendarHeaderConfirmButton 0x0 +int attr materialCalendarHeaderDivider 0x0 +int attr materialCalendarHeaderLayout 0x0 +int attr materialCalendarHeaderSelection 0x0 +int attr materialCalendarHeaderTitle 0x0 +int attr materialCalendarHeaderToggleButton 0x0 +int attr materialCalendarMonth 0x0 +int attr materialCalendarMonthNavigationButton 0x0 +int attr materialCalendarStyle 0x0 +int attr materialCalendarTheme 0x0 +int attr materialCalendarYearNavigationButton 0x0 +int attr materialCardViewElevatedStyle 0x0 +int attr materialCardViewFilledStyle 0x0 +int attr materialCardViewOutlinedStyle 0x0 +int attr materialCardViewStyle 0x0 +int attr materialCircleRadius 0x0 +int attr materialClockStyle 0x0 +int attr materialDisplayDividerStyle 0x0 +int attr materialDividerHeavyStyle 0x0 +int attr materialDividerStyle 0x0 +int attr materialIconButtonFilledStyle 0x0 +int attr materialIconButtonFilledTonalStyle 0x0 +int attr materialIconButtonOutlinedStyle 0x0 +int attr materialIconButtonStyle 0x0 +int attr materialSearchBarStyle 0x0 +int attr materialSearchViewPrefixStyle 0x0 +int attr materialSearchViewStyle 0x0 +int attr materialSwitchStyle 0x0 +int attr materialThemeOverlay 0x0 +int attr materialTimePickerStyle 0x0 +int attr materialTimePickerTheme 0x0 +int attr materialTimePickerTitleStyle 0x0 +int attr maxAcceleration 0x0 +int attr maxActionInlineWidth 0x0 +int attr maxButtonHeight 0x0 +int attr maxCharacterCount 0x0 +int attr maxHeight 0x0 +int attr maxImageSize 0x0 +int attr maxLines 0x0 +int attr maxVelocity 0x0 +int attr maxWidth 0x0 +int attr measureWithLargestChild 0x0 +int attr menu 0x0 +int attr menuAlignmentMode 0x0 +int attr menuGravity 0x0 +int attr minHeight 0x0 +int attr minHideDelay 0x0 +int attr minSeparation 0x0 +int attr minTouchTargetSize 0x0 +int attr minWidth 0x0 +int attr mock_diagonalsColor 0x0 +int attr mock_label 0x0 +int attr mock_labelBackgroundColor 0x0 +int attr mock_labelColor 0x0 +int attr mock_showDiagonals 0x0 +int attr mock_showLabel 0x0 +int attr motionDebug 0x0 +int attr motionDurationExtraLong1 0x0 +int attr motionDurationExtraLong2 0x0 +int attr motionDurationExtraLong3 0x0 +int attr motionDurationExtraLong4 0x0 +int attr motionDurationLong1 0x0 +int attr motionDurationLong2 0x0 +int attr motionDurationLong3 0x0 +int attr motionDurationLong4 0x0 +int attr motionDurationMedium1 0x0 +int attr motionDurationMedium2 0x0 +int attr motionDurationMedium3 0x0 +int attr motionDurationMedium4 0x0 +int attr motionDurationShort1 0x0 +int attr motionDurationShort2 0x0 +int attr motionDurationShort3 0x0 +int attr motionDurationShort4 0x0 +int attr motionEasingAccelerated 0x0 +int attr motionEasingDecelerated 0x0 +int attr motionEasingEmphasized 0x0 +int attr motionEasingEmphasizedAccelerateInterpolator 0x0 +int attr motionEasingEmphasizedDecelerateInterpolator 0x0 +int attr motionEasingEmphasizedInterpolator 0x0 +int attr motionEasingLinear 0x0 +int attr motionEasingLinearInterpolator 0x0 +int attr motionEasingStandard 0x0 +int attr motionEasingStandardAccelerateInterpolator 0x0 +int attr motionEasingStandardDecelerateInterpolator 0x0 +int attr motionEasingStandardInterpolator 0x0 +int attr motionInterpolator 0x0 +int attr motionPath 0x0 +int attr motionPathRotate 0x0 +int attr motionProgress 0x0 +int attr motionStagger 0x0 +int attr motionTarget 0x0 +int attr motion_postLayoutCollision 0x0 +int attr motion_triggerOnCollision 0x0 +int attr moveWhenScrollAtTop 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationIconTint 0x0 +int attr navigationMode 0x0 +int attr navigationRailStyle 0x0 +int attr navigationViewStyle 0x0 +int attr nestedScrollFlags 0x0 +int attr nestedScrollViewStyle 0x0 +int attr nestedScrollable 0x0 +int attr number 0x0 +int attr numericModifiers 0x0 +int attr offsetAlignmentMode 0x0 +int attr onCross 0x0 +int attr onHide 0x0 +int attr onNegativeCross 0x0 +int attr onPositiveCross 0x0 +int attr onShow 0x0 +int attr onTouchUp 0x0 +int attr overlapAnchor 0x0 +int attr overlay 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingBottomSystemWindowInsets 0x0 +int attr paddingEnd 0x0 +int attr paddingLeftSystemWindowInsets 0x0 +int attr paddingRightSystemWindowInsets 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr paddingTopSystemWindowInsets 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr passwordToggleContentDescription 0x0 +int attr passwordToggleDrawable 0x0 +int attr passwordToggleEnabled 0x0 +int attr passwordToggleTint 0x0 +int attr passwordToggleTintMode 0x0 +int attr pathMotionArc 0x0 +int attr path_percent 0x0 +int attr percentHeight 0x0 +int attr percentWidth 0x0 +int attr percentX 0x0 +int attr percentY 0x0 +int attr perpendicularPath_percent 0x0 +int attr pivotAnchor 0x0 +int attr placeholderText 0x0 +int attr placeholderTextAppearance 0x0 +int attr placeholderTextColor 0x0 +int attr placeholder_emptyVisibility 0x0 +int attr popupMenuBackground 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr prefixText 0x0 +int attr prefixTextAppearance 0x0 +int attr prefixTextColor 0x0 +int attr preserveIconSpacing 0x0 +int attr pressedTranslationZ 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr queryPatterns 0x0 +int attr radioButtonStyle 0x0 +int attr rangeFillColor 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr recyclerViewStyle 0x0 +int attr region_heightLessThan 0x0 +int attr region_heightMoreThan 0x0 +int attr region_widthLessThan 0x0 +int attr region_widthMoreThan 0x0 +int attr removeEmbeddedFabElevation 0x0 +int attr reverseLayout 0x0 +int attr rippleColor 0x0 +int attr round 0x0 +int attr roundPercent 0x0 +int attr saturation 0x0 +int attr scrimAnimationDuration 0x0 +int attr scrimBackground 0x0 +int attr scrimVisibleHeightTrigger 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchPrefixText 0x0 +int attr searchViewStyle 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr selectionRequired 0x0 +int attr selectorSize 0x0 +int attr shapeAppearance 0x0 +int attr shapeAppearanceCornerExtraLarge 0x0 +int attr shapeAppearanceCornerExtraSmall 0x0 +int attr shapeAppearanceCornerLarge 0x0 +int attr shapeAppearanceCornerMedium 0x0 +int attr shapeAppearanceCornerSmall 0x0 +int attr shapeAppearanceLargeComponent 0x0 +int attr shapeAppearanceMediumComponent 0x0 +int attr shapeAppearanceOverlay 0x0 +int attr shapeAppearanceSmallComponent 0x0 +int attr shapeCornerFamily 0x0 +int attr shortcutMatchRequired 0x0 +int attr shouldRemoveExpandedCorners 0x0 +int attr showAnimationBehavior 0x0 +int attr showAsAction 0x0 +int attr showDelay 0x0 +int attr showDividers 0x0 +int attr showMotionSpec 0x0 +int attr showPaths 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr shrinkMotionSpec 0x0 +int attr sideSheetDialogTheme 0x0 +int attr sideSheetModalStyle 0x0 +int attr simpleItemLayout 0x0 +int attr simpleItemSelectedColor 0x0 +int attr simpleItemSelectedRippleColor 0x0 +int attr simpleItems 0x0 +int attr singleChoiceItemLayout 0x0 +int attr singleLine 0x0 +int attr singleSelection 0x0 +int attr sizePercent 0x0 +int attr sliderStyle 0x0 +int attr snackbarButtonStyle 0x0 +int attr snackbarStyle 0x0 +int attr snackbarTextViewStyle 0x0 +int attr spanCount 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitTrack 0x0 +int attr srcCompat 0x0 +int attr stackFromEnd 0x0 +int attr staggered 0x0 +int attr startIconCheckable 0x0 +int attr startIconContentDescription 0x0 +int attr startIconDrawable 0x0 +int attr startIconMinSize 0x0 +int attr startIconScaleType 0x0 +int attr startIconTint 0x0 +int attr startIconTintMode 0x0 +int attr state_above_anchor 0x0 +int attr state_collapsed 0x0 +int attr state_collapsible 0x0 +int attr state_dragged 0x0 +int attr state_error 0x0 +int attr state_indeterminate 0x0 +int attr state_liftable 0x0 +int attr state_lifted 0x0 +int attr state_with_icon 0x0 +int attr statusBarBackground 0x0 +int attr statusBarForeground 0x0 +int attr statusBarScrim 0x0 +int attr strokeColor 0x0 +int attr strokeWidth 0x0 +int attr subMenuArrow 0x0 +int attr subheaderColor 0x0 +int attr subheaderInsetEnd 0x0 +int attr subheaderInsetStart 0x0 +int attr subheaderTextAppearance 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleCentered 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suffixText 0x0 +int attr suffixTextAppearance 0x0 +int attr suffixTextColor 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr tabBackground 0x0 +int attr tabContentStart 0x0 +int attr tabGravity 0x0 +int attr tabIconTint 0x0 +int attr tabIconTintMode 0x0 +int attr tabIndicator 0x0 +int attr tabIndicatorAnimationDuration 0x0 +int attr tabIndicatorAnimationMode 0x0 +int attr tabIndicatorColor 0x0 +int attr tabIndicatorFullWidth 0x0 +int attr tabIndicatorGravity 0x0 +int attr tabIndicatorHeight 0x0 +int attr tabInlineLabel 0x0 +int attr tabMaxWidth 0x0 +int attr tabMinWidth 0x0 +int attr tabMode 0x0 +int attr tabPadding 0x0 +int attr tabPaddingBottom 0x0 +int attr tabPaddingEnd 0x0 +int attr tabPaddingStart 0x0 +int attr tabPaddingTop 0x0 +int attr tabRippleColor 0x0 +int attr tabSecondaryStyle 0x0 +int attr tabSelectedTextAppearance 0x0 +int attr tabSelectedTextColor 0x0 +int attr tabStyle 0x0 +int attr tabTextAppearance 0x0 +int attr tabTextColor 0x0 +int attr tabUnboundedRipple 0x0 +int attr targetId 0x0 +int attr telltales_tailColor 0x0 +int attr telltales_tailScale 0x0 +int attr telltales_velocityMode 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceBody1 0x0 +int attr textAppearanceBody2 0x0 +int attr textAppearanceBodyLarge 0x0 +int attr textAppearanceBodyMedium 0x0 +int attr textAppearanceBodySmall 0x0 +int attr textAppearanceButton 0x0 +int attr textAppearanceCaption 0x0 +int attr textAppearanceDisplayLarge 0x0 +int attr textAppearanceDisplayMedium 0x0 +int attr textAppearanceDisplaySmall 0x0 +int attr textAppearanceHeadline1 0x0 +int attr textAppearanceHeadline2 0x0 +int attr textAppearanceHeadline3 0x0 +int attr textAppearanceHeadline4 0x0 +int attr textAppearanceHeadline5 0x0 +int attr textAppearanceHeadline6 0x0 +int attr textAppearanceHeadlineLarge 0x0 +int attr textAppearanceHeadlineMedium 0x0 +int attr textAppearanceHeadlineSmall 0x0 +int attr textAppearanceLabelLarge 0x0 +int attr textAppearanceLabelMedium 0x0 +int attr textAppearanceLabelSmall 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceLineHeightEnabled 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearanceOverline 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textAppearanceSubtitle1 0x0 +int attr textAppearanceSubtitle2 0x0 +int attr textAppearanceTitleLarge 0x0 +int attr textAppearanceTitleMedium 0x0 +int attr textAppearanceTitleSmall 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr textEndPadding 0x0 +int attr textInputFilledDenseStyle 0x0 +int attr textInputFilledExposedDropdownMenuStyle 0x0 +int attr textInputFilledStyle 0x0 +int attr textInputLayoutFocusedRectEnabled 0x0 +int attr textInputOutlinedDenseStyle 0x0 +int attr textInputOutlinedExposedDropdownMenuStyle 0x0 +int attr textInputOutlinedStyle 0x0 +int attr textInputStyle 0x0 +int attr textLocale 0x0 +int attr textStartPadding 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbColor 0x0 +int attr thumbElevation 0x0 +int attr thumbIcon 0x0 +int attr thumbIconTint 0x0 +int attr thumbIconTintMode 0x0 +int attr thumbRadius 0x0 +int attr thumbStrokeColor 0x0 +int attr thumbStrokeWidth 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickColor 0x0 +int attr tickColorActive 0x0 +int attr tickColorInactive 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tickRadiusActive 0x0 +int attr tickRadiusInactive 0x0 +int attr tickVisible 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr tintNavigationIcon 0x0 +int attr title 0x0 +int attr titleCentered 0x0 +int attr titleCollapseMode 0x0 +int attr titleEnabled 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titlePositionInterpolator 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextEllipsize 0x0 +int attr titleTextStyle 0x0 +int attr toggleCheckedStateOnClick 0x0 +int attr toolbarId 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr toolbarSurfaceStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipStyle 0x0 +int attr tooltipText 0x0 +int attr topInsetScrimEnabled 0x0 +int attr touchAnchorId 0x0 +int attr touchAnchorSide 0x0 +int attr touchRegionId 0x0 +int attr track 0x0 +int attr trackColor 0x0 +int attr trackColorActive 0x0 +int attr trackColorInactive 0x0 +int attr trackCornerRadius 0x0 +int attr trackDecoration 0x0 +int attr trackDecorationTint 0x0 +int attr trackDecorationTintMode 0x0 +int attr trackHeight 0x0 +int attr trackThickness 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr transitionDisable 0x0 +int attr transitionEasing 0x0 +int attr transitionFlags 0x0 +int attr transitionPathRotate 0x0 +int attr transitionShapeAppearance 0x0 +int attr triggerId 0x0 +int attr triggerReceiver 0x0 +int attr triggerSlack 0x0 +int attr ttcIndex 0x0 +int attr useCompatPadding 0x0 +int attr useDrawerArrowDrawable 0x0 +int attr useMaterialThemeColors 0x0 +int attr values 0x0 +int attr verticalOffset 0x0 +int attr verticalOffsetWithText 0x0 +int attr viewInflaterClass 0x0 +int attr visibilityMode 0x0 +int attr voiceIcon 0x0 +int attr warmth 0x0 +int attr waveDecay 0x0 +int attr waveOffset 0x0 +int attr wavePeriod 0x0 +int attr waveShape 0x0 +int attr waveVariesBy 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int attr yearSelectedStyle 0x0 +int attr yearStyle 0x0 +int attr yearTodayStyle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_allow_stacked_button_bar 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int bool mtrl_btn_textappearance_all_caps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_decor_view_status_guard 0x0 +int color abc_decor_view_status_guard_light 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color cardview_dark_background 0x0 +int color cardview_light_background 0x0 +int color cardview_shadow_end_color 0x0 +int color cardview_shadow_start_color 0x0 +int color design_bottom_navigation_shadow_color 0x0 +int color design_box_stroke_color 0x0 +int color design_dark_default_color_background 0x0 +int color design_dark_default_color_error 0x0 +int color design_dark_default_color_on_background 0x0 +int color design_dark_default_color_on_error 0x0 +int color design_dark_default_color_on_primary 0x0 +int color design_dark_default_color_on_secondary 0x0 +int color design_dark_default_color_on_surface 0x0 +int color design_dark_default_color_primary 0x0 +int color design_dark_default_color_primary_dark 0x0 +int color design_dark_default_color_primary_variant 0x0 +int color design_dark_default_color_secondary 0x0 +int color design_dark_default_color_secondary_variant 0x0 +int color design_dark_default_color_surface 0x0 +int color design_default_color_background 0x0 +int color design_default_color_error 0x0 +int color design_default_color_on_background 0x0 +int color design_default_color_on_error 0x0 +int color design_default_color_on_primary 0x0 +int color design_default_color_on_secondary 0x0 +int color design_default_color_on_surface 0x0 +int color design_default_color_primary 0x0 +int color design_default_color_primary_dark 0x0 +int color design_default_color_primary_variant 0x0 +int color design_default_color_secondary 0x0 +int color design_default_color_secondary_variant 0x0 +int color design_default_color_surface 0x0 +int color design_error 0x0 +int color design_fab_shadow_end_color 0x0 +int color design_fab_shadow_mid_color 0x0 +int color design_fab_shadow_start_color 0x0 +int color design_fab_stroke_end_inner_color 0x0 +int color design_fab_stroke_end_outer_color 0x0 +int color design_fab_stroke_top_inner_color 0x0 +int color design_fab_stroke_top_outer_color 0x0 +int color design_icon_tint 0x0 +int color design_snackbar_background_color 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color m3_appbar_overlay_color 0x0 +int color m3_assist_chip_icon_tint_color 0x0 +int color m3_assist_chip_stroke_color 0x0 +int color m3_button_background_color_selector 0x0 +int color m3_button_foreground_color_selector 0x0 +int color m3_button_outline_color_selector 0x0 +int color m3_button_ripple_color 0x0 +int color m3_button_ripple_color_selector 0x0 +int color m3_calendar_item_disabled_text 0x0 +int color m3_calendar_item_stroke_color 0x0 +int color m3_card_foreground_color 0x0 +int color m3_card_ripple_color 0x0 +int color m3_card_stroke_color 0x0 +int color m3_checkbox_button_icon_tint 0x0 +int color m3_checkbox_button_tint 0x0 +int color m3_chip_assist_text_color 0x0 +int color m3_chip_background_color 0x0 +int color m3_chip_ripple_color 0x0 +int color m3_chip_stroke_color 0x0 +int color m3_chip_text_color 0x0 +int color m3_dark_default_color_primary_text 0x0 +int color m3_dark_default_color_secondary_text 0x0 +int color m3_dark_highlighted_text 0x0 +int color m3_dark_hint_foreground 0x0 +int color m3_dark_primary_text_disable_only 0x0 +int color m3_default_color_primary_text 0x0 +int color m3_default_color_secondary_text 0x0 +int color m3_dynamic_dark_default_color_primary_text 0x0 +int color m3_dynamic_dark_default_color_secondary_text 0x0 +int color m3_dynamic_dark_highlighted_text 0x0 +int color m3_dynamic_dark_hint_foreground 0x0 +int color m3_dynamic_dark_primary_text_disable_only 0x0 +int color m3_dynamic_default_color_primary_text 0x0 +int color m3_dynamic_default_color_secondary_text 0x0 +int color m3_dynamic_highlighted_text 0x0 +int color m3_dynamic_hint_foreground 0x0 +int color m3_dynamic_primary_text_disable_only 0x0 +int color m3_efab_ripple_color_selector 0x0 +int color m3_elevated_chip_background_color 0x0 +int color m3_fab_efab_background_color_selector 0x0 +int color m3_fab_efab_foreground_color_selector 0x0 +int color m3_fab_ripple_color_selector 0x0 +int color m3_filled_icon_button_container_color_selector 0x0 +int color m3_highlighted_text 0x0 +int color m3_hint_foreground 0x0 +int color m3_icon_button_icon_color_selector 0x0 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x0 +int color m3_navigation_bar_item_with_indicator_label_tint 0x0 +int color m3_navigation_bar_ripple_color_selector 0x0 +int color m3_navigation_item_background_color 0x0 +int color m3_navigation_item_icon_tint 0x0 +int color m3_navigation_item_ripple_color 0x0 +int color m3_navigation_item_text_color 0x0 +int color m3_navigation_rail_item_with_indicator_icon_tint 0x0 +int color m3_navigation_rail_item_with_indicator_label_tint 0x0 +int color m3_navigation_rail_ripple_color_selector 0x0 +int color m3_popupmenu_overlay_color 0x0 +int color m3_primary_text_disable_only 0x0 +int color m3_radiobutton_button_tint 0x0 +int color m3_radiobutton_ripple_tint 0x0 +int color m3_ref_palette_black 0x0 +int color m3_ref_palette_dynamic_neutral0 0x0 +int color m3_ref_palette_dynamic_neutral10 0x0 +int color m3_ref_palette_dynamic_neutral100 0x0 +int color m3_ref_palette_dynamic_neutral12 0x0 +int color m3_ref_palette_dynamic_neutral17 0x0 +int color m3_ref_palette_dynamic_neutral20 0x0 +int color m3_ref_palette_dynamic_neutral22 0x0 +int color m3_ref_palette_dynamic_neutral24 0x0 +int color m3_ref_palette_dynamic_neutral30 0x0 +int color m3_ref_palette_dynamic_neutral4 0x0 +int color m3_ref_palette_dynamic_neutral40 0x0 +int color m3_ref_palette_dynamic_neutral50 0x0 +int color m3_ref_palette_dynamic_neutral6 0x0 +int color m3_ref_palette_dynamic_neutral60 0x0 +int color m3_ref_palette_dynamic_neutral70 0x0 +int color m3_ref_palette_dynamic_neutral80 0x0 +int color m3_ref_palette_dynamic_neutral87 0x0 +int color m3_ref_palette_dynamic_neutral90 0x0 +int color m3_ref_palette_dynamic_neutral92 0x0 +int color m3_ref_palette_dynamic_neutral94 0x0 +int color m3_ref_palette_dynamic_neutral95 0x0 +int color m3_ref_palette_dynamic_neutral96 0x0 +int color m3_ref_palette_dynamic_neutral98 0x0 +int color m3_ref_palette_dynamic_neutral99 0x0 +int color m3_ref_palette_dynamic_neutral_variant0 0x0 +int color m3_ref_palette_dynamic_neutral_variant10 0x0 +int color m3_ref_palette_dynamic_neutral_variant100 0x0 +int color m3_ref_palette_dynamic_neutral_variant20 0x0 +int color m3_ref_palette_dynamic_neutral_variant30 0x0 +int color m3_ref_palette_dynamic_neutral_variant40 0x0 +int color m3_ref_palette_dynamic_neutral_variant50 0x0 +int color m3_ref_palette_dynamic_neutral_variant60 0x0 +int color m3_ref_palette_dynamic_neutral_variant70 0x0 +int color m3_ref_palette_dynamic_neutral_variant80 0x0 +int color m3_ref_palette_dynamic_neutral_variant90 0x0 +int color m3_ref_palette_dynamic_neutral_variant95 0x0 +int color m3_ref_palette_dynamic_neutral_variant99 0x0 +int color m3_ref_palette_dynamic_primary0 0x0 +int color m3_ref_palette_dynamic_primary10 0x0 +int color m3_ref_palette_dynamic_primary100 0x0 +int color m3_ref_palette_dynamic_primary20 0x0 +int color m3_ref_palette_dynamic_primary30 0x0 +int color m3_ref_palette_dynamic_primary40 0x0 +int color m3_ref_palette_dynamic_primary50 0x0 +int color m3_ref_palette_dynamic_primary60 0x0 +int color m3_ref_palette_dynamic_primary70 0x0 +int color m3_ref_palette_dynamic_primary80 0x0 +int color m3_ref_palette_dynamic_primary90 0x0 +int color m3_ref_palette_dynamic_primary95 0x0 +int color m3_ref_palette_dynamic_primary99 0x0 +int color m3_ref_palette_dynamic_secondary0 0x0 +int color m3_ref_palette_dynamic_secondary10 0x0 +int color m3_ref_palette_dynamic_secondary100 0x0 +int color m3_ref_palette_dynamic_secondary20 0x0 +int color m3_ref_palette_dynamic_secondary30 0x0 +int color m3_ref_palette_dynamic_secondary40 0x0 +int color m3_ref_palette_dynamic_secondary50 0x0 +int color m3_ref_palette_dynamic_secondary60 0x0 +int color m3_ref_palette_dynamic_secondary70 0x0 +int color m3_ref_palette_dynamic_secondary80 0x0 +int color m3_ref_palette_dynamic_secondary90 0x0 +int color m3_ref_palette_dynamic_secondary95 0x0 +int color m3_ref_palette_dynamic_secondary99 0x0 +int color m3_ref_palette_dynamic_tertiary0 0x0 +int color m3_ref_palette_dynamic_tertiary10 0x0 +int color m3_ref_palette_dynamic_tertiary100 0x0 +int color m3_ref_palette_dynamic_tertiary20 0x0 +int color m3_ref_palette_dynamic_tertiary30 0x0 +int color m3_ref_palette_dynamic_tertiary40 0x0 +int color m3_ref_palette_dynamic_tertiary50 0x0 +int color m3_ref_palette_dynamic_tertiary60 0x0 +int color m3_ref_palette_dynamic_tertiary70 0x0 +int color m3_ref_palette_dynamic_tertiary80 0x0 +int color m3_ref_palette_dynamic_tertiary90 0x0 +int color m3_ref_palette_dynamic_tertiary95 0x0 +int color m3_ref_palette_dynamic_tertiary99 0x0 +int color m3_ref_palette_error0 0x0 +int color m3_ref_palette_error10 0x0 +int color m3_ref_palette_error100 0x0 +int color m3_ref_palette_error20 0x0 +int color m3_ref_palette_error30 0x0 +int color m3_ref_palette_error40 0x0 +int color m3_ref_palette_error50 0x0 +int color m3_ref_palette_error60 0x0 +int color m3_ref_palette_error70 0x0 +int color m3_ref_palette_error80 0x0 +int color m3_ref_palette_error90 0x0 +int color m3_ref_palette_error95 0x0 +int color m3_ref_palette_error99 0x0 +int color m3_ref_palette_neutral0 0x0 +int color m3_ref_palette_neutral10 0x0 +int color m3_ref_palette_neutral100 0x0 +int color m3_ref_palette_neutral12 0x0 +int color m3_ref_palette_neutral17 0x0 +int color m3_ref_palette_neutral20 0x0 +int color m3_ref_palette_neutral22 0x0 +int color m3_ref_palette_neutral24 0x0 +int color m3_ref_palette_neutral30 0x0 +int color m3_ref_palette_neutral4 0x0 +int color m3_ref_palette_neutral40 0x0 +int color m3_ref_palette_neutral50 0x0 +int color m3_ref_palette_neutral6 0x0 +int color m3_ref_palette_neutral60 0x0 +int color m3_ref_palette_neutral70 0x0 +int color m3_ref_palette_neutral80 0x0 +int color m3_ref_palette_neutral87 0x0 +int color m3_ref_palette_neutral90 0x0 +int color m3_ref_palette_neutral92 0x0 +int color m3_ref_palette_neutral94 0x0 +int color m3_ref_palette_neutral95 0x0 +int color m3_ref_palette_neutral96 0x0 +int color m3_ref_palette_neutral98 0x0 +int color m3_ref_palette_neutral99 0x0 +int color m3_ref_palette_neutral_variant0 0x0 +int color m3_ref_palette_neutral_variant10 0x0 +int color m3_ref_palette_neutral_variant100 0x0 +int color m3_ref_palette_neutral_variant20 0x0 +int color m3_ref_palette_neutral_variant30 0x0 +int color m3_ref_palette_neutral_variant40 0x0 +int color m3_ref_palette_neutral_variant50 0x0 +int color m3_ref_palette_neutral_variant60 0x0 +int color m3_ref_palette_neutral_variant70 0x0 +int color m3_ref_palette_neutral_variant80 0x0 +int color m3_ref_palette_neutral_variant90 0x0 +int color m3_ref_palette_neutral_variant95 0x0 +int color m3_ref_palette_neutral_variant99 0x0 +int color m3_ref_palette_primary0 0x0 +int color m3_ref_palette_primary10 0x0 +int color m3_ref_palette_primary100 0x0 +int color m3_ref_palette_primary20 0x0 +int color m3_ref_palette_primary30 0x0 +int color m3_ref_palette_primary40 0x0 +int color m3_ref_palette_primary50 0x0 +int color m3_ref_palette_primary60 0x0 +int color m3_ref_palette_primary70 0x0 +int color m3_ref_palette_primary80 0x0 +int color m3_ref_palette_primary90 0x0 +int color m3_ref_palette_primary95 0x0 +int color m3_ref_palette_primary99 0x0 +int color m3_ref_palette_secondary0 0x0 +int color m3_ref_palette_secondary10 0x0 +int color m3_ref_palette_secondary100 0x0 +int color m3_ref_palette_secondary20 0x0 +int color m3_ref_palette_secondary30 0x0 +int color m3_ref_palette_secondary40 0x0 +int color m3_ref_palette_secondary50 0x0 +int color m3_ref_palette_secondary60 0x0 +int color m3_ref_palette_secondary70 0x0 +int color m3_ref_palette_secondary80 0x0 +int color m3_ref_palette_secondary90 0x0 +int color m3_ref_palette_secondary95 0x0 +int color m3_ref_palette_secondary99 0x0 +int color m3_ref_palette_tertiary0 0x0 +int color m3_ref_palette_tertiary10 0x0 +int color m3_ref_palette_tertiary100 0x0 +int color m3_ref_palette_tertiary20 0x0 +int color m3_ref_palette_tertiary30 0x0 +int color m3_ref_palette_tertiary40 0x0 +int color m3_ref_palette_tertiary50 0x0 +int color m3_ref_palette_tertiary60 0x0 +int color m3_ref_palette_tertiary70 0x0 +int color m3_ref_palette_tertiary80 0x0 +int color m3_ref_palette_tertiary90 0x0 +int color m3_ref_palette_tertiary95 0x0 +int color m3_ref_palette_tertiary99 0x0 +int color m3_ref_palette_white 0x0 +int color m3_selection_control_ripple_color_selector 0x0 +int color m3_simple_item_ripple_color 0x0 +int color m3_slider_active_track_color 0x0 +int color m3_slider_halo_color 0x0 +int color m3_slider_inactive_track_color 0x0 +int color m3_slider_thumb_color 0x0 +int color m3_switch_thumb_tint 0x0 +int color m3_switch_track_tint 0x0 +int color m3_sys_color_dark_background 0x0 +int color m3_sys_color_dark_error 0x0 +int color m3_sys_color_dark_error_container 0x0 +int color m3_sys_color_dark_inverse_on_surface 0x0 +int color m3_sys_color_dark_inverse_primary 0x0 +int color m3_sys_color_dark_inverse_surface 0x0 +int color m3_sys_color_dark_on_background 0x0 +int color m3_sys_color_dark_on_error 0x0 +int color m3_sys_color_dark_on_error_container 0x0 +int color m3_sys_color_dark_on_primary 0x0 +int color m3_sys_color_dark_on_primary_container 0x0 +int color m3_sys_color_dark_on_secondary 0x0 +int color m3_sys_color_dark_on_secondary_container 0x0 +int color m3_sys_color_dark_on_surface 0x0 +int color m3_sys_color_dark_on_surface_variant 0x0 +int color m3_sys_color_dark_on_tertiary 0x0 +int color m3_sys_color_dark_on_tertiary_container 0x0 +int color m3_sys_color_dark_outline 0x0 +int color m3_sys_color_dark_outline_variant 0x0 +int color m3_sys_color_dark_primary 0x0 +int color m3_sys_color_dark_primary_container 0x0 +int color m3_sys_color_dark_secondary 0x0 +int color m3_sys_color_dark_secondary_container 0x0 +int color m3_sys_color_dark_surface 0x0 +int color m3_sys_color_dark_surface_bright 0x0 +int color m3_sys_color_dark_surface_container 0x0 +int color m3_sys_color_dark_surface_container_high 0x0 +int color m3_sys_color_dark_surface_container_highest 0x0 +int color m3_sys_color_dark_surface_container_low 0x0 +int color m3_sys_color_dark_surface_container_lowest 0x0 +int color m3_sys_color_dark_surface_dim 0x0 +int color m3_sys_color_dark_surface_variant 0x0 +int color m3_sys_color_dark_tertiary 0x0 +int color m3_sys_color_dark_tertiary_container 0x0 +int color m3_sys_color_dynamic_dark_background 0x0 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x0 +int color m3_sys_color_dynamic_dark_inverse_primary 0x0 +int color m3_sys_color_dynamic_dark_inverse_surface 0x0 +int color m3_sys_color_dynamic_dark_on_background 0x0 +int color m3_sys_color_dynamic_dark_on_primary 0x0 +int color m3_sys_color_dynamic_dark_on_primary_container 0x0 +int color m3_sys_color_dynamic_dark_on_secondary 0x0 +int color m3_sys_color_dynamic_dark_on_secondary_container 0x0 +int color m3_sys_color_dynamic_dark_on_surface 0x0 +int color m3_sys_color_dynamic_dark_on_surface_variant 0x0 +int color m3_sys_color_dynamic_dark_on_tertiary 0x0 +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x0 +int color m3_sys_color_dynamic_dark_outline 0x0 +int color m3_sys_color_dynamic_dark_outline_variant 0x0 +int color m3_sys_color_dynamic_dark_primary 0x0 +int color m3_sys_color_dynamic_dark_primary_container 0x0 +int color m3_sys_color_dynamic_dark_secondary 0x0 +int color m3_sys_color_dynamic_dark_secondary_container 0x0 +int color m3_sys_color_dynamic_dark_surface 0x0 +int color m3_sys_color_dynamic_dark_surface_bright 0x0 +int color m3_sys_color_dynamic_dark_surface_container 0x0 +int color m3_sys_color_dynamic_dark_surface_container_high 0x0 +int color m3_sys_color_dynamic_dark_surface_container_highest 0x0 +int color m3_sys_color_dynamic_dark_surface_container_low 0x0 +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x0 +int color m3_sys_color_dynamic_dark_surface_dim 0x0 +int color m3_sys_color_dynamic_dark_surface_variant 0x0 +int color m3_sys_color_dynamic_dark_tertiary 0x0 +int color m3_sys_color_dynamic_dark_tertiary_container 0x0 +int color m3_sys_color_dynamic_light_background 0x0 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x0 +int color m3_sys_color_dynamic_light_inverse_primary 0x0 +int color m3_sys_color_dynamic_light_inverse_surface 0x0 +int color m3_sys_color_dynamic_light_on_background 0x0 +int color m3_sys_color_dynamic_light_on_primary 0x0 +int color m3_sys_color_dynamic_light_on_primary_container 0x0 +int color m3_sys_color_dynamic_light_on_secondary 0x0 +int color m3_sys_color_dynamic_light_on_secondary_container 0x0 +int color m3_sys_color_dynamic_light_on_surface 0x0 +int color m3_sys_color_dynamic_light_on_surface_variant 0x0 +int color m3_sys_color_dynamic_light_on_tertiary 0x0 +int color m3_sys_color_dynamic_light_on_tertiary_container 0x0 +int color m3_sys_color_dynamic_light_outline 0x0 +int color m3_sys_color_dynamic_light_outline_variant 0x0 +int color m3_sys_color_dynamic_light_primary 0x0 +int color m3_sys_color_dynamic_light_primary_container 0x0 +int color m3_sys_color_dynamic_light_secondary 0x0 +int color m3_sys_color_dynamic_light_secondary_container 0x0 +int color m3_sys_color_dynamic_light_surface 0x0 +int color m3_sys_color_dynamic_light_surface_bright 0x0 +int color m3_sys_color_dynamic_light_surface_container 0x0 +int color m3_sys_color_dynamic_light_surface_container_high 0x0 +int color m3_sys_color_dynamic_light_surface_container_highest 0x0 +int color m3_sys_color_dynamic_light_surface_container_low 0x0 +int color m3_sys_color_dynamic_light_surface_container_lowest 0x0 +int color m3_sys_color_dynamic_light_surface_dim 0x0 +int color m3_sys_color_dynamic_light_surface_variant 0x0 +int color m3_sys_color_dynamic_light_tertiary 0x0 +int color m3_sys_color_dynamic_light_tertiary_container 0x0 +int color m3_sys_color_dynamic_on_primary_fixed 0x0 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x0 +int color m3_sys_color_dynamic_on_secondary_fixed 0x0 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x0 +int color m3_sys_color_dynamic_on_tertiary_fixed 0x0 +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x0 +int color m3_sys_color_dynamic_primary_fixed 0x0 +int color m3_sys_color_dynamic_primary_fixed_dim 0x0 +int color m3_sys_color_dynamic_secondary_fixed 0x0 +int color m3_sys_color_dynamic_secondary_fixed_dim 0x0 +int color m3_sys_color_dynamic_tertiary_fixed 0x0 +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x0 +int color m3_sys_color_light_background 0x0 +int color m3_sys_color_light_error 0x0 +int color m3_sys_color_light_error_container 0x0 +int color m3_sys_color_light_inverse_on_surface 0x0 +int color m3_sys_color_light_inverse_primary 0x0 +int color m3_sys_color_light_inverse_surface 0x0 +int color m3_sys_color_light_on_background 0x0 +int color m3_sys_color_light_on_error 0x0 +int color m3_sys_color_light_on_error_container 0x0 +int color m3_sys_color_light_on_primary 0x0 +int color m3_sys_color_light_on_primary_container 0x0 +int color m3_sys_color_light_on_secondary 0x0 +int color m3_sys_color_light_on_secondary_container 0x0 +int color m3_sys_color_light_on_surface 0x0 +int color m3_sys_color_light_on_surface_variant 0x0 +int color m3_sys_color_light_on_tertiary 0x0 +int color m3_sys_color_light_on_tertiary_container 0x0 +int color m3_sys_color_light_outline 0x0 +int color m3_sys_color_light_outline_variant 0x0 +int color m3_sys_color_light_primary 0x0 +int color m3_sys_color_light_primary_container 0x0 +int color m3_sys_color_light_secondary 0x0 +int color m3_sys_color_light_secondary_container 0x0 +int color m3_sys_color_light_surface 0x0 +int color m3_sys_color_light_surface_bright 0x0 +int color m3_sys_color_light_surface_container 0x0 +int color m3_sys_color_light_surface_container_high 0x0 +int color m3_sys_color_light_surface_container_highest 0x0 +int color m3_sys_color_light_surface_container_low 0x0 +int color m3_sys_color_light_surface_container_lowest 0x0 +int color m3_sys_color_light_surface_dim 0x0 +int color m3_sys_color_light_surface_variant 0x0 +int color m3_sys_color_light_tertiary 0x0 +int color m3_sys_color_light_tertiary_container 0x0 +int color m3_sys_color_on_primary_fixed 0x0 +int color m3_sys_color_on_primary_fixed_variant 0x0 +int color m3_sys_color_on_secondary_fixed 0x0 +int color m3_sys_color_on_secondary_fixed_variant 0x0 +int color m3_sys_color_on_tertiary_fixed 0x0 +int color m3_sys_color_on_tertiary_fixed_variant 0x0 +int color m3_sys_color_primary_fixed 0x0 +int color m3_sys_color_primary_fixed_dim 0x0 +int color m3_sys_color_secondary_fixed 0x0 +int color m3_sys_color_secondary_fixed_dim 0x0 +int color m3_sys_color_tertiary_fixed 0x0 +int color m3_sys_color_tertiary_fixed_dim 0x0 +int color m3_tabs_icon_color 0x0 +int color m3_tabs_icon_color_secondary 0x0 +int color m3_tabs_ripple_color 0x0 +int color m3_tabs_ripple_color_secondary 0x0 +int color m3_tabs_text_color 0x0 +int color m3_tabs_text_color_secondary 0x0 +int color m3_text_button_background_color_selector 0x0 +int color m3_text_button_foreground_color_selector 0x0 +int color m3_text_button_ripple_color_selector 0x0 +int color m3_textfield_filled_background_color 0x0 +int color m3_textfield_indicator_text_color 0x0 +int color m3_textfield_input_text_color 0x0 +int color m3_textfield_label_color 0x0 +int color m3_textfield_stroke_color 0x0 +int color m3_timepicker_button_background_color 0x0 +int color m3_timepicker_button_ripple_color 0x0 +int color m3_timepicker_button_text_color 0x0 +int color m3_timepicker_clock_text_color 0x0 +int color m3_timepicker_display_background_color 0x0 +int color m3_timepicker_display_ripple_color 0x0 +int color m3_timepicker_display_text_color 0x0 +int color m3_timepicker_secondary_text_button_ripple_color 0x0 +int color m3_timepicker_secondary_text_button_text_color 0x0 +int color m3_timepicker_time_input_stroke_color 0x0 +int color m3_tonal_button_ripple_color_selector 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_cursor_color 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_divider_color 0x0 +int color material_dynamic_neutral0 0x0 +int color material_dynamic_neutral10 0x0 +int color material_dynamic_neutral100 0x0 +int color material_dynamic_neutral20 0x0 +int color material_dynamic_neutral30 0x0 +int color material_dynamic_neutral40 0x0 +int color material_dynamic_neutral50 0x0 +int color material_dynamic_neutral60 0x0 +int color material_dynamic_neutral70 0x0 +int color material_dynamic_neutral80 0x0 +int color material_dynamic_neutral90 0x0 +int color material_dynamic_neutral95 0x0 +int color material_dynamic_neutral99 0x0 +int color material_dynamic_neutral_variant0 0x0 +int color material_dynamic_neutral_variant10 0x0 +int color material_dynamic_neutral_variant100 0x0 +int color material_dynamic_neutral_variant20 0x0 +int color material_dynamic_neutral_variant30 0x0 +int color material_dynamic_neutral_variant40 0x0 +int color material_dynamic_neutral_variant50 0x0 +int color material_dynamic_neutral_variant60 0x0 +int color material_dynamic_neutral_variant70 0x0 +int color material_dynamic_neutral_variant80 0x0 +int color material_dynamic_neutral_variant90 0x0 +int color material_dynamic_neutral_variant95 0x0 +int color material_dynamic_neutral_variant99 0x0 +int color material_dynamic_primary0 0x0 +int color material_dynamic_primary10 0x0 +int color material_dynamic_primary100 0x0 +int color material_dynamic_primary20 0x0 +int color material_dynamic_primary30 0x0 +int color material_dynamic_primary40 0x0 +int color material_dynamic_primary50 0x0 +int color material_dynamic_primary60 0x0 +int color material_dynamic_primary70 0x0 +int color material_dynamic_primary80 0x0 +int color material_dynamic_primary90 0x0 +int color material_dynamic_primary95 0x0 +int color material_dynamic_primary99 0x0 +int color material_dynamic_secondary0 0x0 +int color material_dynamic_secondary10 0x0 +int color material_dynamic_secondary100 0x0 +int color material_dynamic_secondary20 0x0 +int color material_dynamic_secondary30 0x0 +int color material_dynamic_secondary40 0x0 +int color material_dynamic_secondary50 0x0 +int color material_dynamic_secondary60 0x0 +int color material_dynamic_secondary70 0x0 +int color material_dynamic_secondary80 0x0 +int color material_dynamic_secondary90 0x0 +int color material_dynamic_secondary95 0x0 +int color material_dynamic_secondary99 0x0 +int color material_dynamic_tertiary0 0x0 +int color material_dynamic_tertiary10 0x0 +int color material_dynamic_tertiary100 0x0 +int color material_dynamic_tertiary20 0x0 +int color material_dynamic_tertiary30 0x0 +int color material_dynamic_tertiary40 0x0 +int color material_dynamic_tertiary50 0x0 +int color material_dynamic_tertiary60 0x0 +int color material_dynamic_tertiary70 0x0 +int color material_dynamic_tertiary80 0x0 +int color material_dynamic_tertiary90 0x0 +int color material_dynamic_tertiary95 0x0 +int color material_dynamic_tertiary99 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color material_harmonized_color_error 0x0 +int color material_harmonized_color_error_container 0x0 +int color material_harmonized_color_on_error 0x0 +int color material_harmonized_color_on_error_container 0x0 +int color material_on_background_disabled 0x0 +int color material_on_background_emphasis_high_type 0x0 +int color material_on_background_emphasis_medium 0x0 +int color material_on_primary_disabled 0x0 +int color material_on_primary_emphasis_high_type 0x0 +int color material_on_primary_emphasis_medium 0x0 +int color material_on_surface_disabled 0x0 +int color material_on_surface_emphasis_high_type 0x0 +int color material_on_surface_emphasis_medium 0x0 +int color material_on_surface_stroke 0x0 +int color material_personalized__highlighted_text 0x0 +int color material_personalized__highlighted_text_inverse 0x0 +int color material_personalized_color_background 0x0 +int color material_personalized_color_control_activated 0x0 +int color material_personalized_color_control_highlight 0x0 +int color material_personalized_color_control_normal 0x0 +int color material_personalized_color_error 0x0 +int color material_personalized_color_error_container 0x0 +int color material_personalized_color_on_background 0x0 +int color material_personalized_color_on_error 0x0 +int color material_personalized_color_on_error_container 0x0 +int color material_personalized_color_on_primary 0x0 +int color material_personalized_color_on_primary_container 0x0 +int color material_personalized_color_on_secondary 0x0 +int color material_personalized_color_on_secondary_container 0x0 +int color material_personalized_color_on_surface 0x0 +int color material_personalized_color_on_surface_inverse 0x0 +int color material_personalized_color_on_surface_variant 0x0 +int color material_personalized_color_on_tertiary 0x0 +int color material_personalized_color_on_tertiary_container 0x0 +int color material_personalized_color_outline 0x0 +int color material_personalized_color_outline_variant 0x0 +int color material_personalized_color_primary 0x0 +int color material_personalized_color_primary_container 0x0 +int color material_personalized_color_primary_inverse 0x0 +int color material_personalized_color_primary_text 0x0 +int color material_personalized_color_primary_text_inverse 0x0 +int color material_personalized_color_secondary 0x0 +int color material_personalized_color_secondary_container 0x0 +int color material_personalized_color_secondary_text 0x0 +int color material_personalized_color_secondary_text_inverse 0x0 +int color material_personalized_color_surface 0x0 +int color material_personalized_color_surface_bright 0x0 +int color material_personalized_color_surface_container 0x0 +int color material_personalized_color_surface_container_high 0x0 +int color material_personalized_color_surface_container_highest 0x0 +int color material_personalized_color_surface_container_low 0x0 +int color material_personalized_color_surface_container_lowest 0x0 +int color material_personalized_color_surface_dim 0x0 +int color material_personalized_color_surface_inverse 0x0 +int color material_personalized_color_surface_variant 0x0 +int color material_personalized_color_tertiary 0x0 +int color material_personalized_color_tertiary_container 0x0 +int color material_personalized_color_text_hint_foreground_inverse 0x0 +int color material_personalized_color_text_primary_inverse 0x0 +int color material_personalized_color_text_primary_inverse_disable_only 0x0 +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x0 +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x0 +int color material_personalized_hint_foreground 0x0 +int color material_personalized_hint_foreground_inverse 0x0 +int color material_personalized_primary_inverse_text_disable_only 0x0 +int color material_personalized_primary_text_disable_only 0x0 +int color material_slider_active_tick_marks_color 0x0 +int color material_slider_active_track_color 0x0 +int color material_slider_halo_color 0x0 +int color material_slider_inactive_tick_marks_color 0x0 +int color material_slider_inactive_track_color 0x0 +int color material_slider_thumb_color 0x0 +int color material_timepicker_button_background 0x0 +int color material_timepicker_button_stroke 0x0 +int color material_timepicker_clock_text_color 0x0 +int color material_timepicker_clockface 0x0 +int color material_timepicker_modebutton_tint 0x0 +int color mtrl_btn_bg_color_selector 0x0 +int color mtrl_btn_ripple_color 0x0 +int color mtrl_btn_stroke_color_selector 0x0 +int color mtrl_btn_text_btn_bg_color_selector 0x0 +int color mtrl_btn_text_btn_ripple_color 0x0 +int color mtrl_btn_text_color_disabled 0x0 +int color mtrl_btn_text_color_selector 0x0 +int color mtrl_btn_transparent_bg_color 0x0 +int color mtrl_calendar_item_stroke_color 0x0 +int color mtrl_calendar_selected_range 0x0 +int color mtrl_card_view_foreground 0x0 +int color mtrl_card_view_ripple 0x0 +int color mtrl_chip_background_color 0x0 +int color mtrl_chip_close_icon_tint 0x0 +int color mtrl_chip_surface_color 0x0 +int color mtrl_chip_text_color 0x0 +int color mtrl_choice_chip_background_color 0x0 +int color mtrl_choice_chip_ripple_color 0x0 +int color mtrl_choice_chip_text_color 0x0 +int color mtrl_error 0x0 +int color mtrl_fab_bg_color_selector 0x0 +int color mtrl_fab_icon_text_color_selector 0x0 +int color mtrl_fab_ripple_color 0x0 +int color mtrl_filled_background_color 0x0 +int color mtrl_filled_icon_tint 0x0 +int color mtrl_filled_stroke_color 0x0 +int color mtrl_indicator_text_color 0x0 +int color mtrl_navigation_bar_colored_item_tint 0x0 +int color mtrl_navigation_bar_colored_ripple_color 0x0 +int color mtrl_navigation_bar_item_tint 0x0 +int color mtrl_navigation_bar_ripple_color 0x0 +int color mtrl_navigation_item_background_color 0x0 +int color mtrl_navigation_item_icon_tint 0x0 +int color mtrl_navigation_item_text_color 0x0 +int color mtrl_on_primary_text_btn_text_color_selector 0x0 +int color mtrl_on_surface_ripple_color 0x0 +int color mtrl_outlined_icon_tint 0x0 +int color mtrl_outlined_stroke_color 0x0 +int color mtrl_popupmenu_overlay_color 0x0 +int color mtrl_scrim_color 0x0 +int color mtrl_switch_thumb_icon_tint 0x0 +int color mtrl_switch_thumb_tint 0x0 +int color mtrl_switch_track_decoration_tint 0x0 +int color mtrl_switch_track_tint 0x0 +int color mtrl_tabs_colored_ripple_color 0x0 +int color mtrl_tabs_icon_color_selector 0x0 +int color mtrl_tabs_icon_color_selector_colored 0x0 +int color mtrl_tabs_legacy_text_color_selector 0x0 +int color mtrl_tabs_ripple_color 0x0 +int color mtrl_text_btn_text_color_selector 0x0 +int color mtrl_textinput_default_box_stroke_color 0x0 +int color mtrl_textinput_disabled_color 0x0 +int color mtrl_textinput_filled_box_default_background_color 0x0 +int color mtrl_textinput_focused_box_stroke_color 0x0 +int color mtrl_textinput_hovered_box_stroke_color 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_height_large_material 0x0 +int dimen abc_list_item_height_material 0x0 +int dimen abc_list_item_height_small_material 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_star_big 0x0 +int dimen abc_star_medium 0x0 +int dimen abc_star_small 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen appcompat_dialog_background_inset 0x0 +int dimen cardview_compat_inset_shadow 0x0 +int dimen cardview_default_elevation 0x0 +int dimen cardview_default_radius 0x0 +int dimen clock_face_margin_start 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen def_drawer_elevation 0x0 +int dimen design_appbar_elevation 0x0 +int dimen design_bottom_navigation_active_item_max_width 0x0 +int dimen design_bottom_navigation_active_item_min_width 0x0 +int dimen design_bottom_navigation_active_text_size 0x0 +int dimen design_bottom_navigation_elevation 0x0 +int dimen design_bottom_navigation_height 0x0 +int dimen design_bottom_navigation_icon_size 0x0 +int dimen design_bottom_navigation_item_max_width 0x0 +int dimen design_bottom_navigation_item_min_width 0x0 +int dimen design_bottom_navigation_label_padding 0x0 +int dimen design_bottom_navigation_margin 0x0 +int dimen design_bottom_navigation_shadow_height 0x0 +int dimen design_bottom_navigation_text_size 0x0 +int dimen design_bottom_sheet_elevation 0x0 +int dimen design_bottom_sheet_modal_elevation 0x0 +int dimen design_bottom_sheet_peek_height_min 0x0 +int dimen design_fab_border_width 0x0 +int dimen design_fab_elevation 0x0 +int dimen design_fab_image_size 0x0 +int dimen design_fab_size_mini 0x0 +int dimen design_fab_size_normal 0x0 +int dimen design_fab_translation_z_hovered_focused 0x0 +int dimen design_fab_translation_z_pressed 0x0 +int dimen design_navigation_elevation 0x0 +int dimen design_navigation_icon_padding 0x0 +int dimen design_navigation_icon_size 0x0 +int dimen design_navigation_item_horizontal_padding 0x0 +int dimen design_navigation_item_icon_padding 0x0 +int dimen design_navigation_item_vertical_padding 0x0 +int dimen design_navigation_max_width 0x0 +int dimen design_navigation_padding_bottom 0x0 +int dimen design_navigation_separator_vertical_padding 0x0 +int dimen design_snackbar_action_inline_max_width 0x0 +int dimen design_snackbar_action_text_color_alpha 0x0 +int dimen design_snackbar_background_corner_radius 0x0 +int dimen design_snackbar_elevation 0x0 +int dimen design_snackbar_extra_spacing_horizontal 0x0 +int dimen design_snackbar_max_width 0x0 +int dimen design_snackbar_min_width 0x0 +int dimen design_snackbar_padding_horizontal 0x0 +int dimen design_snackbar_padding_vertical 0x0 +int dimen design_snackbar_padding_vertical_2lines 0x0 +int dimen design_snackbar_text_size 0x0 +int dimen design_tab_max_width 0x0 +int dimen design_tab_scrollable_min_width 0x0 +int dimen design_tab_text_size 0x0 +int dimen design_tab_text_size_2line 0x0 +int dimen design_textinput_caption_translate_y 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen fastscroll_default_thickness 0x0 +int dimen fastscroll_margin 0x0 +int dimen fastscroll_minimum_range 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x0 +int dimen item_touch_helper_swipe_escape_max_velocity 0x0 +int dimen item_touch_helper_swipe_escape_velocity 0x0 +int dimen m3_alert_dialog_action_bottom_padding 0x0 +int dimen m3_alert_dialog_action_top_padding 0x0 +int dimen m3_alert_dialog_corner_size 0x0 +int dimen m3_alert_dialog_elevation 0x0 +int dimen m3_alert_dialog_icon_margin 0x0 +int dimen m3_alert_dialog_icon_size 0x0 +int dimen m3_alert_dialog_title_bottom_margin 0x0 +int dimen m3_appbar_expanded_title_margin_bottom 0x0 +int dimen m3_appbar_expanded_title_margin_horizontal 0x0 +int dimen m3_appbar_scrim_height_trigger 0x0 +int dimen m3_appbar_scrim_height_trigger_large 0x0 +int dimen m3_appbar_scrim_height_trigger_medium 0x0 +int dimen m3_appbar_size_compact 0x0 +int dimen m3_appbar_size_large 0x0 +int dimen m3_appbar_size_medium 0x0 +int dimen m3_badge_horizontal_offset 0x0 +int dimen m3_badge_offset 0x0 +int dimen m3_badge_size 0x0 +int dimen m3_badge_vertical_offset 0x0 +int dimen m3_badge_with_text_horizontal_offset 0x0 +int dimen m3_badge_with_text_offset 0x0 +int dimen m3_badge_with_text_size 0x0 +int dimen m3_badge_with_text_vertical_offset 0x0 +int dimen m3_bottom_nav_item_active_indicator_height 0x0 +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x0 +int dimen m3_bottom_nav_item_active_indicator_width 0x0 +int dimen m3_bottom_nav_item_padding_bottom 0x0 +int dimen m3_bottom_nav_item_padding_top 0x0 +int dimen m3_bottom_nav_min_height 0x0 +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x0 +int dimen m3_bottom_sheet_elevation 0x0 +int dimen m3_bottom_sheet_modal_elevation 0x0 +int dimen m3_bottomappbar_fab_cradle_margin 0x0 +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x0 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x0 +int dimen m3_bottomappbar_fab_end_margin 0x0 +int dimen m3_bottomappbar_height 0x0 +int dimen m3_bottomappbar_horizontal_padding 0x0 +int dimen m3_btn_dialog_btn_min_width 0x0 +int dimen m3_btn_dialog_btn_spacing 0x0 +int dimen m3_btn_disabled_elevation 0x0 +int dimen m3_btn_disabled_translation_z 0x0 +int dimen m3_btn_elevated_btn_elevation 0x0 +int dimen m3_btn_elevation 0x0 +int dimen m3_btn_icon_btn_padding_left 0x0 +int dimen m3_btn_icon_btn_padding_right 0x0 +int dimen m3_btn_icon_only_default_padding 0x0 +int dimen m3_btn_icon_only_default_size 0x0 +int dimen m3_btn_icon_only_icon_padding 0x0 +int dimen m3_btn_icon_only_min_width 0x0 +int dimen m3_btn_inset 0x0 +int dimen m3_btn_max_width 0x0 +int dimen m3_btn_padding_bottom 0x0 +int dimen m3_btn_padding_left 0x0 +int dimen m3_btn_padding_right 0x0 +int dimen m3_btn_padding_top 0x0 +int dimen m3_btn_stroke_size 0x0 +int dimen m3_btn_text_btn_icon_padding_left 0x0 +int dimen m3_btn_text_btn_icon_padding_right 0x0 +int dimen m3_btn_text_btn_padding_left 0x0 +int dimen m3_btn_text_btn_padding_right 0x0 +int dimen m3_btn_translation_z_base 0x0 +int dimen m3_btn_translation_z_hovered 0x0 +int dimen m3_card_disabled_z 0x0 +int dimen m3_card_dragged_z 0x0 +int dimen m3_card_elevated_disabled_z 0x0 +int dimen m3_card_elevated_dragged_z 0x0 +int dimen m3_card_elevated_elevation 0x0 +int dimen m3_card_elevated_hovered_z 0x0 +int dimen m3_card_elevation 0x0 +int dimen m3_card_hovered_z 0x0 +int dimen m3_card_stroke_width 0x0 +int dimen m3_carousel_debug_keyline_width 0x0 +int dimen m3_carousel_extra_small_item_size 0x0 +int dimen m3_carousel_gone_size 0x0 +int dimen m3_carousel_small_item_default_corner_size 0x0 +int dimen m3_carousel_small_item_size_max 0x0 +int dimen m3_carousel_small_item_size_min 0x0 +int dimen m3_chip_checked_hovered_translation_z 0x0 +int dimen m3_chip_corner_size 0x0 +int dimen m3_chip_disabled_translation_z 0x0 +int dimen m3_chip_dragged_translation_z 0x0 +int dimen m3_chip_elevated_elevation 0x0 +int dimen m3_chip_hovered_translation_z 0x0 +int dimen m3_chip_icon_size 0x0 +int dimen m3_comp_assist_chip_container_height 0x0 +int dimen m3_comp_assist_chip_elevated_container_elevation 0x0 +int dimen m3_comp_assist_chip_flat_container_elevation 0x0 +int dimen m3_comp_assist_chip_flat_outline_width 0x0 +int dimen m3_comp_assist_chip_with_icon_icon_size 0x0 +int dimen m3_comp_badge_large_size 0x0 +int dimen m3_comp_badge_size 0x0 +int dimen m3_comp_bottom_app_bar_container_elevation 0x0 +int dimen m3_comp_bottom_app_bar_container_height 0x0 +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x0 +int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x0 +int dimen m3_comp_divider_thickness 0x0 +int dimen m3_comp_elevated_button_container_elevation 0x0 +int dimen m3_comp_elevated_button_disabled_container_elevation 0x0 +int dimen m3_comp_elevated_card_container_elevation 0x0 +int dimen m3_comp_elevated_card_icon_size 0x0 +int dimen m3_comp_extended_fab_primary_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_container_height 0x0 +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x0 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x0 +int dimen m3_comp_extended_fab_primary_icon_size 0x0 +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_container_elevation 0x0 +int dimen m3_comp_fab_primary_container_height 0x0 +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_hover_container_elevation 0x0 +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_icon_size 0x0 +int dimen m3_comp_fab_primary_large_container_height 0x0 +int dimen m3_comp_fab_primary_large_icon_size 0x0 +int dimen m3_comp_fab_primary_pressed_container_elevation 0x0 +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_small_container_height 0x0 +int dimen m3_comp_fab_primary_small_icon_size 0x0 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x0 +int dimen m3_comp_filled_button_container_elevation 0x0 +int dimen m3_comp_filled_button_with_icon_icon_size 0x0 +int dimen m3_comp_filled_card_container_elevation 0x0 +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_icon_size 0x0 +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x0 +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x0 +int dimen m3_comp_filter_chip_container_height 0x0 +int dimen m3_comp_filter_chip_elevated_container_elevation 0x0 +int dimen m3_comp_filter_chip_flat_container_elevation 0x0 +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x0 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x0 +int dimen m3_comp_input_chip_container_elevation 0x0 +int dimen m3_comp_input_chip_container_height 0x0 +int dimen m3_comp_input_chip_unselected_outline_width 0x0 +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x0 +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x0 +int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x0 +int dimen m3_comp_menu_container_elevation 0x0 +int dimen m3_comp_navigation_bar_active_indicator_height 0x0 +int dimen m3_comp_navigation_bar_active_indicator_width 0x0 +int dimen m3_comp_navigation_bar_container_elevation 0x0 +int dimen m3_comp_navigation_bar_container_height 0x0 +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x0 +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x0 +int dimen m3_comp_navigation_bar_icon_size 0x0 +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_container_width 0x0 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_icon_size 0x0 +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x0 +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x0 +int dimen m3_comp_navigation_rail_active_indicator_height 0x0 +int dimen m3_comp_navigation_rail_active_indicator_width 0x0 +int dimen m3_comp_navigation_rail_container_elevation 0x0 +int dimen m3_comp_navigation_rail_container_width 0x0 +int dimen m3_comp_navigation_rail_icon_size 0x0 +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x0 +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x0 +int dimen m3_comp_outlined_button_outline_width 0x0 +int dimen m3_comp_outlined_card_container_elevation 0x0 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x0 +int dimen m3_comp_outlined_card_icon_size 0x0 +int dimen m3_comp_outlined_card_outline_width 0x0 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x0 +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_focus_outline_width 0x0 +int dimen m3_comp_outlined_text_field_outline_width 0x0 +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x0 +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_divider_height 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x0 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x0 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x0 +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_search_bar_avatar_size 0x0 +int dimen m3_comp_search_bar_container_elevation 0x0 +int dimen m3_comp_search_bar_container_height 0x0 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x0 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x0 +int dimen m3_comp_search_view_container_elevation 0x0 +int dimen m3_comp_search_view_docked_header_container_height 0x0 +int dimen m3_comp_search_view_full_screen_header_container_height 0x0 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x0 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x0 +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x0 +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x0 +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x0 +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x0 +int dimen m3_comp_sheet_side_docked_container_width 0x0 +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x0 +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x0 +int dimen m3_comp_slider_disabled_active_track_opacity 0x0 +int dimen m3_comp_slider_disabled_handle_opacity 0x0 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x0 +int dimen m3_comp_slider_inactive_track_height 0x0 +int dimen m3_comp_snackbar_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_container_height 0x0 +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_flat_outline_width 0x0 +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x0 +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x0 +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x0 +int dimen m3_comp_switch_disabled_track_opacity 0x0 +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x0 +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x0 +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x0 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x0 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_switch_track_height 0x0 +int dimen m3_comp_switch_track_width 0x0 +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x0 +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x0 +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_text_button_focus_state_layer_opacity 0x0 +int dimen m3_comp_text_button_hover_state_layer_opacity 0x0 +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x0 +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x0 +int dimen m3_comp_time_picker_container_elevation 0x0 +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_period_selector_outline_width 0x0 +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x0 +int dimen m3_comp_top_app_bar_large_container_height 0x0 +int dimen m3_comp_top_app_bar_medium_container_height 0x0 +int dimen m3_comp_top_app_bar_small_container_elevation 0x0 +int dimen m3_comp_top_app_bar_small_container_height 0x0 +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x0 +int dimen m3_datepicker_elevation 0x0 +int dimen m3_divider_heavy_thickness 0x0 +int dimen m3_extended_fab_bottom_padding 0x0 +int dimen m3_extended_fab_end_padding 0x0 +int dimen m3_extended_fab_icon_padding 0x0 +int dimen m3_extended_fab_min_height 0x0 +int dimen m3_extended_fab_start_padding 0x0 +int dimen m3_extended_fab_top_padding 0x0 +int dimen m3_fab_border_width 0x0 +int dimen m3_fab_corner_size 0x0 +int dimen m3_fab_translation_z_hovered_focused 0x0 +int dimen m3_fab_translation_z_pressed 0x0 +int dimen m3_large_fab_max_image_size 0x0 +int dimen m3_large_fab_size 0x0 +int dimen m3_menu_elevation 0x0 +int dimen m3_navigation_drawer_layout_corner_size 0x0 +int dimen m3_navigation_item_horizontal_padding 0x0 +int dimen m3_navigation_item_icon_padding 0x0 +int dimen m3_navigation_item_shape_inset_bottom 0x0 +int dimen m3_navigation_item_shape_inset_end 0x0 +int dimen m3_navigation_item_shape_inset_start 0x0 +int dimen m3_navigation_item_shape_inset_top 0x0 +int dimen m3_navigation_item_vertical_padding 0x0 +int dimen m3_navigation_menu_divider_horizontal_padding 0x0 +int dimen m3_navigation_menu_headline_horizontal_padding 0x0 +int dimen m3_navigation_rail_default_width 0x0 +int dimen m3_navigation_rail_elevation 0x0 +int dimen m3_navigation_rail_icon_size 0x0 +int dimen m3_navigation_rail_item_active_indicator_height 0x0 +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x0 +int dimen m3_navigation_rail_item_active_indicator_width 0x0 +int dimen m3_navigation_rail_item_min_height 0x0 +int dimen m3_navigation_rail_item_padding_bottom 0x0 +int dimen m3_navigation_rail_item_padding_top 0x0 +int dimen m3_ripple_default_alpha 0x0 +int dimen m3_ripple_focused_alpha 0x0 +int dimen m3_ripple_hovered_alpha 0x0 +int dimen m3_ripple_pressed_alpha 0x0 +int dimen m3_ripple_selectable_pressed_alpha 0x0 +int dimen m3_searchbar_elevation 0x0 +int dimen m3_searchbar_height 0x0 +int dimen m3_searchbar_margin_horizontal 0x0 +int dimen m3_searchbar_margin_vertical 0x0 +int dimen m3_searchbar_outlined_stroke_width 0x0 +int dimen m3_searchbar_padding_start 0x0 +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x0 +int dimen m3_searchbar_text_size 0x0 +int dimen m3_searchview_divider_size 0x0 +int dimen m3_searchview_elevation 0x0 +int dimen m3_searchview_height 0x0 +int dimen m3_side_sheet_margin_detached 0x0 +int dimen m3_side_sheet_modal_elevation 0x0 +int dimen m3_side_sheet_standard_elevation 0x0 +int dimen m3_side_sheet_width 0x0 +int dimen m3_simple_item_color_hovered_alpha 0x0 +int dimen m3_simple_item_color_selected_alpha 0x0 +int dimen m3_slider_inactive_track_height 0x0 +int dimen m3_slider_thumb_elevation 0x0 +int dimen m3_small_fab_max_image_size 0x0 +int dimen m3_small_fab_size 0x0 +int dimen m3_snackbar_action_text_color_alpha 0x0 +int dimen m3_snackbar_margin 0x0 +int dimen m3_sys_elevation_level0 0x0 +int dimen m3_sys_elevation_level1 0x0 +int dimen m3_sys_elevation_level2 0x0 +int dimen m3_sys_elevation_level3 0x0 +int dimen m3_sys_elevation_level4 0x0 +int dimen m3_sys_elevation_level5 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_linear_control_x1 0x0 +int dimen m3_sys_motion_easing_linear_control_x2 0x0 +int dimen m3_sys_motion_easing_linear_control_y1 0x0 +int dimen m3_sys_motion_easing_linear_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x0 +int dimen m3_sys_state_dragged_state_layer_opacity 0x0 +int dimen m3_sys_state_focus_state_layer_opacity 0x0 +int dimen m3_sys_state_hover_state_layer_opacity 0x0 +int dimen m3_sys_state_pressed_state_layer_opacity 0x0 +int dimen m3_timepicker_display_stroke_width 0x0 +int dimen m3_timepicker_window_elevation 0x0 +int dimen m3_toolbar_text_size_title 0x0 +int dimen material_bottom_sheet_max_width 0x0 +int dimen material_clock_display_height 0x0 +int dimen material_clock_display_padding 0x0 +int dimen material_clock_display_width 0x0 +int dimen material_clock_face_margin_top 0x0 +int dimen material_clock_hand_center_dot_radius 0x0 +int dimen material_clock_hand_padding 0x0 +int dimen material_clock_hand_stroke_width 0x0 +int dimen material_clock_number_text_size 0x0 +int dimen material_clock_period_toggle_height 0x0 +int dimen material_clock_period_toggle_horizontal_gap 0x0 +int dimen material_clock_period_toggle_vertical_gap 0x0 +int dimen material_clock_period_toggle_width 0x0 +int dimen material_clock_size 0x0 +int dimen material_cursor_inset 0x0 +int dimen material_cursor_width 0x0 +int dimen material_divider_thickness 0x0 +int dimen material_emphasis_disabled 0x0 +int dimen material_emphasis_disabled_background 0x0 +int dimen material_emphasis_high_type 0x0 +int dimen material_emphasis_medium 0x0 +int dimen material_filled_edittext_font_1_3_padding_bottom 0x0 +int dimen material_filled_edittext_font_1_3_padding_top 0x0 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x0 +int dimen material_filled_edittext_font_2_0_padding_top 0x0 +int dimen material_font_1_3_box_collapsed_padding_top 0x0 +int dimen material_font_2_0_box_collapsed_padding_top 0x0 +int dimen material_helper_text_default_padding_top 0x0 +int dimen material_helper_text_font_1_3_padding_horizontal 0x0 +int dimen material_helper_text_font_1_3_padding_top 0x0 +int dimen material_input_text_to_prefix_suffix_padding 0x0 +int dimen material_textinput_default_width 0x0 +int dimen material_textinput_max_width 0x0 +int dimen material_textinput_min_width 0x0 +int dimen material_time_picker_minimum_screen_height 0x0 +int dimen material_time_picker_minimum_screen_width 0x0 +int dimen material_timepicker_dialog_buttons_margin_top 0x0 +int dimen mtrl_alert_dialog_background_inset_bottom 0x0 +int dimen mtrl_alert_dialog_background_inset_end 0x0 +int dimen mtrl_alert_dialog_background_inset_start 0x0 +int dimen mtrl_alert_dialog_background_inset_top 0x0 +int dimen mtrl_alert_dialog_picker_background_inset 0x0 +int dimen mtrl_badge_horizontal_edge_offset 0x0 +int dimen mtrl_badge_long_text_horizontal_padding 0x0 +int dimen mtrl_badge_size 0x0 +int dimen mtrl_badge_text_horizontal_edge_offset 0x0 +int dimen mtrl_badge_text_size 0x0 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x0 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x0 +int dimen mtrl_badge_with_text_size 0x0 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x0 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x0 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x0 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x0 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x0 +int dimen mtrl_bottomappbar_height 0x0 +int dimen mtrl_btn_corner_radius 0x0 +int dimen mtrl_btn_dialog_btn_min_width 0x0 +int dimen mtrl_btn_disabled_elevation 0x0 +int dimen mtrl_btn_disabled_z 0x0 +int dimen mtrl_btn_elevation 0x0 +int dimen mtrl_btn_focused_z 0x0 +int dimen mtrl_btn_hovered_z 0x0 +int dimen mtrl_btn_icon_btn_padding_left 0x0 +int dimen mtrl_btn_icon_padding 0x0 +int dimen mtrl_btn_inset 0x0 +int dimen mtrl_btn_letter_spacing 0x0 +int dimen mtrl_btn_max_width 0x0 +int dimen mtrl_btn_padding_bottom 0x0 +int dimen mtrl_btn_padding_left 0x0 +int dimen mtrl_btn_padding_right 0x0 +int dimen mtrl_btn_padding_top 0x0 +int dimen mtrl_btn_pressed_z 0x0 +int dimen mtrl_btn_snackbar_margin_horizontal 0x0 +int dimen mtrl_btn_stroke_size 0x0 +int dimen mtrl_btn_text_btn_icon_padding 0x0 +int dimen mtrl_btn_text_btn_padding_left 0x0 +int dimen mtrl_btn_text_btn_padding_right 0x0 +int dimen mtrl_btn_text_size 0x0 +int dimen mtrl_btn_z 0x0 +int dimen mtrl_calendar_action_confirm_button_min_width 0x0 +int dimen mtrl_calendar_action_height 0x0 +int dimen mtrl_calendar_action_padding 0x0 +int dimen mtrl_calendar_bottom_padding 0x0 +int dimen mtrl_calendar_content_padding 0x0 +int dimen mtrl_calendar_day_corner 0x0 +int dimen mtrl_calendar_day_height 0x0 +int dimen mtrl_calendar_day_horizontal_padding 0x0 +int dimen mtrl_calendar_day_today_stroke 0x0 +int dimen mtrl_calendar_day_vertical_padding 0x0 +int dimen mtrl_calendar_day_width 0x0 +int dimen mtrl_calendar_days_of_week_height 0x0 +int dimen mtrl_calendar_dialog_background_inset 0x0 +int dimen mtrl_calendar_header_content_padding 0x0 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x0 +int dimen mtrl_calendar_header_divider_thickness 0x0 +int dimen mtrl_calendar_header_height 0x0 +int dimen mtrl_calendar_header_height_fullscreen 0x0 +int dimen mtrl_calendar_header_selection_line_height 0x0 +int dimen mtrl_calendar_header_text_padding 0x0 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x0 +int dimen mtrl_calendar_header_toggle_margin_top 0x0 +int dimen mtrl_calendar_landscape_header_width 0x0 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x0 +int dimen mtrl_calendar_month_horizontal_padding 0x0 +int dimen mtrl_calendar_month_vertical_padding 0x0 +int dimen mtrl_calendar_navigation_bottom_padding 0x0 +int dimen mtrl_calendar_navigation_height 0x0 +int dimen mtrl_calendar_navigation_top_padding 0x0 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x0 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x0 +int dimen mtrl_calendar_text_input_padding_top 0x0 +int dimen mtrl_calendar_title_baseline_to_top 0x0 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x0 +int dimen mtrl_calendar_year_corner 0x0 +int dimen mtrl_calendar_year_height 0x0 +int dimen mtrl_calendar_year_horizontal_padding 0x0 +int dimen mtrl_calendar_year_vertical_padding 0x0 +int dimen mtrl_calendar_year_width 0x0 +int dimen mtrl_card_checked_icon_margin 0x0 +int dimen mtrl_card_checked_icon_size 0x0 +int dimen mtrl_card_corner_radius 0x0 +int dimen mtrl_card_dragged_z 0x0 +int dimen mtrl_card_elevation 0x0 +int dimen mtrl_card_spacing 0x0 +int dimen mtrl_chip_pressed_translation_z 0x0 +int dimen mtrl_chip_text_size 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x0 +int dimen mtrl_extended_fab_bottom_padding 0x0 +int dimen mtrl_extended_fab_disabled_elevation 0x0 +int dimen mtrl_extended_fab_disabled_translation_z 0x0 +int dimen mtrl_extended_fab_elevation 0x0 +int dimen mtrl_extended_fab_end_padding 0x0 +int dimen mtrl_extended_fab_end_padding_icon 0x0 +int dimen mtrl_extended_fab_icon_size 0x0 +int dimen mtrl_extended_fab_icon_text_spacing 0x0 +int dimen mtrl_extended_fab_min_height 0x0 +int dimen mtrl_extended_fab_min_width 0x0 +int dimen mtrl_extended_fab_start_padding 0x0 +int dimen mtrl_extended_fab_start_padding_icon 0x0 +int dimen mtrl_extended_fab_top_padding 0x0 +int dimen mtrl_extended_fab_translation_z_base 0x0 +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x0 +int dimen mtrl_extended_fab_translation_z_pressed 0x0 +int dimen mtrl_fab_elevation 0x0 +int dimen mtrl_fab_min_touch_target 0x0 +int dimen mtrl_fab_translation_z_hovered_focused 0x0 +int dimen mtrl_fab_translation_z_pressed 0x0 +int dimen mtrl_high_ripple_default_alpha 0x0 +int dimen mtrl_high_ripple_focused_alpha 0x0 +int dimen mtrl_high_ripple_hovered_alpha 0x0 +int dimen mtrl_high_ripple_pressed_alpha 0x0 +int dimen mtrl_low_ripple_default_alpha 0x0 +int dimen mtrl_low_ripple_focused_alpha 0x0 +int dimen mtrl_low_ripple_hovered_alpha 0x0 +int dimen mtrl_low_ripple_pressed_alpha 0x0 +int dimen mtrl_min_touch_target_size 0x0 +int dimen mtrl_navigation_bar_item_default_icon_size 0x0 +int dimen mtrl_navigation_bar_item_default_margin 0x0 +int dimen mtrl_navigation_elevation 0x0 +int dimen mtrl_navigation_item_horizontal_padding 0x0 +int dimen mtrl_navigation_item_icon_padding 0x0 +int dimen mtrl_navigation_item_icon_size 0x0 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x0 +int dimen mtrl_navigation_item_shape_vertical_margin 0x0 +int dimen mtrl_navigation_rail_active_text_size 0x0 +int dimen mtrl_navigation_rail_compact_width 0x0 +int dimen mtrl_navigation_rail_default_width 0x0 +int dimen mtrl_navigation_rail_elevation 0x0 +int dimen mtrl_navigation_rail_icon_margin 0x0 +int dimen mtrl_navigation_rail_icon_size 0x0 +int dimen mtrl_navigation_rail_margin 0x0 +int dimen mtrl_navigation_rail_text_bottom_margin 0x0 +int dimen mtrl_navigation_rail_text_size 0x0 +int dimen mtrl_progress_circular_inset 0x0 +int dimen mtrl_progress_circular_inset_extra_small 0x0 +int dimen mtrl_progress_circular_inset_medium 0x0 +int dimen mtrl_progress_circular_inset_small 0x0 +int dimen mtrl_progress_circular_radius 0x0 +int dimen mtrl_progress_circular_size 0x0 +int dimen mtrl_progress_circular_size_extra_small 0x0 +int dimen mtrl_progress_circular_size_medium 0x0 +int dimen mtrl_progress_circular_size_small 0x0 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x0 +int dimen mtrl_progress_circular_track_thickness_medium 0x0 +int dimen mtrl_progress_circular_track_thickness_small 0x0 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x0 +int dimen mtrl_progress_track_thickness 0x0 +int dimen mtrl_shape_corner_size_large_component 0x0 +int dimen mtrl_shape_corner_size_medium_component 0x0 +int dimen mtrl_shape_corner_size_small_component 0x0 +int dimen mtrl_slider_halo_radius 0x0 +int dimen mtrl_slider_label_padding 0x0 +int dimen mtrl_slider_label_radius 0x0 +int dimen mtrl_slider_label_square_side 0x0 +int dimen mtrl_slider_thumb_elevation 0x0 +int dimen mtrl_slider_thumb_radius 0x0 +int dimen mtrl_slider_tick_radius 0x0 +int dimen mtrl_slider_track_height 0x0 +int dimen mtrl_slider_track_side_padding 0x0 +int dimen mtrl_slider_widget_height 0x0 +int dimen mtrl_snackbar_action_text_color_alpha 0x0 +int dimen mtrl_snackbar_background_corner_radius 0x0 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x0 +int dimen mtrl_snackbar_margin 0x0 +int dimen mtrl_snackbar_message_margin_horizontal 0x0 +int dimen mtrl_snackbar_padding_horizontal 0x0 +int dimen mtrl_switch_text_padding 0x0 +int dimen mtrl_switch_thumb_elevation 0x0 +int dimen mtrl_switch_thumb_size 0x0 +int dimen mtrl_switch_track_height 0x0 +int dimen mtrl_switch_track_width 0x0 +int dimen mtrl_textinput_box_corner_radius_medium 0x0 +int dimen mtrl_textinput_box_corner_radius_small 0x0 +int dimen mtrl_textinput_box_label_cutout_padding 0x0 +int dimen mtrl_textinput_box_stroke_width_default 0x0 +int dimen mtrl_textinput_box_stroke_width_focused 0x0 +int dimen mtrl_textinput_counter_margin_start 0x0 +int dimen mtrl_textinput_end_icon_margin_start 0x0 +int dimen mtrl_textinput_outline_box_expanded_padding 0x0 +int dimen mtrl_textinput_start_icon_margin_end 0x0 +int dimen mtrl_toolbar_default_height 0x0 +int dimen mtrl_tooltip_arrowSize 0x0 +int dimen mtrl_tooltip_cornerSize 0x0 +int dimen mtrl_tooltip_minHeight 0x0 +int dimen mtrl_tooltip_minWidth 0x0 +int dimen mtrl_tooltip_padding 0x0 +int dimen mtrl_transition_shared_axis_slide_distance 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_material_anim 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_material_anim 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_star_black_16dp 0x0 +int drawable abc_ic_star_black_36dp 0x0 +int drawable abc_ic_star_black_48dp 0x0 +int drawable abc_ic_star_half_black_16dp 0x0 +int drawable abc_ic_star_half_black_36dp 0x0 +int drawable abc_ic_star_half_black_48dp 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_star_black_48dp 0x0 +int drawable abc_star_half_black_48dp 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl 0x0 +int drawable abc_text_select_handle_left_mtrl_dark 0x0 +int drawable abc_text_select_handle_left_mtrl_light 0x0 +int drawable abc_text_select_handle_middle_mtrl 0x0 +int drawable abc_text_select_handle_middle_mtrl_dark 0x0 +int drawable abc_text_select_handle_middle_mtrl_light 0x0 +int drawable abc_text_select_handle_right_mtrl 0x0 +int drawable abc_text_select_handle_right_mtrl_dark 0x0 +int drawable abc_text_select_handle_right_mtrl_light 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable abc_vector_test 0x0 +int drawable avd_hide_password 0x0 +int drawable avd_show_password 0x0 +int drawable btn_checkbox_checked_mtrl 0x0 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 +int drawable btn_checkbox_unchecked_mtrl 0x0 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 +int drawable btn_radio_off_mtrl 0x0 +int drawable btn_radio_off_to_on_mtrl_animation 0x0 +int drawable btn_radio_on_mtrl 0x0 +int drawable btn_radio_on_to_off_mtrl_animation 0x0 +int drawable design_fab_background 0x0 +int drawable design_ic_visibility 0x0 +int drawable design_ic_visibility_off 0x0 +int drawable design_password_eye 0x0 +int drawable design_snackbar_background 0x0 +int drawable ic_arrow_back_black_24 0x0 +int drawable ic_clear_black_24 0x0 +int drawable ic_clock_black_24dp 0x0 +int drawable ic_keyboard_black_24dp 0x0 +int drawable ic_m3_chip_check 0x0 +int drawable ic_m3_chip_checked_circle 0x0 +int drawable ic_m3_chip_close 0x0 +int drawable ic_mtrl_checked_circle 0x0 +int drawable ic_mtrl_chip_checked_black 0x0 +int drawable ic_mtrl_chip_checked_circle 0x0 +int drawable ic_mtrl_chip_close_circle 0x0 +int drawable ic_search_black_24 0x0 +int drawable m3_appbar_background 0x0 +int drawable m3_avd_hide_password 0x0 +int drawable m3_avd_show_password 0x0 +int drawable m3_password_eye 0x0 +int drawable m3_popupmenu_background_overlay 0x0 +int drawable m3_radiobutton_ripple 0x0 +int drawable m3_selection_control_ripple 0x0 +int drawable m3_tabs_background 0x0 +int drawable m3_tabs_line_indicator 0x0 +int drawable m3_tabs_rounded_line_indicator 0x0 +int drawable m3_tabs_transparent_background 0x0 +int drawable material_cursor_drawable 0x0 +int drawable material_ic_calendar_black_24dp 0x0 +int drawable material_ic_clear_black_24dp 0x0 +int drawable material_ic_edit_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_left_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x0 +int drawable material_ic_menu_arrow_down_black_24dp 0x0 +int drawable material_ic_menu_arrow_up_black_24dp 0x0 +int drawable mtrl_bottomsheet_drag_handle 0x0 +int drawable mtrl_checkbox_button 0x0 +int drawable mtrl_checkbox_button_checked_unchecked 0x0 +int drawable mtrl_checkbox_button_icon 0x0 +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x0 +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x0 +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x0 +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x0 +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x0 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x0 +int drawable mtrl_checkbox_button_unchecked_checked 0x0 +int drawable mtrl_dialog_background 0x0 +int drawable mtrl_dropdown_arrow 0x0 +int drawable mtrl_ic_arrow_drop_down 0x0 +int drawable mtrl_ic_arrow_drop_up 0x0 +int drawable mtrl_ic_cancel 0x0 +int drawable mtrl_ic_check_mark 0x0 +int drawable mtrl_ic_checkbox_checked 0x0 +int drawable mtrl_ic_checkbox_unchecked 0x0 +int drawable mtrl_ic_error 0x0 +int drawable mtrl_ic_indeterminate 0x0 +int drawable mtrl_navigation_bar_item_background 0x0 +int drawable mtrl_popupmenu_background 0x0 +int drawable mtrl_popupmenu_background_overlay 0x0 +int drawable mtrl_switch_thumb 0x0 +int drawable mtrl_switch_thumb_checked 0x0 +int drawable mtrl_switch_thumb_checked_pressed 0x0 +int drawable mtrl_switch_thumb_checked_unchecked 0x0 +int drawable mtrl_switch_thumb_pressed 0x0 +int drawable mtrl_switch_thumb_pressed_checked 0x0 +int drawable mtrl_switch_thumb_pressed_unchecked 0x0 +int drawable mtrl_switch_thumb_unchecked 0x0 +int drawable mtrl_switch_thumb_unchecked_checked 0x0 +int drawable mtrl_switch_thumb_unchecked_pressed 0x0 +int drawable mtrl_switch_track 0x0 +int drawable mtrl_switch_track_decoration 0x0 +int drawable mtrl_tabs_default_indicator 0x0 +int drawable navigation_empty_icon 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int drawable test_level_drawable 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id BOTTOM_END 0x0 +int id BOTTOM_START 0x0 +int id NO_DEBUG 0x0 +int id SHOW_ALL 0x0 +int id SHOW_PATH 0x0 +int id SHOW_PROGRESS 0x0 +int id TOP_END 0x0 +int id TOP_START 0x0 +int id accelerate 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_container 0x0 +int id action_context_bar 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id action_text 0x0 +int id actions 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id alertTitle 0x0 +int id aligned 0x0 +int id animateToEnd 0x0 +int id animateToStart 0x0 +int id arc 0x0 +int id asConfigured 0x0 +int id async 0x0 +int id auto 0x0 +int id autoComplete 0x0 +int id autoCompleteToEnd 0x0 +int id autoCompleteToStart 0x0 +int id barrier 0x0 +int id baseline 0x0 +int id blocking 0x0 +int id bottom 0x0 +int id bounce 0x0 +int id buttonPanel 0x0 +int id cancel_button 0x0 +int id center 0x0 +int id centerCrop 0x0 +int id centerInside 0x0 +int id chain 0x0 +int id checkbox 0x0 +int id checked 0x0 +int id chronometer 0x0 +int id circle_center 0x0 +int id clear_text 0x0 +int id clockwise 0x0 +int id compress 0x0 +int id confirm_button 0x0 +int id container 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id contiguous 0x0 +int id coordinator 0x0 +int id cos 0x0 +int id counterclockwise 0x0 +int id cradle 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id cut 0x0 +int id date_picker_actions 0x0 +int id decelerate 0x0 +int id decelerateAndComplete 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id deltaRelative 0x0 +int id design_bottom_sheet 0x0 +int id design_menu_item_action_area 0x0 +int id design_menu_item_action_area_stub 0x0 +int id design_menu_item_text 0x0 +int id design_navigation_view 0x0 +int id dialog_button 0x0 +int id disjoint 0x0 +int id dragDown 0x0 +int id dragEnd 0x0 +int id dragLeft 0x0 +int id dragRight 0x0 +int id dragStart 0x0 +int id dragUp 0x0 +int id dropdown_menu 0x0 +int id easeIn 0x0 +int id easeInOut 0x0 +int id easeOut 0x0 +int id edge 0x0 +int id edit_query 0x0 +int id elastic 0x0 +int id embed 0x0 +int id end 0x0 +int id endToStart 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id fade 0x0 +int id fill 0x0 +int id filled 0x0 +int id fitCenter 0x0 +int id fitEnd 0x0 +int id fitStart 0x0 +int id fitXY 0x0 +int id fixed 0x0 +int id flip 0x0 +int id floating 0x0 +int id forever 0x0 +int id fragment_container_view_tag 0x0 +int id fullscreen_header 0x0 +int id ghost_view 0x0 +int id ghost_view_holder 0x0 +int id gone 0x0 +int id group_divider 0x0 +int id header_title 0x0 +int id home 0x0 +int id honorRequest 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id ignore 0x0 +int id ignoreRequest 0x0 +int id image 0x0 +int id indeterminate 0x0 +int id info 0x0 +int id invisible 0x0 +int id inward 0x0 +int id italic 0x0 +int id item_touch_helper_previous_elevation 0x0 +int id jumpToEnd 0x0 +int id jumpToStart 0x0 +int id labeled 0x0 +int id layout 0x0 +int id left 0x0 +int id leftToRight 0x0 +int id legacy 0x0 +int id line1 0x0 +int id line3 0x0 +int id linear 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id m3_side_sheet 0x0 +int id marquee 0x0 +int id masked 0x0 +int id match_parent 0x0 +int id material_clock_display 0x0 +int id material_clock_display_and_toggle 0x0 +int id material_clock_face 0x0 +int id material_clock_hand 0x0 +int id material_clock_level 0x0 +int id material_clock_period_am_button 0x0 +int id material_clock_period_pm_button 0x0 +int id material_clock_period_toggle 0x0 +int id material_hour_text_input 0x0 +int id material_hour_tv 0x0 +int id material_label 0x0 +int id material_minute_text_input 0x0 +int id material_minute_tv 0x0 +int id material_textinput_timepicker 0x0 +int id material_timepicker_cancel_button 0x0 +int id material_timepicker_container 0x0 +int id material_timepicker_mode_button 0x0 +int id material_timepicker_ok_button 0x0 +int id material_timepicker_view 0x0 +int id material_value_index 0x0 +int id matrix 0x0 +int id message 0x0 +int id middle 0x0 +int id mini 0x0 +int id month_grid 0x0 +int id month_navigation_bar 0x0 +int id month_navigation_fragment_toggle 0x0 +int id month_navigation_next 0x0 +int id month_navigation_previous 0x0 +int id month_title 0x0 +int id motion_base 0x0 +int id mtrl_anchor_parent 0x0 +int id mtrl_calendar_day_selector_frame 0x0 +int id mtrl_calendar_days_of_week 0x0 +int id mtrl_calendar_frame 0x0 +int id mtrl_calendar_main_pane 0x0 +int id mtrl_calendar_months 0x0 +int id mtrl_calendar_selection_frame 0x0 +int id mtrl_calendar_text_input_frame 0x0 +int id mtrl_calendar_year_selector_frame 0x0 +int id mtrl_card_checked_layer_id 0x0 +int id mtrl_child_content_container 0x0 +int id mtrl_internal_children_alpha_tag 0x0 +int id mtrl_motion_snapshot_view 0x0 +int id mtrl_picker_fullscreen 0x0 +int id mtrl_picker_header 0x0 +int id mtrl_picker_header_selection_text 0x0 +int id mtrl_picker_header_title_and_selection 0x0 +int id mtrl_picker_header_toggle 0x0 +int id mtrl_picker_text_input_date 0x0 +int id mtrl_picker_text_input_range_end 0x0 +int id mtrl_picker_text_input_range_start 0x0 +int id mtrl_picker_title_text 0x0 +int id mtrl_view_tag_bottom_padding 0x0 +int id multiply 0x0 +int id navigation_bar_item_active_indicator_view 0x0 +int id navigation_bar_item_icon_container 0x0 +int id navigation_bar_item_icon_view 0x0 +int id navigation_bar_item_labels_group 0x0 +int id navigation_bar_item_large_label_view 0x0 +int id navigation_bar_item_small_label_view 0x0 +int id navigation_header_container 0x0 +int id none 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id off 0x0 +int id on 0x0 +int id outline 0x0 +int id outward 0x0 +int id packed 0x0 +int id parallax 0x0 +int id parent 0x0 +int id parentPanel 0x0 +int id parentRelative 0x0 +int id parent_matrix 0x0 +int id password_toggle 0x0 +int id path 0x0 +int id pathRelative 0x0 +int id percent 0x0 +int id pin 0x0 +int id position 0x0 +int id postLayout 0x0 +int id pressed 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id rectangles 0x0 +int id reverseSawtooth 0x0 +int id right 0x0 +int id rightToLeft 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id rounded 0x0 +int id row_index_key 0x0 +int id save_non_transition_alpha 0x0 +int id save_overlay_view 0x0 +int id sawtooth 0x0 +int id scale 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id scrollable 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_bar_text_view 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_view_background 0x0 +int id search_view_clear_button 0x0 +int id search_view_content_container 0x0 +int id search_view_divider 0x0 +int id search_view_dummy_toolbar 0x0 +int id search_view_edit_text 0x0 +int id search_view_header_container 0x0 +int id search_view_root 0x0 +int id search_view_scrim 0x0 +int id search_view_search_prefix 0x0 +int id search_view_status_bar_spacer 0x0 +int id search_view_toolbar 0x0 +int id search_view_toolbar_container 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id selected 0x0 +int id selection_type 0x0 +int id shortcut 0x0 +int id sin 0x0 +int id slide 0x0 +int id snackbar_action 0x0 +int id snackbar_text 0x0 +int id spacer 0x0 +int id special_effects_controller_view_tag 0x0 +int id spline 0x0 +int id split_action_bar 0x0 +int id spread 0x0 +int id spread_inside 0x0 +int id square 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id standard 0x0 +int id start 0x0 +int id startHorizontal 0x0 +int id startToEnd 0x0 +int id startVertical 0x0 +int id staticLayout 0x0 +int id staticPostLayout 0x0 +int id stop 0x0 +int id stretch 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 0x0 +int id text 0x0 +int id text2 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id text_input_end_icon 0x0 +int id text_input_error_icon 0x0 +int id text_input_start_icon 0x0 +int id textinput_counter 0x0 +int id textinput_error 0x0 +int id textinput_helper_text 0x0 +int id textinput_placeholder 0x0 +int id textinput_prefix_text 0x0 +int id textinput_suffix_text 0x0 +int id time 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id top 0x0 +int id topPanel 0x0 +int id touch_outside 0x0 +int id transition_current_scene 0x0 +int id transition_layout_save 0x0 +int id transition_position 0x0 +int id transition_scene_layoutid_cache 0x0 +int id transition_transform 0x0 +int id triangle 0x0 +int id unchecked 0x0 +int id uniform 0x0 +int id unlabeled 0x0 +int id up 0x0 +int id view_offset_helper 0x0 +int id view_tree_lifecycle_owner 0x0 +int id view_tree_on_back_pressed_dispatcher_owner 0x0 +int id view_tree_saved_state_registry_owner 0x0 +int id view_tree_view_model_store_owner 0x0 +int id visible 0x0 +int id visible_removing_fragment_view_tag 0x0 +int id with_icon 0x0 +int id withinBounds 0x0 +int id wrap 0x0 +int id wrap_content 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer app_bar_elevation_anim_duration 0x0 +int integer bottom_sheet_slide_duration 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int integer design_snackbar_text_max_lines 0x0 +int integer design_tab_indicator_anim_duration_ms 0x0 +int integer hide_password_duration 0x0 +int integer m3_btn_anim_delay_ms 0x0 +int integer m3_btn_anim_duration_ms 0x0 +int integer m3_card_anim_delay_ms 0x0 +int integer m3_card_anim_duration_ms 0x0 +int integer m3_chip_anim_duration 0x0 +int integer m3_sys_motion_duration_extra_long1 0x0 +int integer m3_sys_motion_duration_extra_long2 0x0 +int integer m3_sys_motion_duration_extra_long3 0x0 +int integer m3_sys_motion_duration_extra_long4 0x0 +int integer m3_sys_motion_duration_long1 0x0 +int integer m3_sys_motion_duration_long2 0x0 +int integer m3_sys_motion_duration_long3 0x0 +int integer m3_sys_motion_duration_long4 0x0 +int integer m3_sys_motion_duration_medium1 0x0 +int integer m3_sys_motion_duration_medium2 0x0 +int integer m3_sys_motion_duration_medium3 0x0 +int integer m3_sys_motion_duration_medium4 0x0 +int integer m3_sys_motion_duration_short1 0x0 +int integer m3_sys_motion_duration_short2 0x0 +int integer m3_sys_motion_duration_short3 0x0 +int integer m3_sys_motion_duration_short4 0x0 +int integer m3_sys_motion_path 0x0 +int integer m3_sys_shape_corner_extra_large_corner_family 0x0 +int integer m3_sys_shape_corner_extra_small_corner_family 0x0 +int integer m3_sys_shape_corner_full_corner_family 0x0 +int integer m3_sys_shape_corner_large_corner_family 0x0 +int integer m3_sys_shape_corner_medium_corner_family 0x0 +int integer m3_sys_shape_corner_small_corner_family 0x0 +int integer material_motion_duration_long_1 0x0 +int integer material_motion_duration_long_2 0x0 +int integer material_motion_duration_medium_1 0x0 +int integer material_motion_duration_medium_2 0x0 +int integer material_motion_duration_short_1 0x0 +int integer material_motion_duration_short_2 0x0 +int integer material_motion_path 0x0 +int integer mtrl_badge_max_character_count 0x0 +int integer mtrl_btn_anim_delay_ms 0x0 +int integer mtrl_btn_anim_duration_ms 0x0 +int integer mtrl_calendar_header_orientation 0x0 +int integer mtrl_calendar_selection_text_lines 0x0 +int integer mtrl_calendar_year_selector_span 0x0 +int integer mtrl_card_anim_delay_ms 0x0 +int integer mtrl_card_anim_duration_ms 0x0 +int integer mtrl_chip_anim_duration 0x0 +int integer mtrl_switch_thumb_motion_duration 0x0 +int integer mtrl_switch_thumb_post_morphing_duration 0x0 +int integer mtrl_switch_thumb_pre_morphing_duration 0x0 +int integer mtrl_switch_thumb_pressed_duration 0x0 +int integer mtrl_switch_thumb_viewport_center_coordinate 0x0 +int integer mtrl_switch_thumb_viewport_size 0x0 +int integer mtrl_switch_track_viewport_height 0x0 +int integer mtrl_switch_track_viewport_width 0x0 +int integer mtrl_tab_indicator_anim_duration_ms 0x0 +int integer mtrl_view_gone 0x0 +int integer mtrl_view_invisible 0x0 +int integer mtrl_view_visible 0x0 +int integer show_password_duration 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 +int interpolator fast_out_slow_in 0x0 +int interpolator m3_sys_motion_easing_emphasized 0x0 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x0 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x0 +int interpolator m3_sys_motion_easing_linear 0x0 +int interpolator m3_sys_motion_easing_standard 0x0 +int interpolator m3_sys_motion_easing_standard_accelerate 0x0 +int interpolator m3_sys_motion_easing_standard_decelerate 0x0 +int interpolator mtrl_fast_out_linear_in 0x0 +int interpolator mtrl_fast_out_slow_in 0x0 +int interpolator mtrl_linear 0x0 +int interpolator mtrl_linear_out_slow_in 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout custom_dialog 0x0 +int layout design_bottom_navigation_item 0x0 +int layout design_bottom_sheet_dialog 0x0 +int layout design_layout_snackbar 0x0 +int layout design_layout_snackbar_include 0x0 +int layout design_layout_tab_icon 0x0 +int layout design_layout_tab_text 0x0 +int layout design_menu_item_action_area 0x0 +int layout design_navigation_item 0x0 +int layout design_navigation_item_header 0x0 +int layout design_navigation_item_separator 0x0 +int layout design_navigation_item_subheader 0x0 +int layout design_navigation_menu 0x0 +int layout design_navigation_menu_item 0x0 +int layout design_text_input_end_icon 0x0 +int layout design_text_input_start_icon 0x0 +int layout m3_alert_dialog 0x0 +int layout m3_alert_dialog_actions 0x0 +int layout m3_alert_dialog_title 0x0 +int layout m3_auto_complete_simple_item 0x0 +int layout m3_side_sheet_dialog 0x0 +int layout material_chip_input_combo 0x0 +int layout material_clock_display 0x0 +int layout material_clock_display_divider 0x0 +int layout material_clock_period_toggle 0x0 +int layout material_clock_period_toggle_land 0x0 +int layout material_clockface_textview 0x0 +int layout material_clockface_view 0x0 +int layout material_radial_view_group 0x0 +int layout material_textinput_timepicker 0x0 +int layout material_time_chip 0x0 +int layout material_time_input 0x0 +int layout material_timepicker 0x0 +int layout material_timepicker_dialog 0x0 +int layout material_timepicker_textinput_display 0x0 +int layout mtrl_alert_dialog 0x0 +int layout mtrl_alert_dialog_actions 0x0 +int layout mtrl_alert_dialog_title 0x0 +int layout mtrl_alert_select_dialog_item 0x0 +int layout mtrl_alert_select_dialog_multichoice 0x0 +int layout mtrl_alert_select_dialog_singlechoice 0x0 +int layout mtrl_auto_complete_simple_item 0x0 +int layout mtrl_calendar_day 0x0 +int layout mtrl_calendar_day_of_week 0x0 +int layout mtrl_calendar_days_of_week 0x0 +int layout mtrl_calendar_horizontal 0x0 +int layout mtrl_calendar_month 0x0 +int layout mtrl_calendar_month_labeled 0x0 +int layout mtrl_calendar_month_navigation 0x0 +int layout mtrl_calendar_months 0x0 +int layout mtrl_calendar_vertical 0x0 +int layout mtrl_calendar_year 0x0 +int layout mtrl_layout_snackbar 0x0 +int layout mtrl_layout_snackbar_include 0x0 +int layout mtrl_navigation_rail_item 0x0 +int layout mtrl_picker_actions 0x0 +int layout mtrl_picker_dialog 0x0 +int layout mtrl_picker_fullscreen 0x0 +int layout mtrl_picker_header_dialog 0x0 +int layout mtrl_picker_header_fullscreen 0x0 +int layout mtrl_picker_header_selection_text 0x0 +int layout mtrl_picker_header_title_text 0x0 +int layout mtrl_picker_header_toggle 0x0 +int layout mtrl_picker_text_input_date 0x0 +int layout mtrl_picker_text_input_date_range 0x0 +int layout mtrl_search_bar 0x0 +int layout mtrl_search_view 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int plurals mtrl_badge_content_description 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string appbar_scrolling_view_behavior 0x0 +int string bottom_sheet_behavior 0x0 +int string bottomsheet_action_collapse 0x0 +int string bottomsheet_action_expand 0x0 +int string bottomsheet_action_expand_halfway 0x0 +int string bottomsheet_drag_handle_clicked 0x0 +int string bottomsheet_drag_handle_content_description 0x0 +int string character_counter_content_description 0x0 +int string character_counter_overflowed_content_description 0x0 +int string character_counter_pattern 0x0 +int string clear_text_end_icon_content_description 0x0 +int string error_a11y_label 0x0 +int string error_icon_content_description 0x0 +int string exposed_dropdown_menu_content_description 0x0 +int string fab_transformation_scrim_behavior 0x0 +int string fab_transformation_sheet_behavior 0x0 +int string hide_bottom_view_on_scroll_behavior 0x0 +int string icon_content_description 0x0 +int string item_view_role_description 0x0 +int string m3_ref_typeface_brand_medium 0x0 +int string m3_ref_typeface_brand_regular 0x0 +int string m3_ref_typeface_plain_medium 0x0 +int string m3_ref_typeface_plain_regular 0x0 +int string m3_sys_motion_easing_emphasized 0x0 +int string m3_sys_motion_easing_emphasized_accelerate 0x0 +int string m3_sys_motion_easing_emphasized_decelerate 0x0 +int string m3_sys_motion_easing_emphasized_path_data 0x0 +int string m3_sys_motion_easing_legacy 0x0 +int string m3_sys_motion_easing_legacy_accelerate 0x0 +int string m3_sys_motion_easing_legacy_decelerate 0x0 +int string m3_sys_motion_easing_linear 0x0 +int string m3_sys_motion_easing_standard 0x0 +int string m3_sys_motion_easing_standard_accelerate 0x0 +int string m3_sys_motion_easing_standard_decelerate 0x0 +int string material_clock_display_divider 0x0 +int string material_clock_toggle_content_description 0x0 +int string material_hour_24h_suffix 0x0 +int string material_hour_selection 0x0 +int string material_hour_suffix 0x0 +int string material_minute_selection 0x0 +int string material_minute_suffix 0x0 +int string material_motion_easing_accelerated 0x0 +int string material_motion_easing_decelerated 0x0 +int string material_motion_easing_emphasized 0x0 +int string material_motion_easing_linear 0x0 +int string material_motion_easing_standard 0x0 +int string material_slider_range_end 0x0 +int string material_slider_range_start 0x0 +int string material_slider_value 0x0 +int string material_timepicker_am 0x0 +int string material_timepicker_clock_mode_description 0x0 +int string material_timepicker_hour 0x0 +int string material_timepicker_minute 0x0 +int string material_timepicker_pm 0x0 +int string material_timepicker_select_time 0x0 +int string material_timepicker_text_input_mode_description 0x0 +int string mtrl_badge_numberless_content_description 0x0 +int string mtrl_checkbox_button_icon_path_checked 0x0 +int string mtrl_checkbox_button_icon_path_group_name 0x0 +int string mtrl_checkbox_button_icon_path_indeterminate 0x0 +int string mtrl_checkbox_button_icon_path_name 0x0 +int string mtrl_checkbox_button_path_checked 0x0 +int string mtrl_checkbox_button_path_group_name 0x0 +int string mtrl_checkbox_button_path_name 0x0 +int string mtrl_checkbox_button_path_unchecked 0x0 +int string mtrl_checkbox_state_description_checked 0x0 +int string mtrl_checkbox_state_description_indeterminate 0x0 +int string mtrl_checkbox_state_description_unchecked 0x0 +int string mtrl_chip_close_icon_content_description 0x0 +int string mtrl_exceed_max_badge_number_content_description 0x0 +int string mtrl_exceed_max_badge_number_suffix 0x0 +int string mtrl_picker_a11y_next_month 0x0 +int string mtrl_picker_a11y_prev_month 0x0 +int string mtrl_picker_announce_current_range_selection 0x0 +int string mtrl_picker_announce_current_selection 0x0 +int string mtrl_picker_announce_current_selection_none 0x0 +int string mtrl_picker_cancel 0x0 +int string mtrl_picker_confirm 0x0 +int string mtrl_picker_date_header_selected 0x0 +int string mtrl_picker_date_header_title 0x0 +int string mtrl_picker_date_header_unselected 0x0 +int string mtrl_picker_day_of_week_column_header 0x0 +int string mtrl_picker_end_date_description 0x0 +int string mtrl_picker_invalid_format 0x0 +int string mtrl_picker_invalid_format_example 0x0 +int string mtrl_picker_invalid_format_use 0x0 +int string mtrl_picker_invalid_range 0x0 +int string mtrl_picker_navigate_to_current_year_description 0x0 +int string mtrl_picker_navigate_to_year_description 0x0 +int string mtrl_picker_out_of_range 0x0 +int string mtrl_picker_range_header_only_end_selected 0x0 +int string mtrl_picker_range_header_only_start_selected 0x0 +int string mtrl_picker_range_header_selected 0x0 +int string mtrl_picker_range_header_title 0x0 +int string mtrl_picker_range_header_unselected 0x0 +int string mtrl_picker_save 0x0 +int string mtrl_picker_start_date_description 0x0 +int string mtrl_picker_text_input_date_hint 0x0 +int string mtrl_picker_text_input_date_range_end_hint 0x0 +int string mtrl_picker_text_input_date_range_start_hint 0x0 +int string mtrl_picker_text_input_day_abbr 0x0 +int string mtrl_picker_text_input_month_abbr 0x0 +int string mtrl_picker_text_input_year_abbr 0x0 +int string mtrl_picker_today_description 0x0 +int string mtrl_picker_toggle_to_calendar_input_mode 0x0 +int string mtrl_picker_toggle_to_day_selection 0x0 +int string mtrl_picker_toggle_to_text_input_mode 0x0 +int string mtrl_picker_toggle_to_year_selection 0x0 +int string mtrl_switch_thumb_group_name 0x0 +int string mtrl_switch_thumb_path_checked 0x0 +int string mtrl_switch_thumb_path_morphing 0x0 +int string mtrl_switch_thumb_path_name 0x0 +int string mtrl_switch_thumb_path_pressed 0x0 +int string mtrl_switch_thumb_path_unchecked 0x0 +int string mtrl_switch_track_decoration_path 0x0 +int string mtrl_switch_track_path 0x0 +int string mtrl_timepicker_cancel 0x0 +int string mtrl_timepicker_confirm 0x0 +int string password_toggle_content_description 0x0 +int string path_password_eye 0x0 +int string path_password_eye_mask_strike_through 0x0 +int string path_password_eye_mask_visible 0x0 +int string path_password_strike_through 0x0 +int string search_menu_title 0x0 +int string searchbar_scrolling_view_behavior 0x0 +int string searchview_clear_text_content_description 0x0 +int string searchview_navigation_content_description 0x0 +int string side_sheet_accessibility_pane_title 0x0 +int string side_sheet_behavior 0x0 +int string status_bar_notification_info_overflow 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Animation_Design_BottomSheetDialog 0x0 +int style Animation_Material3_BottomSheetDialog 0x0 +int style Animation_Material3_SideSheetDialog 0x0 +int style Animation_MaterialComponents_BottomSheetDialog 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_CardView 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Material3_Search 0x0 +int style Base_TextAppearance_MaterialComponents_Badge 0x0 +int style Base_TextAppearance_MaterialComponents_Button 0x0 +int style Base_TextAppearance_MaterialComponents_Headline6 0x0 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_ThemeOverlay_Material3_AutoCompleteTextView 0x0 +int style Base_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_ThemeOverlay_Material3_Dialog 0x0 +int style Base_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_ThemeOverlay_Material3_TextInputEditText 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x0 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x0 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_Theme_Material3_Dark 0x0 +int style Base_Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Base_Theme_Material3_Dark_Dialog 0x0 +int style Base_Theme_Material3_Dark_SideSheetDialog 0x0 +int style Base_Theme_Material3_Light 0x0 +int style Base_Theme_Material3_Light_BottomSheetDialog 0x0 +int style Base_Theme_Material3_Light_Dialog 0x0 +int style Base_Theme_Material3_Light_SideSheetDialog 0x0 +int style Base_Theme_MaterialComponents 0x0 +int style Base_Theme_MaterialComponents_Bridge 0x0 +int style Base_Theme_MaterialComponents_CompactMenu 0x0 +int style Base_Theme_MaterialComponents_Dialog 0x0 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x0 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x0 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x0 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x0 +int style Base_Theme_MaterialComponents_Light 0x0 +int style Base_Theme_MaterialComponents_Light_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x0 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x0 +int style Base_V14_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_V14_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style Base_V14_Theme_Material3_Dark 0x0 +int style Base_V14_Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Base_V14_Theme_Material3_Dark_Dialog 0x0 +int style Base_V14_Theme_Material3_Dark_SideSheetDialog 0x0 +int style Base_V14_Theme_Material3_Light 0x0 +int style Base_V14_Theme_Material3_Light_BottomSheetDialog 0x0 +int style Base_V14_Theme_Material3_Light_Dialog 0x0 +int style Base_V14_Theme_Material3_Light_SideSheetDialog 0x0 +int style Base_V14_Theme_MaterialComponents 0x0 +int style Base_V14_Theme_MaterialComponents_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Dialog 0x0 +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Base_V14_Widget_MaterialComponents_AutoCompleteTextView 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_V21_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V21_Theme_MaterialComponents 0x0 +int style Base_V21_Theme_MaterialComponents_Dialog 0x0 +int style Base_V21_Theme_MaterialComponents_Light 0x0 +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V24_Theme_Material3_Dark 0x0 +int style Base_V24_Theme_Material3_Dark_Dialog 0x0 +int style Base_V24_Theme_Material3_Light 0x0 +int style Base_V24_Theme_Material3_Light_Dialog 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Base_Widget_Design_TabLayout 0x0 +int style Base_Widget_Material3_ActionBar_Solid 0x0 +int style Base_Widget_Material3_ActionMode 0x0 +int style Base_Widget_Material3_BottomNavigationView 0x0 +int style Base_Widget_Material3_CardView 0x0 +int style Base_Widget_Material3_Chip 0x0 +int style Base_Widget_Material3_CollapsingToolbar 0x0 +int style Base_Widget_Material3_CompoundButton_CheckBox 0x0 +int style Base_Widget_Material3_CompoundButton_RadioButton 0x0 +int style Base_Widget_Material3_CompoundButton_Switch 0x0 +int style Base_Widget_Material3_ExtendedFloatingActionButton 0x0 +int style Base_Widget_Material3_ExtendedFloatingActionButton_Icon 0x0 +int style Base_Widget_Material3_FloatingActionButton 0x0 +int style Base_Widget_Material3_FloatingActionButton_Large 0x0 +int style Base_Widget_Material3_FloatingActionButton_Small 0x0 +int style Base_Widget_Material3_Light_ActionBar_Solid 0x0 +int style Base_Widget_Material3_MaterialCalendar_NavigationButton 0x0 +int style Base_Widget_Material3_Snackbar 0x0 +int style Base_Widget_Material3_TabLayout 0x0 +int style Base_Widget_Material3_TabLayout_OnSurface 0x0 +int style Base_Widget_Material3_TabLayout_Secondary 0x0 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x0 +int style Base_Widget_MaterialComponents_CheckedTextView 0x0 +int style Base_Widget_MaterialComponents_Chip 0x0 +int style Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x0 +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x0 +int style Base_Widget_MaterialComponents_PopupMenu 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x0 +int style Base_Widget_MaterialComponents_Slider 0x0 +int style Base_Widget_MaterialComponents_Snackbar 0x0 +int style Base_Widget_MaterialComponents_TextInputEditText 0x0 +int style Base_Widget_MaterialComponents_TextInputLayout 0x0 +int style Base_Widget_MaterialComponents_TextView 0x0 +int style CardView 0x0 +int style CardView_Dark 0x0 +int style CardView_Light 0x0 +int style MaterialAlertDialog_Material3 0x0 +int style MaterialAlertDialog_Material3_Animation 0x0 +int style MaterialAlertDialog_Material3_Body_Text 0x0 +int style MaterialAlertDialog_Material3_Body_Text_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Icon 0x0 +int style MaterialAlertDialog_Material3_Title_Icon_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Panel 0x0 +int style MaterialAlertDialog_Material3_Title_Panel_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Text 0x0 +int style MaterialAlertDialog_Material3_Title_Text_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents 0x0 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x0 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x0 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_MaterialComponents 0x0 +int style Platform_MaterialComponents_Dialog 0x0 +int style Platform_MaterialComponents_Light 0x0 +int style Platform_MaterialComponents_Light_Dialog 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style ShapeAppearanceOverlay_Material3_Button 0x0 +int style ShapeAppearanceOverlay_Material3_Chip 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Bottom 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Left 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Right 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Top 0x0 +int style ShapeAppearanceOverlay_Material3_FloatingActionButton 0x0 +int style ShapeAppearanceOverlay_Material3_NavigationView_Item 0x0 +int style ShapeAppearanceOverlay_Material3_SearchBar 0x0 +int style ShapeAppearanceOverlay_Material3_SearchView 0x0 +int style ShapeAppearanceOverlay_MaterialAlertDialog_Material3 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x0 +int style ShapeAppearance_M3_Comp_Badge_Large_Shape 0x0 +int style ShapeAppearance_M3_Comp_Badge_Shape 0x0 +int style ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_FilledButton_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchBar_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_Handle_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_StateLayer_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_Track_Shape 0x0 +int style ShapeAppearance_M3_Comp_TextButton_Container_Shape 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Full 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Large 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Medium 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_None 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Small 0x0 +int style ShapeAppearance_Material3_Corner_ExtraLarge 0x0 +int style ShapeAppearance_Material3_Corner_ExtraSmall 0x0 +int style ShapeAppearance_Material3_Corner_Full 0x0 +int style ShapeAppearance_Material3_Corner_Large 0x0 +int style ShapeAppearance_Material3_Corner_Medium 0x0 +int style ShapeAppearance_Material3_Corner_None 0x0 +int style ShapeAppearance_Material3_Corner_Small 0x0 +int style ShapeAppearance_Material3_LargeComponent 0x0 +int style ShapeAppearance_Material3_MediumComponent 0x0 +int style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator 0x0 +int style ShapeAppearance_Material3_SmallComponent 0x0 +int style ShapeAppearance_Material3_Tooltip 0x0 +int style ShapeAppearance_MaterialComponents 0x0 +int style ShapeAppearance_MaterialComponents_Badge 0x0 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x0 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x0 +int style ShapeAppearance_MaterialComponents_SmallComponent 0x0 +int style ShapeAppearance_MaterialComponents_Tooltip 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x0 +int style TextAppearance_Design_Counter 0x0 +int style TextAppearance_Design_Counter_Overflow 0x0 +int style TextAppearance_Design_Error 0x0 +int style TextAppearance_Design_HelperText 0x0 +int style TextAppearance_Design_Hint 0x0 +int style TextAppearance_Design_Placeholder 0x0 +int style TextAppearance_Design_Prefix 0x0 +int style TextAppearance_Design_Snackbar_Message 0x0 +int style TextAppearance_Design_Suffix 0x0 +int style TextAppearance_Design_Tab 0x0 +int style TextAppearance_M3_Sys_Typescale_BodyLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_BodyMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_BodySmall 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplayLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplayMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplaySmall 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineSmall 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelSmall 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleSmall 0x0 +int style TextAppearance_Material3_ActionBar_Subtitle 0x0 +int style TextAppearance_Material3_ActionBar_Title 0x0 +int style TextAppearance_Material3_BodyLarge 0x0 +int style TextAppearance_Material3_BodyMedium 0x0 +int style TextAppearance_Material3_BodySmall 0x0 +int style TextAppearance_Material3_DisplayLarge 0x0 +int style TextAppearance_Material3_DisplayMedium 0x0 +int style TextAppearance_Material3_DisplaySmall 0x0 +int style TextAppearance_Material3_HeadlineLarge 0x0 +int style TextAppearance_Material3_HeadlineMedium 0x0 +int style TextAppearance_Material3_HeadlineSmall 0x0 +int style TextAppearance_Material3_LabelLarge 0x0 +int style TextAppearance_Material3_LabelMedium 0x0 +int style TextAppearance_Material3_LabelSmall 0x0 +int style TextAppearance_Material3_MaterialTimePicker_Title 0x0 +int style TextAppearance_Material3_SearchBar 0x0 +int style TextAppearance_Material3_SearchView 0x0 +int style TextAppearance_Material3_SearchView_Prefix 0x0 +int style TextAppearance_Material3_TitleLarge 0x0 +int style TextAppearance_Material3_TitleMedium 0x0 +int style TextAppearance_Material3_TitleSmall 0x0 +int style TextAppearance_MaterialComponents_Badge 0x0 +int style TextAppearance_MaterialComponents_Body1 0x0 +int style TextAppearance_MaterialComponents_Body2 0x0 +int style TextAppearance_MaterialComponents_Button 0x0 +int style TextAppearance_MaterialComponents_Caption 0x0 +int style TextAppearance_MaterialComponents_Chip 0x0 +int style TextAppearance_MaterialComponents_Headline1 0x0 +int style TextAppearance_MaterialComponents_Headline2 0x0 +int style TextAppearance_MaterialComponents_Headline3 0x0 +int style TextAppearance_MaterialComponents_Headline4 0x0 +int style TextAppearance_MaterialComponents_Headline5 0x0 +int style TextAppearance_MaterialComponents_Headline6 0x0 +int style TextAppearance_MaterialComponents_Overline 0x0 +int style TextAppearance_MaterialComponents_Subtitle1 0x0 +int style TextAppearance_MaterialComponents_Subtitle2 0x0 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x0 +int style TextAppearance_MaterialComponents_Tooltip 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_DayNight 0x0 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style ThemeOverlay_Design_TextInputEditText 0x0 +int style ThemeOverlay_Material3 0x0 +int style ThemeOverlay_Material3_ActionBar 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style ThemeOverlay_Material3_BottomAppBar 0x0 +int style ThemeOverlay_Material3_BottomAppBar_Legacy 0x0 +int style ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style ThemeOverlay_Material3_Button 0x0 +int style ThemeOverlay_Material3_Button_ElevatedButton 0x0 +int style ThemeOverlay_Material3_Button_IconButton 0x0 +int style ThemeOverlay_Material3_Button_IconButton_Filled 0x0 +int style ThemeOverlay_Material3_Button_IconButton_Filled_Tonal 0x0 +int style ThemeOverlay_Material3_Button_TextButton 0x0 +int style ThemeOverlay_Material3_Button_TextButton_Snackbar 0x0 +int style ThemeOverlay_Material3_Button_TonalButton 0x0 +int style ThemeOverlay_Material3_Chip 0x0 +int style ThemeOverlay_Material3_Chip_Assist 0x0 +int style ThemeOverlay_Material3_Dark 0x0 +int style ThemeOverlay_Material3_Dark_ActionBar 0x0 +int style ThemeOverlay_Material3_DayNight_BottomSheetDialog 0x0 +int style ThemeOverlay_Material3_DayNight_SideSheetDialog 0x0 +int style ThemeOverlay_Material3_Dialog 0x0 +int style ThemeOverlay_Material3_Dialog_Alert 0x0 +int style ThemeOverlay_Material3_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_Material3_DynamicColors_Dark 0x0 +int style ThemeOverlay_Material3_DynamicColors_DayNight 0x0 +int style ThemeOverlay_Material3_DynamicColors_Light 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Primary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Secondary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Surface 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Tertiary 0x0 +int style ThemeOverlay_Material3_HarmonizedColors 0x0 +int style ThemeOverlay_Material3_HarmonizedColors_Empty 0x0 +int style ThemeOverlay_Material3_Light 0x0 +int style ThemeOverlay_Material3_Light_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_Material3_MaterialAlertDialog 0x0 +int style ThemeOverlay_Material3_MaterialAlertDialog_Centered 0x0 +int style ThemeOverlay_Material3_MaterialCalendar 0x0 +int style ThemeOverlay_Material3_MaterialCalendar_Fullscreen 0x0 +int style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton 0x0 +int style ThemeOverlay_Material3_MaterialTimePicker 0x0 +int style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText 0x0 +int style ThemeOverlay_Material3_NavigationView 0x0 +int style ThemeOverlay_Material3_PersonalizedColors 0x0 +int style ThemeOverlay_Material3_Search 0x0 +int style ThemeOverlay_Material3_SideSheetDialog 0x0 +int style ThemeOverlay_Material3_Snackbar 0x0 +int style ThemeOverlay_Material3_TextInputEditText 0x0 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox 0x0 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense 0x0 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox 0x0 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense 0x0 +int style ThemeOverlay_Material3_Toolbar_Surface 0x0 +int style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon 0x0 +int style ThemeOverlay_MaterialComponents 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x0 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style ThemeOverlay_MaterialComponents_Dark 0x0 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x0 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x0 +int style ThemeOverlay_MaterialComponents_Dialog 0x0 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_MaterialComponents_Light 0x0 +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x0 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x0 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Empty 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Theme_Design 0x0 +int style Theme_Design_BottomSheetDialog 0x0 +int style Theme_Design_Light 0x0 +int style Theme_Design_Light_BottomSheetDialog 0x0 +int style Theme_Design_Light_NoActionBar 0x0 +int style Theme_Design_NoActionBar 0x0 +int style Theme_Material3_Dark 0x0 +int style Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Theme_Material3_Dark_Dialog 0x0 +int style Theme_Material3_Dark_DialogWhenLarge 0x0 +int style Theme_Material3_Dark_Dialog_Alert 0x0 +int style Theme_Material3_Dark_Dialog_MinWidth 0x0 +int style Theme_Material3_Dark_NoActionBar 0x0 +int style Theme_Material3_Dark_SideSheetDialog 0x0 +int style Theme_Material3_DayNight 0x0 +int style Theme_Material3_DayNight_BottomSheetDialog 0x0 +int style Theme_Material3_DayNight_Dialog 0x0 +int style Theme_Material3_DayNight_DialogWhenLarge 0x0 +int style Theme_Material3_DayNight_Dialog_Alert 0x0 +int style Theme_Material3_DayNight_Dialog_MinWidth 0x0 +int style Theme_Material3_DayNight_NoActionBar 0x0 +int style Theme_Material3_DayNight_SideSheetDialog 0x0 +int style Theme_Material3_DynamicColors_Dark 0x0 +int style Theme_Material3_DynamicColors_DayNight 0x0 +int style Theme_Material3_DynamicColors_Light 0x0 +int style Theme_Material3_Light 0x0 +int style Theme_Material3_Light_BottomSheetDialog 0x0 +int style Theme_Material3_Light_Dialog 0x0 +int style Theme_Material3_Light_DialogWhenLarge 0x0 +int style Theme_Material3_Light_Dialog_Alert 0x0 +int style Theme_Material3_Light_Dialog_MinWidth 0x0 +int style Theme_Material3_Light_NoActionBar 0x0 +int style Theme_Material3_Light_SideSheetDialog 0x0 +int style Theme_MaterialComponents 0x0 +int style Theme_MaterialComponents_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_Bridge 0x0 +int style Theme_MaterialComponents_CompactMenu 0x0 +int style Theme_MaterialComponents_DayNight 0x0 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_DayNight_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x0 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog 0x0 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_NoActionBar 0x0 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x0 +int style Theme_MaterialComponents_Dialog 0x0 +int style Theme_MaterialComponents_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_Dialog_Alert 0x0 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_Light 0x0 +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_Light_Bridge 0x0 +int style Theme_MaterialComponents_Light_DarkActionBar 0x0 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog 0x0 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x0 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_Light_NoActionBar 0x0 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x0 +int style Theme_MaterialComponents_NoActionBar 0x0 +int style Theme_MaterialComponents_NoActionBar_Bridge 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int style Widget_Design_AppBarLayout 0x0 +int style Widget_Design_BottomNavigationView 0x0 +int style Widget_Design_BottomSheet_Modal 0x0 +int style Widget_Design_CollapsingToolbar 0x0 +int style Widget_Design_FloatingActionButton 0x0 +int style Widget_Design_NavigationView 0x0 +int style Widget_Design_ScrimInsetsFrameLayout 0x0 +int style Widget_Design_Snackbar 0x0 +int style Widget_Design_TabLayout 0x0 +int style Widget_Design_TextInputEditText 0x0 +int style Widget_Design_TextInputLayout 0x0 +int style Widget_Material3_ActionBar_Solid 0x0 +int style Widget_Material3_ActionMode 0x0 +int style Widget_Material3_AppBarLayout 0x0 +int style Widget_Material3_AutoCompleteTextView_FilledBox 0x0 +int style Widget_Material3_AutoCompleteTextView_FilledBox_Dense 0x0 +int style Widget_Material3_AutoCompleteTextView_OutlinedBox 0x0 +int style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style Widget_Material3_Badge 0x0 +int style Widget_Material3_BottomAppBar 0x0 +int style Widget_Material3_BottomAppBar_Button_Navigation 0x0 +int style Widget_Material3_BottomAppBar_Legacy 0x0 +int style Widget_Material3_BottomNavigationView 0x0 +int style Widget_Material3_BottomNavigationView_ActiveIndicator 0x0 +int style Widget_Material3_BottomSheet 0x0 +int style Widget_Material3_BottomSheet_DragHandle 0x0 +int style Widget_Material3_BottomSheet_Modal 0x0 +int style Widget_Material3_Button 0x0 +int style Widget_Material3_Button_ElevatedButton 0x0 +int style Widget_Material3_Button_ElevatedButton_Icon 0x0 +int style Widget_Material3_Button_Icon 0x0 +int style Widget_Material3_Button_IconButton 0x0 +int style Widget_Material3_Button_IconButton_Filled 0x0 +int style Widget_Material3_Button_IconButton_Filled_Tonal 0x0 +int style Widget_Material3_Button_IconButton_Outlined 0x0 +int style Widget_Material3_Button_OutlinedButton 0x0 +int style Widget_Material3_Button_OutlinedButton_Icon 0x0 +int style Widget_Material3_Button_TextButton 0x0 +int style Widget_Material3_Button_TextButton_Dialog 0x0 +int style Widget_Material3_Button_TextButton_Dialog_Flush 0x0 +int style Widget_Material3_Button_TextButton_Dialog_Icon 0x0 +int style Widget_Material3_Button_TextButton_Icon 0x0 +int style Widget_Material3_Button_TextButton_Snackbar 0x0 +int style Widget_Material3_Button_TonalButton 0x0 +int style Widget_Material3_Button_TonalButton_Icon 0x0 +int style Widget_Material3_Button_UnelevatedButton 0x0 +int style Widget_Material3_CardView_Elevated 0x0 +int style Widget_Material3_CardView_Filled 0x0 +int style Widget_Material3_CardView_Outlined 0x0 +int style Widget_Material3_CheckedTextView 0x0 +int style Widget_Material3_ChipGroup 0x0 +int style Widget_Material3_Chip_Assist 0x0 +int style Widget_Material3_Chip_Assist_Elevated 0x0 +int style Widget_Material3_Chip_Filter 0x0 +int style Widget_Material3_Chip_Filter_Elevated 0x0 +int style Widget_Material3_Chip_Input 0x0 +int style Widget_Material3_Chip_Input_Elevated 0x0 +int style Widget_Material3_Chip_Input_Icon 0x0 +int style Widget_Material3_Chip_Input_Icon_Elevated 0x0 +int style Widget_Material3_Chip_Suggestion 0x0 +int style Widget_Material3_Chip_Suggestion_Elevated 0x0 +int style Widget_Material3_CircularProgressIndicator 0x0 +int style Widget_Material3_CircularProgressIndicator_ExtraSmall 0x0 +int style Widget_Material3_CircularProgressIndicator_Medium 0x0 +int style Widget_Material3_CircularProgressIndicator_Small 0x0 +int style Widget_Material3_CollapsingToolbar 0x0 +int style Widget_Material3_CollapsingToolbar_Large 0x0 +int style Widget_Material3_CollapsingToolbar_Medium 0x0 +int style Widget_Material3_CompoundButton_CheckBox 0x0 +int style Widget_Material3_CompoundButton_MaterialSwitch 0x0 +int style Widget_Material3_CompoundButton_RadioButton 0x0 +int style Widget_Material3_CompoundButton_Switch 0x0 +int style Widget_Material3_DrawerLayout 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Primary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Secondary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Surface 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Large_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Small_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Tertiary 0x0 +int style Widget_Material3_Light_ActionBar_Solid 0x0 +int style Widget_Material3_LinearProgressIndicator 0x0 +int style Widget_Material3_MaterialButtonToggleGroup 0x0 +int style Widget_Material3_MaterialCalendar 0x0 +int style Widget_Material3_MaterialCalendar_Day 0x0 +int style Widget_Material3_MaterialCalendar_DayOfWeekLabel 0x0 +int style Widget_Material3_MaterialCalendar_DayTextView 0x0 +int style Widget_Material3_MaterialCalendar_Day_Invalid 0x0 +int style Widget_Material3_MaterialCalendar_Day_Selected 0x0 +int style Widget_Material3_MaterialCalendar_Day_Today 0x0 +int style Widget_Material3_MaterialCalendar_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderCancelButton 0x0 +int style Widget_Material3_MaterialCalendar_HeaderDivider 0x0 +int style Widget_Material3_MaterialCalendar_HeaderLayout 0x0 +int style Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderSelection 0x0 +int style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderTitle 0x0 +int style Widget_Material3_MaterialCalendar_HeaderToggleButton 0x0 +int style Widget_Material3_MaterialCalendar_Item 0x0 +int style Widget_Material3_MaterialCalendar_MonthNavigationButton 0x0 +int style Widget_Material3_MaterialCalendar_MonthTextView 0x0 +int style Widget_Material3_MaterialCalendar_Year 0x0 +int style Widget_Material3_MaterialCalendar_YearNavigationButton 0x0 +int style Widget_Material3_MaterialCalendar_Year_Selected 0x0 +int style Widget_Material3_MaterialCalendar_Year_Today 0x0 +int style Widget_Material3_MaterialDivider 0x0 +int style Widget_Material3_MaterialDivider_Heavy 0x0 +int style Widget_Material3_MaterialTimePicker 0x0 +int style Widget_Material3_MaterialTimePicker_Button 0x0 +int style Widget_Material3_MaterialTimePicker_Clock 0x0 +int style Widget_Material3_MaterialTimePicker_Display 0x0 +int style Widget_Material3_MaterialTimePicker_Display_Divider 0x0 +int style Widget_Material3_MaterialTimePicker_Display_HelperText 0x0 +int style Widget_Material3_MaterialTimePicker_Display_TextInputEditText 0x0 +int style Widget_Material3_MaterialTimePicker_Display_TextInputLayout 0x0 +int style Widget_Material3_MaterialTimePicker_ImageButton 0x0 +int style Widget_Material3_NavigationRailView 0x0 +int style Widget_Material3_NavigationRailView_ActiveIndicator 0x0 +int style Widget_Material3_NavigationView 0x0 +int style Widget_Material3_PopupMenu 0x0 +int style Widget_Material3_PopupMenu_ContextMenu 0x0 +int style Widget_Material3_PopupMenu_ListPopupWindow 0x0 +int style Widget_Material3_PopupMenu_Overflow 0x0 +int style Widget_Material3_SearchBar 0x0 +int style Widget_Material3_SearchBar_Outlined 0x0 +int style Widget_Material3_SearchView 0x0 +int style Widget_Material3_SearchView_Prefix 0x0 +int style Widget_Material3_SearchView_Toolbar 0x0 +int style Widget_Material3_Search_ActionButton_Overflow 0x0 +int style Widget_Material3_Search_Toolbar_Button_Navigation 0x0 +int style Widget_Material3_SideSheet 0x0 +int style Widget_Material3_SideSheet_Detached 0x0 +int style Widget_Material3_SideSheet_Modal 0x0 +int style Widget_Material3_SideSheet_Modal_Detached 0x0 +int style Widget_Material3_Slider 0x0 +int style Widget_Material3_Slider_Label 0x0 +int style Widget_Material3_Snackbar 0x0 +int style Widget_Material3_Snackbar_FullWidth 0x0 +int style Widget_Material3_Snackbar_TextView 0x0 +int style Widget_Material3_TabLayout 0x0 +int style Widget_Material3_TabLayout_OnSurface 0x0 +int style Widget_Material3_TabLayout_Secondary 0x0 +int style Widget_Material3_TextInputEditText_FilledBox 0x0 +int style Widget_Material3_TextInputEditText_FilledBox_Dense 0x0 +int style Widget_Material3_TextInputEditText_OutlinedBox 0x0 +int style Widget_Material3_TextInputEditText_OutlinedBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_FilledBox 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x0 +int style Widget_Material3_Toolbar 0x0 +int style Widget_Material3_Toolbar_OnSurface 0x0 +int style Widget_Material3_Toolbar_Surface 0x0 +int style Widget_Material3_Tooltip 0x0 +int style Widget_MaterialComponents_ActionBar_Primary 0x0 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x0 +int style Widget_MaterialComponents_ActionBar_Solid 0x0 +int style Widget_MaterialComponents_ActionBar_Surface 0x0 +int style Widget_MaterialComponents_ActionMode 0x0 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x0 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x0 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_Badge 0x0 +int style Widget_MaterialComponents_BottomAppBar 0x0 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x0 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x0 +int style Widget_MaterialComponents_BottomNavigationView 0x0 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x0 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x0 +int style Widget_MaterialComponents_BottomSheet 0x0 +int style Widget_MaterialComponents_BottomSheet_Modal 0x0 +int style Widget_MaterialComponents_Button 0x0 +int style Widget_MaterialComponents_Button_Icon 0x0 +int style Widget_MaterialComponents_Button_OutlinedButton 0x0 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x0 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x0 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x0 +int style Widget_MaterialComponents_CardView 0x0 +int style Widget_MaterialComponents_CheckedTextView 0x0 +int style Widget_MaterialComponents_ChipGroup 0x0 +int style Widget_MaterialComponents_Chip_Action 0x0 +int style Widget_MaterialComponents_Chip_Choice 0x0 +int style Widget_MaterialComponents_Chip_Entry 0x0 +int style Widget_MaterialComponents_Chip_Filter 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x0 +int style Widget_MaterialComponents_CollapsingToolbar 0x0 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x0 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x0 +int style Widget_MaterialComponents_CompoundButton_Switch 0x0 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x0 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x0 +int style Widget_MaterialComponents_FloatingActionButton 0x0 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x0 +int style Widget_MaterialComponents_LinearProgressIndicator 0x0 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x0 +int style Widget_MaterialComponents_MaterialCalendar 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x0 +int style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel 0x0 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x0 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x0 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x0 +int style Widget_MaterialComponents_MaterialDivider 0x0 +int style Widget_MaterialComponents_NavigationRailView 0x0 +int style Widget_MaterialComponents_NavigationRailView_Colored 0x0 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x0 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x0 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x0 +int style Widget_MaterialComponents_NavigationView 0x0 +int style Widget_MaterialComponents_PopupMenu 0x0 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x0 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x0 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x0 +int style Widget_MaterialComponents_ProgressIndicator 0x0 +int style Widget_MaterialComponents_ShapeableImageView 0x0 +int style Widget_MaterialComponents_Slider 0x0 +int style Widget_MaterialComponents_Snackbar 0x0 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x0 +int style Widget_MaterialComponents_Snackbar_TextView 0x0 +int style Widget_MaterialComponents_TabLayout 0x0 +int style Widget_MaterialComponents_TabLayout_Colored 0x0 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x0 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextView 0x0 +int style Widget_MaterialComponents_TimePicker 0x0 +int style Widget_MaterialComponents_TimePicker_Button 0x0 +int style Widget_MaterialComponents_TimePicker_Clock 0x0 +int style Widget_MaterialComponents_TimePicker_Display 0x0 +int style Widget_MaterialComponents_TimePicker_Display_Divider 0x0 +int style Widget_MaterialComponents_TimePicker_Display_HelperText 0x0 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x0 +int style Widget_MaterialComponents_TimePicker_Display_TextInputLayout 0x0 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x0 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x0 +int style Widget_MaterialComponents_Toolbar 0x0 +int style Widget_MaterialComponents_Toolbar_Primary 0x0 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x0 +int style Widget_MaterialComponents_Toolbar_Surface 0x0 +int style Widget_MaterialComponents_Tooltip 0x0 +int style Widget_Support_CoordinatorLayout 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppBarLayoutStates { 0x0, 0x0, 0x0, 0x0 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x0, 0x0, 0x0 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable Badge { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeHeight 2 +int styleable Badge_badgeRadius 3 +int styleable Badge_badgeShapeAppearance 4 +int styleable Badge_badgeShapeAppearanceOverlay 5 +int styleable Badge_badgeTextAppearance 6 +int styleable Badge_badgeTextColor 7 +int styleable Badge_badgeWidePadding 8 +int styleable Badge_badgeWidth 9 +int styleable Badge_badgeWithTextHeight 10 +int styleable Badge_badgeWithTextRadius 11 +int styleable Badge_badgeWithTextShapeAppearance 12 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 13 +int styleable Badge_badgeWithTextWidth 14 +int styleable Badge_horizontalOffset 15 +int styleable Badge_horizontalOffsetWithText 16 +int styleable Badge_maxCharacterCount 17 +int styleable Badge_number 18 +int styleable Badge_offsetAlignmentMode 19 +int styleable Badge_verticalOffset 20 +int styleable Badge_verticalOffsetWithText 21 +int[] styleable BaseProgressIndicator { 0x1010139, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x1010140, 0x0, 0x0 } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x1010120, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_maxWidth 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x0, 0x0 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x1010140, 0x101013f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x0, 0x0, 0x0 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x0, 0x0 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x0, 0x0, 0x0 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable CollapsingToolbarLayout_Layout { 0x0, 0x0 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animate_relativeTo 27 +int styleable Constraint_barrierAllowsGoneWidgets 28 +int styleable Constraint_barrierDirection 29 +int styleable Constraint_barrierMargin 30 +int styleable Constraint_chainUseRtl 31 +int styleable Constraint_constraint_referenced_ids 32 +int styleable Constraint_drawPath 33 +int styleable Constraint_flow_firstHorizontalBias 34 +int styleable Constraint_flow_firstHorizontalStyle 35 +int styleable Constraint_flow_firstVerticalBias 36 +int styleable Constraint_flow_firstVerticalStyle 37 +int styleable Constraint_flow_horizontalAlign 38 +int styleable Constraint_flow_horizontalBias 39 +int styleable Constraint_flow_horizontalGap 40 +int styleable Constraint_flow_horizontalStyle 41 +int styleable Constraint_flow_lastHorizontalBias 42 +int styleable Constraint_flow_lastHorizontalStyle 43 +int styleable Constraint_flow_lastVerticalBias 44 +int styleable Constraint_flow_lastVerticalStyle 45 +int styleable Constraint_flow_maxElementsWrap 46 +int styleable Constraint_flow_verticalAlign 47 +int styleable Constraint_flow_verticalBias 48 +int styleable Constraint_flow_verticalGap 49 +int styleable Constraint_flow_verticalStyle 50 +int styleable Constraint_flow_wrapMode 51 +int styleable Constraint_layout_constrainedHeight 52 +int styleable Constraint_layout_constrainedWidth 53 +int styleable Constraint_layout_constraintBaseline_creator 54 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 55 +int styleable Constraint_layout_constraintBottom_creator 56 +int styleable Constraint_layout_constraintBottom_toBottomOf 57 +int styleable Constraint_layout_constraintBottom_toTopOf 58 +int styleable Constraint_layout_constraintCircle 59 +int styleable Constraint_layout_constraintCircleAngle 60 +int styleable Constraint_layout_constraintCircleRadius 61 +int styleable Constraint_layout_constraintDimensionRatio 62 +int styleable Constraint_layout_constraintEnd_toEndOf 63 +int styleable Constraint_layout_constraintEnd_toStartOf 64 +int styleable Constraint_layout_constraintGuide_begin 65 +int styleable Constraint_layout_constraintGuide_end 66 +int styleable Constraint_layout_constraintGuide_percent 67 +int styleable Constraint_layout_constraintHeight_default 68 +int styleable Constraint_layout_constraintHeight_max 69 +int styleable Constraint_layout_constraintHeight_min 70 +int styleable Constraint_layout_constraintHeight_percent 71 +int styleable Constraint_layout_constraintHorizontal_bias 72 +int styleable Constraint_layout_constraintHorizontal_chainStyle 73 +int styleable Constraint_layout_constraintHorizontal_weight 74 +int styleable Constraint_layout_constraintLeft_creator 75 +int styleable Constraint_layout_constraintLeft_toLeftOf 76 +int styleable Constraint_layout_constraintLeft_toRightOf 77 +int styleable Constraint_layout_constraintRight_creator 78 +int styleable Constraint_layout_constraintRight_toLeftOf 79 +int styleable Constraint_layout_constraintRight_toRightOf 80 +int styleable Constraint_layout_constraintStart_toEndOf 81 +int styleable Constraint_layout_constraintStart_toStartOf 82 +int styleable Constraint_layout_constraintTag 83 +int styleable Constraint_layout_constraintTop_creator 84 +int styleable Constraint_layout_constraintTop_toBottomOf 85 +int styleable Constraint_layout_constraintTop_toTopOf 86 +int styleable Constraint_layout_constraintVertical_bias 87 +int styleable Constraint_layout_constraintVertical_chainStyle 88 +int styleable Constraint_layout_constraintVertical_weight 89 +int styleable Constraint_layout_constraintWidth_default 90 +int styleable Constraint_layout_constraintWidth_max 91 +int styleable Constraint_layout_constraintWidth_min 92 +int styleable Constraint_layout_constraintWidth_percent 93 +int styleable Constraint_layout_editor_absoluteX 94 +int styleable Constraint_layout_editor_absoluteY 95 +int styleable Constraint_layout_goneMarginBottom 96 +int styleable Constraint_layout_goneMarginEnd 97 +int styleable Constraint_layout_goneMarginLeft 98 +int styleable Constraint_layout_goneMarginRight 99 +int styleable Constraint_layout_goneMarginStart 100 +int styleable Constraint_layout_goneMarginTop 101 +int styleable Constraint_motionProgress 102 +int styleable Constraint_motionStagger 103 +int styleable Constraint_pathMotionArc 104 +int styleable Constraint_pivotAnchor 105 +int styleable Constraint_transitionEasing 106 +int styleable Constraint_transitionPathRotate 107 +int styleable Constraint_visibilityMode 108 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_maxHeight 1 +int styleable ConstraintLayout_Layout_android_maxWidth 2 +int styleable ConstraintLayout_Layout_android_minHeight 3 +int styleable ConstraintLayout_Layout_android_minWidth 4 +int styleable ConstraintLayout_Layout_android_orientation 5 +int styleable ConstraintLayout_Layout_android_padding 6 +int styleable ConstraintLayout_Layout_android_paddingBottom 7 +int styleable ConstraintLayout_Layout_android_paddingEnd 8 +int styleable ConstraintLayout_Layout_android_paddingLeft 9 +int styleable ConstraintLayout_Layout_android_paddingRight 10 +int styleable ConstraintLayout_Layout_android_paddingStart 11 +int styleable ConstraintLayout_Layout_android_paddingTop 12 +int styleable ConstraintLayout_Layout_android_visibility 13 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14 +int styleable ConstraintLayout_Layout_barrierDirection 15 +int styleable ConstraintLayout_Layout_barrierMargin 16 +int styleable ConstraintLayout_Layout_chainUseRtl 17 +int styleable ConstraintLayout_Layout_constraintSet 18 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 19 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 24 +int styleable ConstraintLayout_Layout_flow_horizontalBias 25 +int styleable ConstraintLayout_Layout_flow_horizontalGap 26 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 27 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32 +int styleable ConstraintLayout_Layout_flow_verticalAlign 33 +int styleable ConstraintLayout_Layout_flow_verticalBias 34 +int styleable ConstraintLayout_Layout_flow_verticalGap 35 +int styleable ConstraintLayout_Layout_flow_verticalStyle 36 +int styleable ConstraintLayout_Layout_flow_wrapMode 37 +int styleable ConstraintLayout_Layout_layoutDescription 38 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 39 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 40 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45 +int styleable ConstraintLayout_Layout_layout_constraintCircle 46 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69 +int styleable ConstraintLayout_Layout_layout_constraintTag 70 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 86 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 87 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 88 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 89 +int[] styleable ConstraintLayout_placeholder { 0x0, 0x0 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animate_relativeTo 29 +int styleable ConstraintSet_barrierAllowsGoneWidgets 30 +int styleable ConstraintSet_barrierDirection 31 +int styleable ConstraintSet_barrierMargin 32 +int styleable ConstraintSet_chainUseRtl 33 +int styleable ConstraintSet_constraint_referenced_ids 34 +int styleable ConstraintSet_deriveConstraintsFrom 35 +int styleable ConstraintSet_drawPath 36 +int styleable ConstraintSet_flow_firstHorizontalBias 37 +int styleable ConstraintSet_flow_firstHorizontalStyle 38 +int styleable ConstraintSet_flow_firstVerticalBias 39 +int styleable ConstraintSet_flow_firstVerticalStyle 40 +int styleable ConstraintSet_flow_horizontalAlign 41 +int styleable ConstraintSet_flow_horizontalBias 42 +int styleable ConstraintSet_flow_horizontalGap 43 +int styleable ConstraintSet_flow_horizontalStyle 44 +int styleable ConstraintSet_flow_lastHorizontalBias 45 +int styleable ConstraintSet_flow_lastHorizontalStyle 46 +int styleable ConstraintSet_flow_lastVerticalBias 47 +int styleable ConstraintSet_flow_lastVerticalStyle 48 +int styleable ConstraintSet_flow_maxElementsWrap 49 +int styleable ConstraintSet_flow_verticalAlign 50 +int styleable ConstraintSet_flow_verticalBias 51 +int styleable ConstraintSet_flow_verticalGap 52 +int styleable ConstraintSet_flow_verticalStyle 53 +int styleable ConstraintSet_flow_wrapMode 54 +int styleable ConstraintSet_layout_constrainedHeight 55 +int styleable ConstraintSet_layout_constrainedWidth 56 +int styleable ConstraintSet_layout_constraintBaseline_creator 57 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58 +int styleable ConstraintSet_layout_constraintBottom_creator 59 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 61 +int styleable ConstraintSet_layout_constraintCircle 62 +int styleable ConstraintSet_layout_constraintCircleAngle 63 +int styleable ConstraintSet_layout_constraintCircleRadius 64 +int styleable ConstraintSet_layout_constraintDimensionRatio 65 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 66 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 67 +int styleable ConstraintSet_layout_constraintGuide_begin 68 +int styleable ConstraintSet_layout_constraintGuide_end 69 +int styleable ConstraintSet_layout_constraintGuide_percent 70 +int styleable ConstraintSet_layout_constraintHeight_default 71 +int styleable ConstraintSet_layout_constraintHeight_max 72 +int styleable ConstraintSet_layout_constraintHeight_min 73 +int styleable ConstraintSet_layout_constraintHeight_percent 74 +int styleable ConstraintSet_layout_constraintHorizontal_bias 75 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76 +int styleable ConstraintSet_layout_constraintHorizontal_weight 77 +int styleable ConstraintSet_layout_constraintLeft_creator 78 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 80 +int styleable ConstraintSet_layout_constraintRight_creator 81 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 82 +int styleable ConstraintSet_layout_constraintRight_toRightOf 83 +int styleable ConstraintSet_layout_constraintStart_toEndOf 84 +int styleable ConstraintSet_layout_constraintStart_toStartOf 85 +int styleable ConstraintSet_layout_constraintTag 86 +int styleable ConstraintSet_layout_constraintTop_creator 87 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 88 +int styleable ConstraintSet_layout_constraintTop_toTopOf 89 +int styleable ConstraintSet_layout_constraintVertical_bias 90 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 91 +int styleable ConstraintSet_layout_constraintVertical_weight 92 +int styleable ConstraintSet_layout_constraintWidth_default 93 +int styleable ConstraintSet_layout_constraintWidth_max 94 +int styleable ConstraintSet_layout_constraintWidth_min 95 +int styleable ConstraintSet_layout_constraintWidth_percent 96 +int styleable ConstraintSet_layout_editor_absoluteX 97 +int styleable ConstraintSet_layout_editor_absoluteY 98 +int styleable ConstraintSet_layout_goneMarginBottom 99 +int styleable ConstraintSet_layout_goneMarginEnd 100 +int styleable ConstraintSet_layout_goneMarginLeft 101 +int styleable ConstraintSet_layout_goneMarginRight 102 +int styleable ConstraintSet_layout_goneMarginStart 103 +int styleable ConstraintSet_layout_goneMarginTop 104 +int styleable ConstraintSet_motionProgress 105 +int styleable ConstraintSet_motionStagger 106 +int styleable ConstraintSet_pathMotionArc 107 +int styleable ConstraintSet_pivotAnchor 108 +int styleable ConstraintSet_transitionEasing 109 +int styleable ConstraintSet_transitionPathRotate 110 +int[] styleable CoordinatorLayout { 0x0, 0x0 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customStringValue 8 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable DrawerLayout { 0x0 } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x0, 0x0 } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x0 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x0, 0x0 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x0 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_brightness 1 +int styleable ImageFilterView_contrast 2 +int styleable ImageFilterView_crossfade 3 +int styleable ImageFilterView_overlay 4 +int styleable ImageFilterView_round 5 +int styleable ImageFilterView_roundPercent 6 +int styleable ImageFilterView_saturation 7 +int styleable ImageFilterView_warmth 8 +int[] styleable Insets { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingTopSystemWindowInsets 6 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transitionEasing 16 +int styleable KeyAttribute_transitionPathRotate 17 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_waveShape 18 +int styleable KeyCycle_waveVariesBy 19 +int[] styleable KeyPosition { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_waveShape 19 +int[] styleable KeyTrigger { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_layout_constrainedHeight 14 +int styleable Layout_layout_constrainedWidth 15 +int styleable Layout_layout_constraintBaseline_creator 16 +int styleable Layout_layout_constraintBaseline_toBaselineOf 17 +int styleable Layout_layout_constraintBottom_creator 18 +int styleable Layout_layout_constraintBottom_toBottomOf 19 +int styleable Layout_layout_constraintBottom_toTopOf 20 +int styleable Layout_layout_constraintCircle 21 +int styleable Layout_layout_constraintCircleAngle 22 +int styleable Layout_layout_constraintCircleRadius 23 +int styleable Layout_layout_constraintDimensionRatio 24 +int styleable Layout_layout_constraintEnd_toEndOf 25 +int styleable Layout_layout_constraintEnd_toStartOf 26 +int styleable Layout_layout_constraintGuide_begin 27 +int styleable Layout_layout_constraintGuide_end 28 +int styleable Layout_layout_constraintGuide_percent 29 +int styleable Layout_layout_constraintHeight_default 30 +int styleable Layout_layout_constraintHeight_max 31 +int styleable Layout_layout_constraintHeight_min 32 +int styleable Layout_layout_constraintHeight_percent 33 +int styleable Layout_layout_constraintHorizontal_bias 34 +int styleable Layout_layout_constraintHorizontal_chainStyle 35 +int styleable Layout_layout_constraintHorizontal_weight 36 +int styleable Layout_layout_constraintLeft_creator 37 +int styleable Layout_layout_constraintLeft_toLeftOf 38 +int styleable Layout_layout_constraintLeft_toRightOf 39 +int styleable Layout_layout_constraintRight_creator 40 +int styleable Layout_layout_constraintRight_toLeftOf 41 +int styleable Layout_layout_constraintRight_toRightOf 42 +int styleable Layout_layout_constraintStart_toEndOf 43 +int styleable Layout_layout_constraintStart_toStartOf 44 +int styleable Layout_layout_constraintTop_creator 45 +int styleable Layout_layout_constraintTop_toBottomOf 46 +int styleable Layout_layout_constraintTop_toTopOf 47 +int styleable Layout_layout_constraintVertical_bias 48 +int styleable Layout_layout_constraintVertical_chainStyle 49 +int styleable Layout_layout_constraintVertical_weight 50 +int styleable Layout_layout_constraintWidth_default 51 +int styleable Layout_layout_constraintWidth_max 52 +int styleable Layout_layout_constraintWidth_min 53 +int styleable Layout_layout_constraintWidth_percent 54 +int styleable Layout_layout_editor_absoluteX 55 +int styleable Layout_layout_editor_absoluteY 56 +int styleable Layout_layout_goneMarginBottom 57 +int styleable Layout_layout_goneMarginEnd 58 +int styleable Layout_layout_goneMarginLeft 59 +int styleable Layout_layout_goneMarginRight 60 +int styleable Layout_layout_goneMarginStart 61 +int styleable Layout_layout_goneMarginTop 62 +int styleable Layout_maxHeight 63 +int styleable Layout_maxWidth 64 +int styleable Layout_minHeight 65 +int styleable Layout_minWidth 66 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x0, 0x0 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int[] styleable MaterialAutoCompleteTextView { 0x1010220, 0x101048c, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 2 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 3 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 4 +int styleable MaterialAutoCompleteTextView_simpleItems 5 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialButtonToggleGroup { 0x101000e, 0x0, 0x0, 0x0 } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int[] styleable MaterialCalendar { 0x101020d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x1010107, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialCheckBoxStates { 0x0, 0x0 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int[] styleable MaterialDivider { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x0, 0x0 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x0, 0x0 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconTint 1 +int styleable MaterialSwitch_thumbIconTintMode 2 +int styleable MaterialSwitch_trackDecoration 3 +int styleable MaterialSwitch_trackDecorationTint 4 +int styleable MaterialSwitch_trackDecorationTintMode 5 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x0 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x0 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x0, 0x0 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Motion_animate_relativeTo 0 +int styleable Motion_drawPath 1 +int styleable Motion_motionPathRotate 2 +int styleable Motion_motionStagger 3 +int styleable Motion_pathMotionArc 4 +int styleable Motion_transitionEasing 5 +int[] styleable MotionHelper { 0x0, 0x0 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x0, 0x0 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x0, 0x0, 0x0 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarActiveIndicator { 0x10101a5, 0x1010155, 0x1010159, 0x0, 0x0 } +int styleable NavigationBarActiveIndicator_android_color 0 +int styleable NavigationBarActiveIndicator_android_height 1 +int styleable NavigationBarActiveIndicator_android_width 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemActiveIndicatorStyle 2 +int styleable NavigationBarView_itemBackground 3 +int styleable NavigationBarView_itemIconSize 4 +int styleable NavigationBarView_itemIconTint 5 +int styleable NavigationBarView_itemPaddingBottom 6 +int styleable NavigationBarView_itemPaddingTop 7 +int styleable NavigationBarView_itemRippleColor 8 +int styleable NavigationBarView_itemTextAppearanceActive 9 +int styleable NavigationBarView_itemTextAppearanceInactive 10 +int styleable NavigationBarView_itemTextColor 11 +int styleable NavigationBarView_labelVisibilityMode 12 +int styleable NavigationBarView_menu 13 +int[] styleable NavigationRailView { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingTopSystemWindowInsets 4 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x10100b3, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_layout_gravity 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextColor 25 +int styleable NavigationView_itemVerticalPadding 26 +int styleable NavigationView_menu 27 +int styleable NavigationView_shapeAppearance 28 +int styleable NavigationView_shapeAppearanceOverlay 29 +int styleable NavigationView_subheaderColor 30 +int styleable NavigationView_subheaderInsetEnd 31 +int styleable NavigationView_subheaderInsetStart 32 +int styleable NavigationView_subheaderTextAppearance 33 +int styleable NavigationView_topInsetScrimEnabled 34 +int[] styleable OnClick { 0x0, 0x0 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable OnSwipe_dragDirection 0 +int styleable OnSwipe_dragScale 1 +int styleable OnSwipe_dragThreshold 2 +int styleable OnSwipe_limitBoundsTo 3 +int styleable OnSwipe_maxAcceleration 4 +int styleable OnSwipe_maxVelocity 5 +int styleable OnSwipe_moveWhenScrollAtTop 6 +int styleable OnSwipe_nestedScrollFlags 7 +int styleable OnSwipe_onTouchUp 8 +int styleable OnSwipe_touchAnchorId 9 +int styleable OnSwipe_touchAnchorSide 10 +int styleable OnSwipe_touchRegionId 11 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x0, 0x0, 0x0 } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x0 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x0, 0x0 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x0 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x0 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x1010150, 0x101014f, 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchBar_android_hint 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_textAppearance 2 +int styleable SearchBar_defaultMarginsEnabled 3 +int styleable SearchBar_defaultScrollFlagsEnabled 4 +int styleable SearchBar_elevation 5 +int styleable SearchBar_forceDefaultNavigationOnClickListener 6 +int styleable SearchBar_hideNavigationIcon 7 +int styleable SearchBar_navigationIconTint 8 +int styleable SearchBar_strokeColor 9 +int styleable SearchBar_strokeWidth 10 +int styleable SearchBar_tintNavigationIcon 11 +int[] styleable SearchView { 0x1010150, 0x101014f, 0x1010034, 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_hint 0 +int styleable SearchView_android_text 1 +int styleable SearchView_android_textAppearance 2 +int styleable SearchView_android_focusable 3 +int styleable SearchView_android_imeOptions 4 +int styleable SearchView_android_inputType 5 +int styleable SearchView_android_maxWidth 6 +int styleable SearchView_animateMenuItems 7 +int styleable SearchView_animateNavigationIcon 8 +int styleable SearchView_autoShowKeyboard 9 +int styleable SearchView_closeIcon 10 +int styleable SearchView_commitIcon 11 +int styleable SearchView_defaultQueryHint 12 +int styleable SearchView_goIcon 13 +int styleable SearchView_headerLayout 14 +int styleable SearchView_hideNavigationIcon 15 +int styleable SearchView_iconifiedByDefault 16 +int styleable SearchView_layout 17 +int styleable SearchView_queryBackground 18 +int styleable SearchView_queryHint 19 +int styleable SearchView_searchHintIcon 20 +int styleable SearchView_searchIcon 21 +int styleable SearchView_searchPrefixText 22 +int styleable SearchView_submitBackground 23 +int styleable SearchView_suggestionRowLayout 24 +int styleable SearchView_useDrawerArrowDrawable 25 +int styleable SearchView_voiceIcon 26 +int[] styleable ShapeAppearance { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x1010440, 0x1010120, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SideSheetBehavior_Layout_android_elevation 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_maxWidth 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbRadius 12 +int styleable Slider_thumbStrokeColor 13 +int styleable Slider_thumbStrokeWidth 14 +int styleable Slider_tickColor 15 +int styleable Slider_tickColorActive 16 +int styleable Slider_tickColorInactive 17 +int styleable Slider_tickRadiusActive 18 +int styleable Slider_tickRadiusInactive 19 +int styleable Slider_tickVisible 20 +int styleable Slider_trackColor 21 +int styleable Slider_trackColorActive 22 +int styleable Slider_trackColorInactive 23 +int styleable Slider_trackHeight 24 +int[] styleable Snackbar { 0x0, 0x0, 0x0 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x0, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x0 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x0 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x0 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextInputEditText { 0x0 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x1010157, 0x101011f, 0x101015a, 0x101013f, 0x101009a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxEms 2 +int styleable TextInputLayout_android_maxWidth 3 +int styleable TextInputLayout_android_minEms 4 +int styleable TextInputLayout_android_minWidth 5 +int styleable TextInputLayout_android_textColorHint 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_endIconCheckable 24 +int styleable TextInputLayout_endIconContentDescription 25 +int styleable TextInputLayout_endIconDrawable 26 +int styleable TextInputLayout_endIconMinSize 27 +int styleable TextInputLayout_endIconMode 28 +int styleable TextInputLayout_endIconScaleType 29 +int styleable TextInputLayout_endIconTint 30 +int styleable TextInputLayout_endIconTintMode 31 +int styleable TextInputLayout_errorAccessibilityLiveRegion 32 +int styleable TextInputLayout_errorContentDescription 33 +int styleable TextInputLayout_errorEnabled 34 +int styleable TextInputLayout_errorIconDrawable 35 +int styleable TextInputLayout_errorIconTint 36 +int styleable TextInputLayout_errorIconTintMode 37 +int styleable TextInputLayout_errorTextAppearance 38 +int styleable TextInputLayout_errorTextColor 39 +int styleable TextInputLayout_expandedHintEnabled 40 +int styleable TextInputLayout_helperText 41 +int styleable TextInputLayout_helperTextEnabled 42 +int styleable TextInputLayout_helperTextTextAppearance 43 +int styleable TextInputLayout_helperTextTextColor 44 +int styleable TextInputLayout_hintAnimationEnabled 45 +int styleable TextInputLayout_hintEnabled 46 +int styleable TextInputLayout_hintTextAppearance 47 +int styleable TextInputLayout_hintTextColor 48 +int styleable TextInputLayout_passwordToggleContentDescription 49 +int styleable TextInputLayout_passwordToggleDrawable 50 +int styleable TextInputLayout_passwordToggleEnabled 51 +int styleable TextInputLayout_passwordToggleTint 52 +int styleable TextInputLayout_passwordToggleTintMode 53 +int styleable TextInputLayout_placeholderText 54 +int styleable TextInputLayout_placeholderTextAppearance 55 +int styleable TextInputLayout_placeholderTextColor 56 +int styleable TextInputLayout_prefixText 57 +int styleable TextInputLayout_prefixTextAppearance 58 +int styleable TextInputLayout_prefixTextColor 59 +int styleable TextInputLayout_shapeAppearance 60 +int styleable TextInputLayout_shapeAppearanceOverlay 61 +int styleable TextInputLayout_startIconCheckable 62 +int styleable TextInputLayout_startIconContentDescription 63 +int styleable TextInputLayout_startIconDrawable 64 +int styleable TextInputLayout_startIconMinSize 65 +int styleable TextInputLayout_startIconScaleType 66 +int styleable TextInputLayout_startIconTint 67 +int styleable TextInputLayout_startIconTintMode 68 +int styleable TextInputLayout_suffixText 69 +int styleable TextInputLayout_suffixTextAppearance 70 +int styleable TextInputLayout_suffixTextColor 71 +int[] styleable ThemeEnforcement { 0x1010034, 0x0, 0x0 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x1010098, 0x0 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_android_textColor 6 +int styleable Tooltip_backgroundTint 7 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int[] styleable Transition { 0x10100d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..87bcea4b6fa70e89d4f728d7680a9a964e725bef Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..26b65cfe2b8cfecd39a650e47999aaab7da6b807 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..241f624e85dc3e6d547ecc19018609401ad2f065 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/proguard.txt @@ -0,0 +1,46 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# CoordinatorLayout resolves the behaviors of its child components with reflection. +-keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior { + public <init>(android.content.Context, android.util.AttributeSet); + public <init>(); +} + +# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior +-keepattributes RuntimeVisible*Annotation* + +# Copyright (C) 2018 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# AppCompatViewInflater reads the viewInflaterClass theme attribute which then +# reflectively instantiates MaterialComponentsViewInflater using the no-argument +# constructor. We only need to keep this constructor and the class name if +# AppCompatViewInflater is also being kept. +-if class androidx.appcompat.app.AppCompatViewInflater +-keep class com.google.android.material.theme.MaterialComponentsViewInflater { + <init>(); +} + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e632422c9d58e43500ba9662c0ecf5306fc8574 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/public.txt @@ -0,0 +1,1132 @@ +style Animation_Design_BottomSheetDialog +style MaterialAlertDialog_Material3 +style MaterialAlertDialog_Material3_Body_Text +style MaterialAlertDialog_Material3_Body_Text_CenterStacked +style MaterialAlertDialog_Material3_Title_Icon +style MaterialAlertDialog_Material3_Title_Icon_CenterStacked +style MaterialAlertDialog_Material3_Title_Panel +style MaterialAlertDialog_Material3_Title_Panel_CenterStacked +style MaterialAlertDialog_Material3_Title_Text +style MaterialAlertDialog_Material3_Title_Text_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style Platform_MaterialComponents +style Platform_MaterialComponents_Light +style ShapeAppearance_Material3_Corner_ExtraLarge +style ShapeAppearance_Material3_Corner_ExtraSmall +style ShapeAppearance_Material3_Corner_Full +style ShapeAppearance_Material3_Corner_Large +style ShapeAppearance_Material3_Corner_Medium +style ShapeAppearance_Material3_Corner_None +style ShapeAppearance_Material3_Corner_Small +style ShapeAppearance_Material3_LargeComponent +style ShapeAppearance_Material3_MediumComponent +style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator +style ShapeAppearance_Material3_SmallComponent +style ShapeAppearance_Material3_Tooltip +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Tooltip +style ShapeAppearanceOverlay_Material3_Button +style ShapeAppearanceOverlay_Material3_Chip +style ShapeAppearanceOverlay_Material3_Corner_Bottom +style ShapeAppearanceOverlay_Material3_Corner_Left +style ShapeAppearanceOverlay_Material3_Corner_Right +style ShapeAppearanceOverlay_Material3_Corner_Top +style ShapeAppearanceOverlay_Material3_FloatingActionButton +style ShapeAppearanceOverlay_Material3_NavigationView_Item +style ShapeAppearanceOverlay_Material3_SearchBar +style ShapeAppearanceOverlay_MaterialAlertDialog_Material3 +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Material3_ActionBar_Subtitle +style TextAppearance_Material3_ActionBar_Title +style TextAppearance_Material3_BodyLarge +style TextAppearance_Material3_BodyMedium +style TextAppearance_Material3_BodySmall +style TextAppearance_Material3_DisplayLarge +style TextAppearance_Material3_DisplayMedium +style TextAppearance_Material3_DisplaySmall +style TextAppearance_Material3_HeadlineLarge +style TextAppearance_Material3_HeadlineMedium +style TextAppearance_Material3_HeadlineSmall +style TextAppearance_Material3_LabelLarge +style TextAppearance_Material3_LabelMedium +style TextAppearance_Material3_LabelSmall +style TextAppearance_Material3_MaterialTimePicker_Title +style TextAppearance_Material3_SearchBar +style TextAppearance_Material3_SearchView +style TextAppearance_Material3_SearchView_Prefix +style TextAppearance_Material3_TitleLarge +style TextAppearance_Material3_TitleMedium +style TextAppearance_Material3_TitleSmall +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_Tooltip +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_Material3_Dark +style Theme_Material3_Dark_BottomSheetDialog +style Theme_Material3_Dark_Dialog +style Theme_Material3_Dark_Dialog_Alert +style Theme_Material3_Dark_Dialog_MinWidth +style Theme_Material3_Dark_DialogWhenLarge +style Theme_Material3_Dark_NoActionBar +style Theme_Material3_Dark_SideSheetDialog +style Theme_Material3_DayNight +style Theme_Material3_DayNight_BottomSheetDialog +style Theme_Material3_DayNight_Dialog +style Theme_Material3_DayNight_Dialog_Alert +style Theme_Material3_DayNight_Dialog_MinWidth +style Theme_Material3_DayNight_DialogWhenLarge +style Theme_Material3_DayNight_NoActionBar +style Theme_Material3_DayNight_SideSheetDialog +style Theme_Material3_DynamicColors_Dark +style Theme_Material3_DynamicColors_DayNight +style Theme_Material3_DynamicColors_Light +style Theme_Material3_Light +style Theme_Material3_Light_BottomSheetDialog +style Theme_Material3_Light_Dialog +style Theme_Material3_Light_Dialog_Alert +style Theme_Material3_Light_Dialog_MinWidth +style Theme_Material3_Light_DialogWhenLarge +style Theme_Material3_Light_NoActionBar +style Theme_Material3_Light_SideSheetDialog +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style ThemeOverlay_Material3 +style ThemeOverlay_Material3_AutoCompleteTextView +style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox +style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_Material3_BottomAppBar +style ThemeOverlay_Material3_BottomSheetDialog +style ThemeOverlay_Material3_Button +style ThemeOverlay_Material3_Button_ElevatedButton +style ThemeOverlay_Material3_Button_TextButton +style ThemeOverlay_Material3_Button_TextButton_Snackbar +style ThemeOverlay_Material3_Button_TonalButton +style ThemeOverlay_Material3_Dark +style ThemeOverlay_Material3_DayNight_BottomSheetDialog +style ThemeOverlay_Material3_DayNight_SideSheetDialog +style ThemeOverlay_Material3_Dialog +style ThemeOverlay_Material3_Dialog_Alert +style ThemeOverlay_Material3_DynamicColors_Dark +style ThemeOverlay_Material3_DynamicColors_DayNight +style ThemeOverlay_Material3_DynamicColors_Light +style ThemeOverlay_Material3_FloatingActionButton_Primary +style ThemeOverlay_Material3_FloatingActionButton_Secondary +style ThemeOverlay_Material3_FloatingActionButton_Surface +style ThemeOverlay_Material3_FloatingActionButton_Tertiary +style ThemeOverlay_Material3_Light +style ThemeOverlay_Material3_MaterialAlertDialog +style ThemeOverlay_Material3_MaterialAlertDialog_Centered +style ThemeOverlay_Material3_MaterialCalendar +style ThemeOverlay_Material3_MaterialCalendar_Fullscreen +style ThemeOverlay_Material3_MaterialTimePicker +style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText +style ThemeOverlay_Material3_NavigationView +style ThemeOverlay_Material3_Search +style ThemeOverlay_Material3_SideSheetDialog +style ThemeOverlay_Material3_Snackbar +style ThemeOverlay_Material3_TextInputEditText +style ThemeOverlay_Material3_TextInputEditText_FilledBox +style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense +style ThemeOverlay_Material3_TextInputEditText_OutlinedBox +style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_Material3_Toolbar_Surface +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputLayout +style Widget_Material3_ActionBar_Solid +style Widget_Material3_ActionMode +style Widget_Material3_AppBarLayout +style Widget_Material3_AutoCompleteTextView_FilledBox +style Widget_Material3_AutoCompleteTextView_FilledBox_Dense +style Widget_Material3_AutoCompleteTextView_OutlinedBox +style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense +style Widget_Material3_Badge +style Widget_Material3_BottomAppBar +style Widget_Material3_BottomNavigationView +style Widget_Material3_BottomNavigationView_ActiveIndicator +style Widget_Material3_BottomSheet +style Widget_Material3_BottomSheet_DragHandle +style Widget_Material3_BottomSheet_Modal +style Widget_Material3_Button +style Widget_Material3_Button_ElevatedButton +style Widget_Material3_Button_ElevatedButton_Icon +style Widget_Material3_Button_Icon +style Widget_Material3_Button_IconButton +style Widget_Material3_Button_IconButton_Filled +style Widget_Material3_Button_IconButton_Filled_Tonal +style Widget_Material3_Button_IconButton_Outlined +style Widget_Material3_Button_OutlinedButton +style Widget_Material3_Button_OutlinedButton_Icon +style Widget_Material3_Button_TextButton +style Widget_Material3_Button_TextButton_Dialog +style Widget_Material3_Button_TextButton_Dialog_Flush +style Widget_Material3_Button_TextButton_Dialog_Icon +style Widget_Material3_Button_TextButton_Icon +style Widget_Material3_Button_TextButton_Snackbar +style Widget_Material3_Button_TonalButton +style Widget_Material3_Button_TonalButton_Icon +style Widget_Material3_Button_UnelevatedButton +style Widget_Material3_CardView_Elevated +style Widget_Material3_CardView_Filled +style Widget_Material3_CardView_Outlined +style Widget_Material3_CheckedTextView +style Widget_Material3_Chip_Assist +style Widget_Material3_Chip_Assist_Elevated +style Widget_Material3_Chip_Filter +style Widget_Material3_Chip_Filter_Elevated +style Widget_Material3_Chip_Input +style Widget_Material3_Chip_Input_Elevated +style Widget_Material3_Chip_Input_Icon +style Widget_Material3_Chip_Input_Icon_Elevated +style Widget_Material3_Chip_Suggestion +style Widget_Material3_Chip_Suggestion_Elevated +style Widget_Material3_ChipGroup +style Widget_Material3_CircularProgressIndicator +style Widget_Material3_CircularProgressIndicator_ExtraSmall +style Widget_Material3_CircularProgressIndicator_Medium +style Widget_Material3_CircularProgressIndicator_Small +style Widget_Material3_CollapsingToolbar +style Widget_Material3_CollapsingToolbar_Large +style Widget_Material3_CollapsingToolbar_Medium +style Widget_Material3_CompoundButton_CheckBox +style Widget_Material3_CompoundButton_MaterialSwitch +style Widget_Material3_CompoundButton_RadioButton +style Widget_Material3_CompoundButton_Switch +style Widget_Material3_DrawerLayout +style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary +style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary +style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface +style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary +style Widget_Material3_ExtendedFloatingActionButton_Primary +style Widget_Material3_ExtendedFloatingActionButton_Secondary +style Widget_Material3_ExtendedFloatingActionButton_Surface +style Widget_Material3_ExtendedFloatingActionButton_Tertiary +style Widget_Material3_FloatingActionButton_Large_Primary +style Widget_Material3_FloatingActionButton_Large_Secondary +style Widget_Material3_FloatingActionButton_Large_Surface +style Widget_Material3_FloatingActionButton_Large_Tertiary +style Widget_Material3_FloatingActionButton_Primary +style Widget_Material3_FloatingActionButton_Secondary +style Widget_Material3_FloatingActionButton_Surface +style Widget_Material3_FloatingActionButton_Tertiary +style Widget_Material3_Light_ActionBar_Solid +style Widget_Material3_LinearProgressIndicator +style Widget_Material3_MaterialCalendar +style Widget_Material3_MaterialCalendar_Day +style Widget_Material3_MaterialCalendar_Day_Invalid +style Widget_Material3_MaterialCalendar_Day_Selected +style Widget_Material3_MaterialCalendar_Day_Today +style Widget_Material3_MaterialCalendar_Fullscreen +style Widget_Material3_MaterialCalendar_Item +style Widget_Material3_MaterialCalendar_Year +style Widget_Material3_MaterialCalendar_Year_Selected +style Widget_Material3_MaterialCalendar_Year_Today +style Widget_Material3_MaterialDivider +style Widget_Material3_MaterialDivider_Heavy +style Widget_Material3_MaterialTimePicker +style Widget_Material3_MaterialTimePicker_Button +style Widget_Material3_MaterialTimePicker_Clock +style Widget_Material3_MaterialTimePicker_Display +style Widget_Material3_MaterialTimePicker_Display_Divider +style Widget_Material3_MaterialTimePicker_Display_HelperText +style Widget_Material3_MaterialTimePicker_Display_TextInputEditText +style Widget_Material3_MaterialTimePicker_Display_TextInputLayout +style Widget_Material3_MaterialTimePicker_ImageButton +style Widget_Material3_NavigationRailView +style Widget_Material3_NavigationRailView_ActiveIndicator +style Widget_Material3_NavigationView +style Widget_Material3_PopupMenu +style Widget_Material3_PopupMenu_ContextMenu +style Widget_Material3_PopupMenu_ListPopupWindow +style Widget_Material3_PopupMenu_Overflow +style Widget_Material3_Search_ActionButton_Overflow +style Widget_Material3_Search_Toolbar_Button_Navigation +style Widget_Material3_SearchBar +style Widget_Material3_SearchBar_Outlined +style Widget_Material3_SearchView +style Widget_Material3_SearchView_Prefix +style Widget_Material3_SearchView_Toolbar +style Widget_Material3_SideSheet +style Widget_Material3_SideSheet_Modal +style Widget_Material3_Slider +style Widget_Material3_Snackbar +style Widget_Material3_Snackbar_FullWidth +style Widget_Material3_Snackbar_TextView +style Widget_Material3_TabLayout +style Widget_Material3_TabLayout_OnSurface +style Widget_Material3_TabLayout_Secondary +style Widget_Material3_TextInputEditText_FilledBox +style Widget_Material3_TextInputEditText_FilledBox_Dense +style Widget_Material3_TextInputEditText_OutlinedBox +style Widget_Material3_TextInputEditText_OutlinedBox_Dense +style Widget_Material3_TextInputLayout_FilledBox +style Widget_Material3_TextInputLayout_FilledBox_Dense +style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_Material3_TextInputLayout_OutlinedBox +style Widget_Material3_TextInputLayout_OutlinedBox_Dense +style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_Material3_Toolbar +style Widget_Material3_Toolbar_OnSurface +style Widget_Material3_Toolbar_Surface +style Widget_Material3_Tooltip +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_MaterialDivider +style Widget_MaterialComponents_NavigationRailView +style Widget_MaterialComponents_NavigationRailView_Colored +style Widget_MaterialComponents_NavigationRailView_Colored_Compact +style Widget_MaterialComponents_NavigationRailView_Compact +style Widget_MaterialComponents_NavigationRailView_PrimarySurface +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +attr addElevationShadow +attr animationMode +attr appBarLayoutStyle +string appbar_scrolling_view_behavior +attr backgroundColor +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundTint +attr badgeGravity +attr badgeHeight +attr badgeShapeAppearance +attr badgeShapeAppearanceOverlay +attr badgeStyle +attr badgeTextAppearance +attr badgeTextColor +attr badgeWidth +attr badgeWithTextHeight +attr badgeWithTextShapeAppearance +attr badgeWithTextShapeAppearanceOverlay +attr badgeWithTextWidth +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_significantVelocityThreshold +attr behavior_skipCollapsed +attr borderWidth +attr bottomAppBarStyle +attr bottomInsetScrimEnabled +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetDragHandleStyle +attr bottomSheetStyle +string bottom_sheet_behavior +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr buttonIcon +attr buttonIconTint +attr buttonIconTintMode +attr cardForegroundColor +attr centerIfNoTextEnabled +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconGravity +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedState +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr circularProgressIndicatorStyle +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsedTitleTextColor +attr collapsingToolbarLayoutLargeSize +attr collapsingToolbarLayoutLargeStyle +attr collapsingToolbarLayoutMediumSize +attr collapsingToolbarLayoutMediumStyle +attr collapsingToolbarLayoutStyle +attr colorErrorContainer +attr colorOnBackground +attr colorOnError +attr colorOnErrorContainer +attr colorOnPrimary +attr colorOnPrimaryContainer +attr colorOnPrimaryFixed +attr colorOnPrimaryFixedVariant +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSecondaryContainer +attr colorOnSecondaryFixed +attr colorOnSecondaryFixedVariant +attr colorOnSurface +attr colorOnSurfaceInverse +attr colorOnSurfaceVariant +attr colorOnTertiary +attr colorOnTertiaryContainer +attr colorOnTertiaryFixed +attr colorOnTertiaryFixedVariant +attr colorOutline +attr colorOutlineVariant +attr colorPrimaryContainer +attr colorPrimaryFixed +attr colorPrimaryFixedDim +attr colorPrimaryInverse +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryContainer +attr colorSecondaryFixed +attr colorSecondaryFixedDim +attr colorSecondaryVariant +attr colorSurface +attr colorSurfaceBright +attr colorSurfaceContainer +attr colorSurfaceContainerHigh +attr colorSurfaceContainerHighest +attr colorSurfaceContainerLow +attr colorSurfaceContainerLowest +attr colorSurfaceDim +attr colorSurfaceInverse +attr colorSurfaceVariant +attr colorTertiary +attr colorTertiaryContainer +attr colorTertiaryFixed +attr colorTertiaryFixedDim +attr compatShadowEnabled +attr contentPaddingEnd +attr contentPaddingStart +attr contentScrim +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultMarginsEnabled +attr defaultScrollFlagsEnabled +color design_default_color_background +color design_default_color_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +attr dividerColor +attr dividerInsetEnd +attr dividerInsetStart +attr dividerThickness +attr drawerLayoutCornerSize +attr dynamicColorThemeOverlay +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMinSize +attr endIconMode +attr endIconScaleType +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorAccessibilityLabel +attr errorAccessibilityLiveRegion +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorShown +attr errorTextAppearance +attr errorTextColor +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr expandedTitleTextColor +attr extendMotionSpec +attr extendStrategy +attr extendedFloatingActionButtonPrimaryStyle +attr extendedFloatingActionButtonSecondaryStyle +attr extendedFloatingActionButtonStyle +attr extendedFloatingActionButtonSurfaceStyle +attr extendedFloatingActionButtonTertiaryStyle +attr fabAlignmentMode +attr fabAlignmentModeEndMargin +attr fabAnchorMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +attr floatingActionButtonLargePrimaryStyle +attr floatingActionButtonLargeSecondaryStyle +attr floatingActionButtonLargeStyle +attr floatingActionButtonLargeSurfaceStyle +attr floatingActionButtonLargeTertiaryStyle +attr floatingActionButtonPrimaryStyle +attr floatingActionButtonSecondaryStyle +attr floatingActionButtonSmallPrimaryStyle +attr floatingActionButtonSmallSecondaryStyle +attr floatingActionButtonSmallStyle +attr floatingActionButtonSmallSurfaceStyle +attr floatingActionButtonSmallTertiaryStyle +attr floatingActionButtonStyle +attr floatingActionButtonSurfaceStyle +attr floatingActionButtonTertiaryStyle +attr forceDefaultNavigationOnClickListener +attr gestureInsetBottomIgnored +attr haloColor +attr haloRadius +attr headerLayout +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideNavigationIcon +attr hideOnScroll +string hide_bottom_view_on_scroll_behavior +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr indeterminateAnimationType +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr insetForeground +attr itemActiveIndicatorStyle +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemMinHeight +attr itemPaddingBottom +attr itemPaddingTop +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr itemVerticalPadding +attr keyboardIcon +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastItemDecorated +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_scrollEffect +attr layout_scrollFlags +attr layout_scrollInterpolator +attr liftOnScroll +attr liftOnScrollColor +attr liftOnScrollTargetViewId +attr linearProgressIndicatorStyle +attr logoAdjustViewBounds +attr logoScaleType +attr marginHorizontal +attr marginLeftSystemWindowInsets +attr marginRightSystemWindowInsets +attr marginTopSystemWindowInsets +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogButtonSpacerVisibility +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarFullscreenTheme +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCardViewElevatedStyle +attr materialCardViewFilledStyle +attr materialCardViewOutlinedStyle +attr materialCardViewStyle +attr materialClockStyle +attr materialDividerHeavyStyle +attr materialDividerStyle +attr materialIconButtonFilledStyle +attr materialIconButtonFilledTonalStyle +attr materialIconButtonOutlinedStyle +attr materialIconButtonStyle +attr materialSearchBarStyle +attr materialSearchViewPrefixStyle +attr materialSearchViewStyle +attr materialSwitchStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +color material_dynamic_neutral0 +color material_dynamic_neutral10 +color material_dynamic_neutral100 +color material_dynamic_neutral20 +color material_dynamic_neutral30 +color material_dynamic_neutral40 +color material_dynamic_neutral50 +color material_dynamic_neutral60 +color material_dynamic_neutral70 +color material_dynamic_neutral80 +color material_dynamic_neutral90 +color material_dynamic_neutral95 +color material_dynamic_neutral99 +color material_dynamic_neutral_variant0 +color material_dynamic_neutral_variant10 +color material_dynamic_neutral_variant100 +color material_dynamic_neutral_variant20 +color material_dynamic_neutral_variant30 +color material_dynamic_neutral_variant40 +color material_dynamic_neutral_variant50 +color material_dynamic_neutral_variant60 +color material_dynamic_neutral_variant70 +color material_dynamic_neutral_variant80 +color material_dynamic_neutral_variant90 +color material_dynamic_neutral_variant95 +color material_dynamic_neutral_variant99 +color material_dynamic_primary0 +color material_dynamic_primary10 +color material_dynamic_primary100 +color material_dynamic_primary20 +color material_dynamic_primary30 +color material_dynamic_primary40 +color material_dynamic_primary50 +color material_dynamic_primary60 +color material_dynamic_primary70 +color material_dynamic_primary80 +color material_dynamic_primary90 +color material_dynamic_primary95 +color material_dynamic_primary99 +color material_dynamic_secondary0 +color material_dynamic_secondary10 +color material_dynamic_secondary100 +color material_dynamic_secondary20 +color material_dynamic_secondary30 +color material_dynamic_secondary40 +color material_dynamic_secondary50 +color material_dynamic_secondary60 +color material_dynamic_secondary70 +color material_dynamic_secondary80 +color material_dynamic_secondary90 +color material_dynamic_secondary95 +color material_dynamic_secondary99 +color material_dynamic_tertiary0 +color material_dynamic_tertiary10 +color material_dynamic_tertiary100 +color material_dynamic_tertiary20 +color material_dynamic_tertiary30 +color material_dynamic_tertiary40 +color material_dynamic_tertiary50 +color material_dynamic_tertiary60 +color material_dynamic_tertiary70 +color material_dynamic_tertiary80 +color material_dynamic_tertiary90 +color material_dynamic_tertiary95 +color material_dynamic_tertiary99 +dimen material_emphasis_disabled +dimen material_emphasis_disabled_background +dimen material_emphasis_high_type +dimen material_emphasis_medium +integer material_motion_duration_long_1 +integer material_motion_duration_long_2 +integer material_motion_duration_medium_1 +integer material_motion_duration_medium_2 +integer material_motion_duration_short_1 +integer material_motion_duration_short_2 +string material_motion_easing_accelerated +string material_motion_easing_decelerated +string material_motion_easing_emphasized +string material_motion_easing_linear +string material_motion_easing_standard +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +attr maxActionInlineWidth +attr maxCharacterCount +attr maxImageSize +attr maxLines +attr menu +attr menuAlignmentMode +attr menuGravity +attr minHideDelay +attr minTouchTargetSize +attr motionDurationExtraLong1 +attr motionDurationExtraLong2 +attr motionDurationExtraLong3 +attr motionDurationExtraLong4 +attr motionDurationLong1 +attr motionDurationLong2 +attr motionDurationLong3 +attr motionDurationLong4 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationMedium3 +attr motionDurationMedium4 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionDurationShort3 +attr motionDurationShort4 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingEmphasizedAccelerateInterpolator +attr motionEasingEmphasizedDecelerateInterpolator +attr motionEasingEmphasizedInterpolator +attr motionEasingLinear +attr motionEasingLinearInterpolator +attr motionEasingStandard +attr motionEasingStandardAccelerateInterpolator +attr motionEasingStandardDecelerateInterpolator +attr motionEasingStandardInterpolator +attr motionPath +attr navigationIconTint +attr navigationRailStyle +attr navigationViewStyle +attr number +attr offsetAlignmentMode +attr paddingBottomSystemWindowInsets +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingTopSystemWindowInsets +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr popupMenuBackground +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr pressedTranslationZ +attr rangeFillColor +attr removeEmbeddedFabElevation +attr rippleColor +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr selectionRequired +attr shapeAppearance +attr shapeAppearanceCornerExtraLarge +attr shapeAppearanceCornerExtraSmall +attr shapeAppearanceCornerLarge +attr shapeAppearanceCornerMedium +attr shapeAppearanceCornerSmall +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr shapeCornerFamily +attr showAnimationBehavior +attr showDelay +attr showMotionSpec +attr shrinkMotionSpec +attr sideSheetDialogTheme +attr sideSheetModalStyle +string side_sheet_behavior +attr simpleItemLayout +attr simpleItemSelectedColor +attr simpleItemSelectedRippleColor +attr simpleItems +attr singleLine +attr singleSelection +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconMinSize +attr startIconScaleType +attr startIconTint +attr startIconTintMode +attr state_dragged +attr state_error +attr state_indeterminate +attr state_liftable +attr state_lifted +attr statusBarForeground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subheaderColor +attr subheaderInsetEnd +attr subheaderInsetStart +attr subheaderTextAppearance +attr subtitleCentered +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSecondaryStyle +attr tabSelectedTextAppearance +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceBodyLarge +attr textAppearanceBodyMedium +attr textAppearanceBodySmall +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceDisplayLarge +attr textAppearanceDisplayMedium +attr textAppearanceDisplaySmall +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceHeadlineLarge +attr textAppearanceHeadlineMedium +attr textAppearanceHeadlineSmall +attr textAppearanceLabelLarge +attr textAppearanceLabelMedium +attr textAppearanceLabelSmall +attr textAppearanceOverline +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textAppearanceTitleLarge +attr textAppearanceTitleMedium +attr textAppearanceTitleSmall +attr textEndPadding +attr textInputFilledDenseStyle +attr textInputFilledExposedDropdownMenuStyle +attr textInputFilledStyle +attr textInputLayoutFocusedRectEnabled +attr textInputOutlinedDenseStyle +attr textInputOutlinedExposedDropdownMenuStyle +attr textInputOutlinedStyle +attr textInputStyle +attr textStartPadding +attr thumbColor +attr thumbElevation +attr thumbIcon +attr thumbIconTint +attr thumbIconTintMode +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickRadiusActive +attr tickRadiusInactive +attr tickVisible +attr tintNavigationIcon +attr titleCentered +attr titleEnabled +attr titlePositionInterpolator +attr titleTextEllipsize +attr toggleCheckedStateOnClick +attr toolbarId +attr toolbarSurfaceStyle +attr tooltipStyle +attr topInsetScrimEnabled +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackDecoration +attr trackDecorationTint +attr trackDecorationTintMode +attr trackHeight +attr trackThickness +attr transitionShapeAppearance +attr useCompatPadding +attr useMaterialThemeColors +attr values +attr verticalOffset +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e077252987bfb48356b7a8ad99e0dd16f3e9241e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..30d0d0dad6092e8cebf3ad208e1a2a145775521c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/bottom_sheet_slide_duration" + android:interpolator="@android:interpolator/fast_out_linear_in"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..459c216702b864c300f2ba17d2210301a260adfb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/design_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/bottom_sheet_slide_duration" + android:interpolator="@android:interpolator/fast_out_slow_in"> + + <translate + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e0bb9289e636a9ee44b92a5164507bb536da623 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/m3_sys_motion_duration_medium4" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba7bdc12588d8b8df4931fb1a4d05ee2fbc4430d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_bottom_sheet_slide_out.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + + <translate + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:duration="@integer/m3_sys_motion_duration_medium2" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..288b5e11c201164f3d6cd01504b2043db5adf8f4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="250" + android:interpolator="@android:interpolator/linear_out_slow_in"> + + <translate + android:fromXDelta="20%p" + android:toXDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..86781c3dce5e291f8cea78d40debc0a059a4a2d4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/m3_side_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="200" + android:interpolator="@android:interpolator/fast_out_linear_in"> + + <translate + android:fromXDelta="0" + android:toXDelta="50%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..737e410fb967b105ca84bbba2bd8d20e4f2d3fc0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="250" + android:interpolator="@android:interpolator/linear_out_slow_in"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e63b7bafc9882eb7a3c4ed5fc19223e2d26b1b1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim-v21/mtrl_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="200" + android:interpolator="@android:interpolator/fast_out_linear_in"> + + <translate + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..b01829edfbfd7b0412882a75c422b59ec1901372 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/bottom_sheet_slide_duration" + android:interpolator="@android:anim/accelerate_decelerate_interpolator"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..12fd977ab459f9a9b7a8c258db9ac9bbc4267a2e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/bottom_sheet_slide_duration" + android:interpolator="@android:anim/accelerate_interpolator"> + + <translate + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..45e6ccb1cfd3cd0c89ccc849cf463e2ed8520996 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_in.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="100%" + android:toYDelta="0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..5e21a20cbbbe9e51c17c2e1651eed0dd6ff4c746 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/design_snackbar_out.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="0" + android:toYDelta="100%"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_head_interpolator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_head_interpolator.xml new file mode 100644 index 0000000000000000000000000000000000000000..627678fbc8c1ecdfcaf5e4265105fe1918d46d10 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_head_interpolator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:controlX1="0.2" + android:controlX2="0.8" + android:controlY1="0.0" + android:controlY2="1.0" + tools:ignore="UnusedAttribute" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_tail_interpolator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_tail_interpolator.xml new file mode 100644 index 0000000000000000000000000000000000000000..82ca9eb49a6aa072a585991a0deafe888bd13c64 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line1_tail_interpolator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="UnusedAttribute" + android:controlX1="0.4" + android:controlY1="0.0" + android:controlX2="1.0" + android:controlY2="1.0"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_head_interpolator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_head_interpolator.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b5cac83da6e300d980d9cca0956ac7d2bbf16db --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_head_interpolator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:controlX1="0.0" + android:controlX2="0.65" + android:controlY1="0.0" + android:controlY2="1.0" + tools:ignore="UnusedAttribute" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_tail_interpolator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_tail_interpolator.xml new file mode 100644 index 0000000000000000000000000000000000000000..783416304b669cd54aa7e1f71421f655ae3d2442 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/linear_indeterminate_line2_tail_interpolator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:controlX1="0.1" + android:controlX2="0.45" + android:controlY1="0.0" + android:controlY2="1.0" + tools:ignore="UnusedAttribute" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e0bb9289e636a9ee44b92a5164507bb536da623 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/m3_sys_motion_duration_medium4" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..37c1742aa2b3954210b03811aff0a5bebc5b0d7d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_bottom_sheet_slide_out.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + + <translate + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:duration="@integer/m3_sys_motion_duration_medium2" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_enter.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_enter.xml new file mode 100644 index 0000000000000000000000000000000000000000..aac4280106e76d56ec3cc5bd6d02f21629a3d528 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_enter.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- An XML implementation of the Material fade pattern --> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/m3_sys_motion_duration_medium4" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized_decelerate" + android:shareInterpolator="true"> + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0" /> + <scale + android:fromXScale="0.8" + android:fromYScale="0.8" + android:pivotX="50%" + android:pivotY="50%" + android:toXScale="1" + android:toYScale="1" /> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_exit.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_exit.xml new file mode 100644 index 0000000000000000000000000000000000000000..b18a7c95ae59807a6f093d49fa1eebc9d63128c2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_motion_fade_exit.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- An XML implementation of the Material fade pattern --> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized_accelerate" + android:shareInterpolator="true"> + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0" /> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..b330110673a23397b427cfb58081fdebd68301a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="250" + android:interpolator="@android:anim/accelerate_decelerate_interpolator"> + + <translate + android:fromXDelta="20%p" + android:toXDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..8c561faae0f76534346b332338c17ec03ae3cce0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/m3_side_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="200" + android:interpolator="@android:anim/accelerate_interpolator"> + + <translate + android:fromXDelta="0" + android:toXDelta="20%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..34a8b7b1b3269afbd67b3f889a76f727c99c2028 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="250" + android:interpolator="@android:anim/accelerate_decelerate_interpolator"> + + <translate + android:fromYDelta="20%p" + android:toYDelta="0"/> + + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_out.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_out.xml new file mode 100644 index 0000000000000000000000000000000000000000..3a4c67a192274f92c533811955a2ecd7c5bb139e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:duration="200" + android:interpolator="@android:anim/accelerate_interpolator"> + + <translate + android:fromYDelta="0" + android:toYDelta="20%p"/> + + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0"/> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_card_lowers_interpolator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_card_lowers_interpolator.xml new file mode 100644 index 0000000000000000000000000000000000000000..a80d7817657c294e286c5da04c3138d798ccf066 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/anim/mtrl_card_lowers_interpolator.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="0.4" + android:controlY1="0" + android:controlX2="0.6" + android:controlY2="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/design_appbar_state_list_animator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/design_appbar_state_list_animator.xml new file mode 100644 index 0000000000000000000000000000000000000000..94ee6931f9aefb6930a4172250da2c8c3469da9a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/design_appbar_state_list_animator.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <item + android:state_enabled="true" + app:state_lifted="false" + app:state_liftable="true"> + <objectAnimator + android:duration="@integer/app_bar_elevation_anim_duration" + android:propertyName="elevation" + android:valueTo="0dp" + android:valueType="floatType"/> + </item> + + <item android:state_enabled="true"> + <objectAnimator + android:duration="@integer/app_bar_elevation_anim_duration" + android:propertyName="elevation" + android:valueTo="@dimen/design_appbar_elevation" + android:valueType="floatType"/> + </item> + + <item> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="0" + android:valueType="floatType"/> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/m3_appbar_state_list_animator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/m3_appbar_state_list_animator.xml new file mode 100644 index 0000000000000000000000000000000000000000..b1805e1e40dde995270e2d1324909348b0731fc6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator-v21/m3_appbar_state_list_animator.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <item + android:state_enabled="true" + app:state_lifted="false" + app:state_liftable="true"> + <objectAnimator + android:duration="@integer/app_bar_elevation_anim_duration" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_top_app_bar_small_container_elevation" + android:valueType="floatType"/> + </item> + + <item android:state_enabled="true"> + <objectAnimator + android:duration="@integer/app_bar_elevation_anim_duration" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_top_app_bar_small_on_scroll_container_elevation" + android:valueType="floatType"/> + </item> + + <item> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_top_app_bar_small_container_elevation" + android:valueType="floatType"/> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_hide_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_hide_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..c748813e02108b58927bed218ef0cf2240570df5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_hide_motion_spec.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_linear_in"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_linear_in"/> + <objectAnimator + android:propertyName="iconScale" + android:startOffset="200" + android:duration="0" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_show_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_show_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfddceec8a3051a65ab0352ca8ebfa2def26a4fb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/design_fab_show_motion_spec.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_linear_out_slow_in"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_linear_out_slow_in"/> + <objectAnimator + android:propertyName="iconScale" + android:startOffset="0" + android:duration="0" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_elevated_btn_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_elevated_btn_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1d5edd74178781134c4da1135d21e75a26e4903 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_elevated_btn_state_list_anim.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <selector> + + <!-- Hover state. This is triggered via mouse. --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <set> + <objectAnimator + android:duration="@integer/m3_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_btn_translation_z_hovered" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_elevated_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/m3_btn_anim_duration_ms" + android:propertyName="translationZ" + android:startDelay="@integer/m3_btn_anim_delay_ms" + android:valueTo="@dimen/m3_btn_translation_z_base" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_elevated_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <set> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_btn_disabled_translation_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_disabled_elevation" + android:valueType="floatType"/> + </set> + </item> + + </selector> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..56d21ec072f063630ff7ad27053c81ddb7c9f655 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_btn_state_list_anim.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <selector> + + <!-- Hover state. This is triggered via mouse. --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <set> + <objectAnimator + android:duration="@integer/m3_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_btn_translation_z_hovered" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/m3_btn_anim_duration_ms" + android:propertyName="translationZ" + android:startDelay="@integer/m3_btn_anim_delay_ms" + android:valueTo="@dimen/m3_btn_translation_z_base" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <set> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_btn_disabled_translation_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_btn_disabled_elevation" + android:valueType="floatType"/> + </set> + </item> + + </selector> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_elevated_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_elevated_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..c64e9125ef332f09141c59f572339001814750bb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_elevated_state_list_anim.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector + 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"> + + <!-- Hovered state --> + <item android:state_enabled="true" android:state_hovered="true"> + <objectAnimator + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:propertyName="translationZ" + android:startDelay="?attr/motionDurationMedium1" + android:valueTo="@dimen/m3_card_elevated_hovered_z" + android:valueType="floatType" + tools:targetApi="kitkat"/> + </item> + + <!-- Dragged state --> + <item android:state_enabled="true" app:state_dragged="true"> + <objectAnimator + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:propertyName="translationZ" + android:startDelay="?attr/motionDurationMedium1" + android:valueTo="@dimen/m3_card_elevated_dragged_z" + android:valueType="floatType" + tools:targetApi="kitkat"/> + </item> + + <!-- Base state --> + <item> + <set> + <objectAnimator + android:duration="?attr/motionDurationLong2" + android:propertyName="translationZ" + android:valueTo="0dp" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="0dp" + android:valueType="floatType"/> + </item> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..702ab946e03244360230068f04d00d8884d2bfc9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_card_state_list_anim.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector + 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"> + + <!-- Hovered state --> + <item android:state_enabled="true" android:state_hovered="true"> + <objectAnimator + android:duration="?attr/motionDurationMedium4" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_card_hovered_z" + android:startDelay="?attr/motionDurationMedium1" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:valueType="floatType" + tools:targetApi="kitkat"/> + </item> + + <!-- Dragged state --> + <item android:state_enabled="true" app:state_dragged="true"> + <objectAnimator + android:duration="?attr/motionDurationMedium4" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_card_dragged_z" + android:startDelay="?attr/motionDurationMedium1" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:valueType="floatType" + tools:targetApi="kitkat"/> + </item> + + <!-- Base state --> + <item android:state_enabled="true"> + <objectAnimator + android:duration="?attr/motionDurationLong2" + android:propertyName="translationZ" + android:valueTo="0dp" + android:interpolator="?attr/motionEasingEmphasizedInterpolator" + android:valueType="floatType"/> + </item> + + <!-- Disabled state --> + <item> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="0dp" + android:valueType="floatType"/> + </item> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_chip_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_chip_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..57183292eb1d3318a04b0f5851dca015785d713a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_chip_state_list_anim.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- TODO: Uncomment the below section when we implemented Dragged state --> +<!-- <item--> +<!-- android:state_enabled="true"--> +<!-- app:state_dragged="true">--> +<!-- <objectAnimator--> +<!-- android:duration="@integer/m3_chip_anim_duration"--> +<!-- android:propertyName="translationZ"--> +<!-- android:valueTo="@dimen/m3_chip_dragged_translation_z"--> +<!-- android:valueType="floatType"/>--> +<!-- </item>--> + + <!-- Selected & hovered state --> + <item + android:state_enabled="true" + android:state_selected="true" + android:state_hovered="true"> + <objectAnimator + android:duration="@integer/m3_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_chip_checked_hovered_translation_z" + android:valueType="floatType"/> + </item> + + <!-- Checked & hovered state --> + <item + android:state_enabled="true" + android:state_checked="true" + android:state_hovered="true"> + <objectAnimator + android:duration="@integer/m3_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_chip_checked_hovered_translation_z" + android:valueType="floatType"/> + </item> + + <!-- Other states --> + <item> + <objectAnimator + android:duration="@integer/m3_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="0" + android:valueType="floatType"/> + </item> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_elevated_chip_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_elevated_chip_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..240f429991aef934191e8da78d7baef0d1163335 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_elevated_chip_state_list_anim.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- TODO: Uncomment the below section when we implemented Dragged state --> +<!-- <item--> +<!-- android:state_enabled="true"--> +<!-- app:state_dragged="true">--> +<!-- <objectAnimator--> +<!-- android:duration="@integer/m3_chip_anim_duration"--> +<!-- android:propertyName="translationZ"--> +<!-- android:valueTo="@dimen/m3_chip_dragged_translation_z"--> +<!-- android:valueType="floatType"/>--> +<!-- </item>--> + + <!-- Hovered state --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <objectAnimator + android:duration="@integer/m3_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_chip_hovered_translation_z" + android:valueType="floatType"/> + </item> + + <!-- Enabled state --> + <item android:state_enabled="true"> + <objectAnimator + android:duration="@integer/m3_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="0" + android:valueType="floatType"/> + </item> + + <!-- Disabled state --> + <item> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_chip_disabled_translation_z" + android:valueType="floatType"/> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..f785c55fbff77e2dcfcba8a4400080ae7e016f08 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="width" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="height" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="paddingStart" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="paddingEnd" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="labelOpacity" + android:startOffset="?attr/motionDurationShort1" + android:duration="?attr/motionDurationShort2" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_expand_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_expand_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..30e3064a54410bc2d39ce5c5cfa51b5b6c9fb907 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_change_size_expand_motion_spec.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="width" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="height" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="paddingStart" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="paddingEnd" + android:startOffset="0" + android:duration="?attr/motionDurationMedium4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="labelOpacity" + android:startOffset="?attr/motionDurationShort2" + android:duration="?attr/motionDurationShort4" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_hide_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_hide_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..1338b3e10f01b677d71e16fba69b634c245c2099 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_hide_motion_spec.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="?attr/motionDurationShort3" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="?attr/motionDurationMedium1" + android:valueFrom="1.0" + android:valueTo="0.4" + android:valueType="floatType" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_show_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_show_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..1d0bef623150d546b3ad40750a3f64bec845b258 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_show_motion_spec.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" + > + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="?attr/motionDurationLong2" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="?attr/motionDurationLong2" + android:valueFrom="0.4" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="?attr/motionEasingEmphasizedInterpolator"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_state_list_animator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_state_list_animator.xml new file mode 100644 index 0000000000000000000000000000000000000000..872cba333957916b7b10bcb923210f7e14ba23d7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/m3_extended_fab_state_list_animator.xml @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <selector> + + <!-- Pressed state --> + <item + android:state_enabled="true" + android:state_pressed="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_comp_extended_fab_primary_pressed_container_elevation" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_extended_fab_primary_container_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Hover state. This is triggered via mouse. --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_comp_extended_fab_primary_hover_container_elevation" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_extended_fab_primary_container_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Focused state. This is triggered via keyboard. --> + <item + android:state_enabled="true" + android:state_focused="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/m3_comp_extended_fab_primary_focus_container_elevation" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_extended_fab_primary_container_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled, not pressed) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:startDelay="@integer/mtrl_btn_anim_delay_ms" + android:valueTo="@dimen/mtrl_extended_fab_translation_z_base" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/m3_comp_extended_fab_primary_container_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <set> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_extended_fab_disabled_translation_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_disabled_elevation" + android:valueType="floatType"/> + </set> + </item> + + </selector> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..38d4d9fe5cf05f89027c68085c6cb840099647c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_state_list_anim.xml @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:tools="http://schemas.android.com/tools" + xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Pressed state --> + <item + android:state_enabled="true" + android:state_pressed="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_btn_pressed_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Hover state. This is triggered via mouse. --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_btn_hovered_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Focused state. This is triggered via keyboard. --> + <item + android:state_enabled="true" + android:state_focused="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_btn_focused_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled, not pressed) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:startDelay="@integer/mtrl_btn_anim_delay_ms" + android:valueTo="@dimen/mtrl_btn_z" + android:valueType="floatType" + tools:ignore="UnusedAttribute"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_btn_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <set> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_btn_disabled_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_btn_disabled_elevation" + android:valueType="floatType"/> + </set> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_unelevated_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_unelevated_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d5834ad324e4b230d802f50fad5f8f08f461e11 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_btn_unelevated_state_list_anim.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- Empty state list animator to override shadow effects from default MaterialButton --> +<selector/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_card_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_card_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..058c65befa28eb50bd9b356111b449a3f17b68d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_card_state_list_anim.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> + <!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <!-- Dragged state --> + <item + android:state_enabled="true" + app:state_dragged="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_card_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_card_dragged_z" + android:startDelay="@integer/mtrl_card_anim_delay_ms" + android:interpolator="@interpolator/mtrl_fast_out_slow_in" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled, not Dragged) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_card_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="0dp" + android:interpolator="@anim/mtrl_card_lowers_interpolator" + android:valueType="floatType"/> + </set> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_chip_state_list_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_chip_state_list_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..dcdb4d18955516bc00da986be23ecea6ffc52c00 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_chip_state_list_anim.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Pressed state --> + <item + android:state_enabled="true" + android:state_pressed="true"> + <objectAnimator + android:duration="@integer/mtrl_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_chip_pressed_translation_z" + android:valueType="floatType"/> + </item> + + <!-- Enabled state --> + <item android:state_enabled="true"> + <objectAnimator + android:duration="@integer/mtrl_chip_anim_duration" + android:propertyName="translationZ" + android:valueTo="0" + android:valueType="floatType"/> + </item> + + <!-- Disabled state --> + <item> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="0" + android:valueType="floatType"/> + </item> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4b8018f19eccda1fcc03c1e3630ed5a7827eff5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="width" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="height" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="paddingStart" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="paddingEnd" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="labelOpacity" + android:startOffset="16" + android:duration="33" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..d03b023b028a60c09e371dea06db758f9bef3e0a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="width" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="height" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="paddingStart" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="paddingEnd" + android:startOffset="0" + android:duration="200" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="labelOpacity" + android:startOffset="117" + android:duration="83" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_hide_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_hide_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..9f9f2aef331e33a22971153a5124ce63ecedbdc0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_hide_motion_spec.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="75" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType" + android:interpolator="@interpolator/mtrl_linear"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_show_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_show_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..9659742ae5f78340f8627290cff7eeb816791af5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_show_motion_spec.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="0" + android:duration="150" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/mtrl_fast_out_slow_in"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="150" + android:valueFrom="0.8" + android:valueTo="1.0" + android:valueType="floatType" + android:interpolator="@interpolator/mtrl_linear_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_state_list_animator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_state_list_animator.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae64e8fb29bae3f96764953732c426b4fc549262 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_extended_fab_state_list_animator.xml @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <selector> + + <!-- Pressed state --> + <item + android:state_enabled="true" + android:state_pressed="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_extended_fab_translation_z_pressed" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Hover state. This is triggered via mouse. --> + <item + android:state_enabled="true" + android:state_hovered="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_extended_fab_translation_z_hovered_focused" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Focused state. This is triggered via keyboard. --> + <item + android:state_enabled="true" + android:state_focused="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_extended_fab_translation_z_hovered_focused" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Base state (enabled, not pressed) --> + <item android:state_enabled="true"> + <set> + <objectAnimator + android:duration="@integer/mtrl_btn_anim_duration_ms" + android:propertyName="translationZ" + android:startDelay="@integer/mtrl_btn_anim_delay_ms" + android:valueTo="@dimen/mtrl_extended_fab_translation_z_base" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_elevation" + android:valueType="floatType"/> + </set> + </item> + + <!-- Disabled state --> + <item> + <set> + <objectAnimator + android:duration="0" + android:propertyName="translationZ" + android:valueTo="@dimen/mtrl_extended_fab_disabled_translation_z" + android:valueType="floatType"/> + <objectAnimator + android:duration="0" + android:propertyName="elevation" + android:valueTo="@dimen/mtrl_extended_fab_disabled_elevation" + android:valueType="floatType"/> + </set> + </item> + + </selector> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_hide_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_hide_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..122aca1860cf7c27ccac56949906728325d3118b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_hide_motion_spec.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="150" + android:duration="15" + android:interpolator="@interpolator/mtrl_linear"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="135" + android:interpolator="@interpolator/mtrl_fast_out_linear_in"/> + <objectAnimator + android:propertyName="iconScale" + android:startOffset="0" + android:duration="180" + android:interpolator="@interpolator/mtrl_fast_out_linear_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_show_motion_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_show_motion_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..392e0d9ef6eb76ce050c1d401078cdf9a50ece72 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_show_motion_spec.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<set xmlns:android="http://schemas.android.com/apk/res/android"> + <objectAnimator + android:propertyName="opacity" + android:startOffset="30" + android:duration="15" + android:interpolator="@interpolator/mtrl_linear"/> + <objectAnimator + android:propertyName="scale" + android:startOffset="0" + android:duration="330" + android:interpolator="@interpolator/mtrl_linear_out_slow_in"/> + <objectAnimator + android:propertyName="iconScale" + android:startOffset="90" + android:duration="240" + android:interpolator="@interpolator/mtrl_linear_out_slow_in"/> +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..1da35781be321ca71122c197362e887ef3ba9750 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<!-- Deprecated. Use + com.google.android.material.transition.MaterialContainerTransform + instead. --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + + <objectAnimator + android:propertyName="elevation" + android:startOffset="150" + android:duration="150" /> + + <objectAnimator + android:propertyName="translationXLinear" + android:startOffset="0" + android:duration="300" /> + <objectAnimator + android:propertyName="translationXCurveUpwards" + android:startOffset="0" + android:duration="255" /> + <objectAnimator + android:propertyName="translationXCurveDownwards" + android:startOffset="45" + android:duration="255" /> + + <objectAnimator + android:propertyName="translationYLinear" + android:startOffset="0" + android:duration="300" /> + <objectAnimator + android:propertyName="translationYCurveUpwards" + android:startOffset="45" + android:duration="255" /> + <objectAnimator + android:propertyName="translationYCurveDownwards" + android:startOffset="0" + android:duration="255" /> + + <objectAnimator + android:propertyName="iconFade" + android:startOffset="150" + android:duration="150" /> + <objectAnimator + android:propertyName="expansion" + android:startOffset="0" + android:duration="180" /> + <objectAnimator + android:propertyName="color" + android:startOffset="60" + android:duration="150" /> + <objectAnimator + android:propertyName="contentFade" + android:startOffset="0" + android:duration="75" /> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f10c4cc696d81a01e00a58b41968717555b7db8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<!-- Deprecated. Use + com.google.android.material.transition.MaterialContainerTransform + instead. --> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + + <objectAnimator + android:propertyName="elevation" + android:startOffset="0" + android:duration="150" /> + + <objectAnimator + android:propertyName="translationXLinear" + android:startOffset="0" + android:duration="345" /> + <objectAnimator + android:propertyName="translationXCurveUpwards" + android:startOffset="0" + android:duration="150" /> + <objectAnimator + android:propertyName="translationXCurveDownwards" + android:startOffset="0" + android:duration="345" /> + + <objectAnimator + android:propertyName="translationYLinear" + android:startOffset="0" + android:duration="345" /> + <objectAnimator + android:propertyName="translationYCurveUpwards" + android:startOffset="0" + android:duration="345" /> + <objectAnimator + android:propertyName="translationYCurveDownwards" + android:startOffset="0" + android:duration="150" /> + + <objectAnimator + android:propertyName="iconFade" + android:startOffset="0" + android:duration="120" /> + <objectAnimator + android:propertyName="expansion" + android:startOffset="45" + android:duration="255" /> + <objectAnimator + android:propertyName="color" + android:startOffset="75" + android:duration="75" /> + <objectAnimator + android:propertyName="contentFade" + android:startOffset="150" + android:duration="150" /> + +</set> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_button_stroke.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_button_stroke.xml new file mode 100644 index 0000000000000000000000000000000000000000..7854866205a7ba4f12c70699ace248d4656fac2b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_button_stroke.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_clockface.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_clockface.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb0d4c0bac05cea2a600ce3409bbf9f740187e46 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_clockface.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_modebutton_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_modebutton_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f1331fbb1faa19f35f48ad2183310b99de965f1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-night-v8/material_timepicker_modebutton_tint.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_primary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_primary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..7fe6931f557c09582440180d1985242b476a5cdc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_primary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimary for dynamic dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dynamic_dark_on_surface"/> + <item android:color="@color/m3_sys_color_dynamic_dark_on_surface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..129b6f5877c91f87b24faa387c387ad630a007c2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondary for dynamic dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dynamic_dark_on_surface"/> + <item android:color="@color/m3_sys_color_dynamic_dark_on_surface_variant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_highlighted_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_highlighted_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..cdd358346992708af44b6880bef72e2c82b84edc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_highlighted_text.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlight for dynamic dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dynamic_dark_primary" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_hint_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_hint_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..44039d8a01a42b63cc9951aadf3bbc8177d0e56e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_hint_foreground.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHint for dynamic dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_high_type" + android:color="@color/m3_sys_color_dynamic_dark_on_background" /> + <item android:alpha="@dimen/material_emphasis_medium" + android:color="@color/m3_sys_color_dynamic_dark_on_background" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..97dd91d4dcfbaabd2dd27aac3dfb4a2e8aff847a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryDisableOnly for dynamic dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dynamic_dark_on_background"/> + <item android:color="@color/m3_sys_color_dynamic_dark_on_background"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_primary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_primary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..219c210432afd7f766d82d5ecb19df7de2ea9e61 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_primary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimary for dynamic light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dynamic_light_on_surface"/> + <item android:color="@color/m3_sys_color_dynamic_light_on_surface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_secondary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_secondary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9706bb9e4c4620f1c4ed6a71d089d8555f68711 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_default_color_secondary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondary and textColorTertiary for dynamic light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dynamic_light_on_surface"/> + <item android:color="@color/m3_sys_color_dynamic_light_on_surface_variant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_highlighted_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_highlighted_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..5543e652699e593267d86c262875e292f151fb6d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_highlighted_text.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlight for dynamic light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dynamic_light_primary" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_hint_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_hint_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..34d8867569df7ac58cf1b0fa1a827a583f7cb8ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_hint_foreground.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHint for dynamic light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_medium" + android:color="@color/m3_sys_color_dynamic_light_on_background" /> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dynamic_light_on_background" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_primary_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_primary_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2a24c6444ba6d8e2d82e448f5e13d694d8b05d0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_dynamic_primary_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryDisableOnly for dynamic light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dynamic_light_on_background"/> + <item android:color="@color/m3_sys_color_dynamic_light_on_background"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral12.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral12.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e74337461ca5fe8c155a1422168c7e6a466ff70 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral12.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="12"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral17.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral17.xml new file mode 100644 index 0000000000000000000000000000000000000000..5c5ca248691623c1d349a304dca56018a005bf31 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral17.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="17"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral22.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral22.xml new file mode 100644 index 0000000000000000000000000000000000000000..4bbaaccfe20fa7fcff89644f0e7aab1bfdbfc8bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral22.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="22"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral24.xml new file mode 100644 index 0000000000000000000000000000000000000000..8548ebb0e1e09beff4beda4dfce056b63b0028e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral24.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="24"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral4.xml new file mode 100644 index 0000000000000000000000000000000000000000..d318031fe252a2776ab517fd0b95c2c3d0740b39 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral4.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="4"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral6.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral6.xml new file mode 100644 index 0000000000000000000000000000000000000000..6265219838563ea22008d9501abc0b2ebb0bd58b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral6.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="6"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral87.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral87.xml new file mode 100644 index 0000000000000000000000000000000000000000..71aeb2b55221596d71502d4340148d46264303af --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral87.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="87"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral92.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral92.xml new file mode 100644 index 0000000000000000000000000000000000000000..f96391ad74f88294e95721f40e41cfd78bbdd0b0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral92.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="92"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral94.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral94.xml new file mode 100644 index 0000000000000000000000000000000000000000..e4f9ad42e7e59e44ed88943a4f442d16b71915c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral94.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="94"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral96.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral96.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d32093b5d5c6e510d9eca63f928e57ebf5f44fa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral96.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="96"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral98.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral98.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d182cdd73324310bcdcd967b17c1494da8367c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color-v31/m3_ref_palette_dynamic_neutral98.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- AUTOGENERATED FILE. DO NOT MODIFY. --> +<!-- Version: v0.157 --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/system_neutral1_600" android:lStar="98"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_box_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_box_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..e31903fabb9903736f9f2c72ed49ac91c155e537 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_box_stroke_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@color/mtrl_textinput_focused_box_stroke_color" android:state_focused="true"/> + <item android:color="@color/mtrl_textinput_hovered_box_stroke_color" android:state_hovered="true"/> + <item android:color="@color/mtrl_textinput_disabled_color" android:state_enabled="false"/> + <item android:color="@color/mtrl_textinput_default_box_stroke_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_error.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_error.xml new file mode 100644 index 0000000000000000000000000000000000000000..80b2b6c4e4c08730b58f91f31ba8fde135aec69a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_error.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?android:attr/textColorTertiary" android:state_enabled="false"/> + <item android:color="?attr/colorError"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..b5a7111fac554bf16e5862b0a71df919f5785b19 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/design_icon_tint.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2016 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.54" android:color="?android:attr/colorForeground"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_appbar_overlay_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_appbar_overlay_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..e905911727b447538d4b722cbdea8b4af6c38665 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_appbar_overlay_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:alpha="0.08" + android:color="?attr/elevationOverlayColor"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_icon_tint_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_icon_tint_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..68150695f8cd1e618361b0f39f1a03e780300079 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_icon_tint_color.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled state --> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + + <!-- Enabled state --> + <item android:color="?attr/colorPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..75e36018602650013855ebcfe9eb55e241dfa721 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_assist_chip_stroke_color.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/material_emphasis_disabled_background" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@android:color/transparent" android:state_selected="true"/> + <item android:color="@android:color/transparent" android:state_checked="true"/> + + <!-- Focused --> + <item android:color="?attr/colorOnSurface" android:state_focused="true"/> + + <!-- Other states --> + <item android:color="?attr/colorOutline"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_background_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_background_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..9f4ebda993f8485dd3457039614be3b61dd9e35f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_background_color_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorContainer" android:state_enabled="true"/> + <item android:alpha="@dimen/material_emphasis_disabled_background" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_foreground_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_foreground_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e594c5b6aca1cd992cc72d474a889f338031f2d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_foreground_color_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnContainer" android:state_enabled="true"/> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_outline_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_outline_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..df01f9d89825236b40c9b441397c0015e890b70d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_outline_color_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_enabled="false" /> + <item android:color="?attr/colorOutline" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..6393e53aed5f396c96151899eb396dcb9ec6b9f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnPrimary" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnPrimary" android:state_focused="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnPrimary" android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..879e8f6ffda35a5a3aa870b94e2254740de21e8d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_button_ripple_color_selector.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnContainer" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnContainer" android:state_focused="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnContainer" android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_disabled_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_disabled_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..1d733b2fb4690ef91ac110833a56f96313f7826f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_disabled_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..a988c4de95629b850962eaee582b36f665342acb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_calendar_item_stroke_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="?attr/colorOnSurfaceVariant"/> + <item android:state_focused="true" android:color="?attr/colorOnSurfaceVariant"/> + <item android:state_hovered="true" android:color="?attr/colorOutline"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_foreground_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_foreground_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..ef22c51e41b6107fbfda5d6dc96c884817cc3e40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_foreground_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:alpha="0.16" android:color="?attr/colorSecondary" android:state_checked="true"/> + <item android:alpha="0.08" android:color="?attr/colorOnSurface" app:state_dragged="true"/> + <item android:color="@android:color/transparent" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbc69f740e7a708091767789766c1a7c2d7d8662 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_ripple_color.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Checked. --> + + <!-- The ripple color matches the color of the text / iconography on the element it's applied to. + If the text / iconography changes color during a state change, the ripple color matches the end state's color. + + Pressing on a checked card will return it to the unchecked state at which point the text / + iconography will use "colorOnSurfaceVariant". Therefore, the ripple color for the pressed, + checked state is based on "colorOnSurfaceVariant". --> + <item android:alpha="@dimen/m3_comp_filled_card_pressed_state_layer_opacity" + android:color="?attr/colorOnSurfaceVariant" + android:state_pressed="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_comp_filled_card_focus_state_layer_opacity" + android:color="?attr/colorSecondary" + android:state_focused="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_comp_filled_card_hover_state_layer_opacity" + android:color="?attr/colorSecondary" + android:state_hovered="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorSecondary" + android:state_checked="true"/> + + <!-- Unchecked. --> + + <!-- Pressing on an unchecked, checkable card will check it at which point the text / iconography + will use "colorSecondary". Therefore, the ripple color for the pressed, checkable state is + based on "colorSecondary". --> + <item android:alpha="@dimen/m3_comp_filled_card_pressed_state_layer_opacity" + android:color="?attr/colorSecondary" + android:state_checkable="true" android:state_pressed="true"/> + <!-- Pressing on an uncheckable card will remain in the unchecked state at which point the text / + iconography will continue to use "colorOnSurfaceVariant". Therefore, the ripple color for the + pressed, uncheckable state is based on "colorOnSurfaceVariant". --> + <item android:alpha="@dimen/m3_comp_filled_card_pressed_state_layer_opacity" + android:color="?attr/colorOnSurfaceVariant" + android:state_checkable="false" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_filled_card_focus_state_layer_opacity" + android:color="?attr/colorOnSurfaceVariant" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_filled_card_hover_state_layer_opacity" + android:color="?attr/colorOnSurfaceVariant" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_comp_filled_card_dragged_state_layer_opacity" + android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b3deaa129d003c9ba670322dc8d08181c52cdb2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_card_stroke_color.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_outlined_card_disabled_outline_opacity" + android:color="@macro/m3_comp_outlined_card_disabled_outline_color" + android:state_enabled="false"/> + <!-- Checked --> + <item android:color="?attr/colorSecondary" + android:state_checked="true"/> + <!-- Hovered --> + <item android:color="@macro/m3_comp_outlined_card_hover_outline_color" + android:state_hovered="true"/> + <!-- Focused --> + <item android:color="@macro/m3_comp_outlined_card_focus_outline_color" + android:state_focused="true"/> + <!-- Pressed --> + <item android:color="@macro/m3_comp_outlined_card_pressed_outline_color" + android:state_pressed="true"/> + <!-- Dragged --> + <item android:color="@macro/m3_comp_outlined_card_dragged_outline_color" + app:state_dragged="true"/> + <!-- Default --> + <item android:color="@macro/m3_comp_outlined_card_outline_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..494da158cf9b59511a4fbdbf05f84547e07e58a7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_icon_tint.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <!-- Disabled --> + <item android:color="@macro/m3_comp_checkbox_selected_disabled_icon_color" android:state_enabled="false"/> + + <!-- Error --> + <item android:color="@macro/m3_comp_checkbox_selected_error_icon_color" app:state_error="true"/> + + <!-- Indeterminate --> + <item android:color="@macro/m3_comp_checkbox_selected_icon_color" app:state_indeterminate="true"/> + + <!-- Checked --> + <item android:color="@macro/m3_comp_checkbox_selected_icon_color" android:state_checked="true"/> + + <!-- Unchecked --> + <item android:color="@macro/m3_comp_checkbox_selected_icon_color" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f5265b9eb94e02fc540b2935e6420c07aa9aeca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_checkbox_button_tint.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_checkbox_selected_disabled_container_opacity" + android:color="@macro/m3_comp_checkbox_selected_disabled_container_color" + android:state_enabled="false"/> + + <!-- Error --> + <item android:color="@macro/m3_comp_checkbox_selected_error_container_color" app:state_error="true"/> + + <!-- Indeterminate --> + <item android:color="@macro/m3_comp_checkbox_selected_container_color" app:state_indeterminate="true"/> + + <!-- Checked --> + <item android:color="@macro/m3_comp_checkbox_selected_container_color" android:state_checked="true"/> + + <!-- Unchecked --> + <item android:color="@macro/m3_comp_checkbox_unselected_outline_color" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_assist_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_assist_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..ab7f68737eb8c0b56fd13c5943c7ab6bca6a7c09 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_assist_text_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..8efdcdafe09e38af025a8df7cac716ef689315b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_background_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:color="@android:color/transparent" android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="?attr/colorSecondaryContainer" android:state_selected="true"/> + <item android:color="?attr/colorSecondaryContainer" android:state_checked="true"/> + + <!-- Not selected --> + <item android:color="?attr/colorSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e8ace2d4350633f670a86efbe13b347b33a0781 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_ripple_color.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + + <!-- The ripple color matches the color of the text / iconography on the element it's applied to. + If the text / iconography changes color during a state change, the ripple color matches the end state's color. + + Pressing on a checked chip will return it to the unchecked state at which point the text / + iconography will use "colorOnSurfaceVariant". Therefore, the ripple color for the pressed, + checked state is based on "colorOnSurfaceVariant". --> + <item android:alpha="@dimen/m3_ripple_selectable_pressed_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnSecondaryContainer" android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnSecondaryContainer" android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnSecondaryContainer" android:state_selected="true"/> + + <!-- Unselected. --> + + <!-- Pressing on an unchecked, checkable chip will check it at which point the text / iconography + will use "colorOnSecondaryContainer". Therefore, the ripple color for the pressed, checkable state is + based on "colorOnSecondaryContainer". --> + <item android:alpha="@dimen/m3_ripple_selectable_pressed_alpha" android:color="?attr/colorOnSecondaryContainer" android:state_checkable="true" android:state_pressed="true"/> + <!-- Pressing on an uncheckable chip will remain in the unchecked state at which point the text / + iconography will continue to use "colorOnSurfaceVariant". Therefore, the ripple color for the + pressed, uncheckable state is based on "colorOnSurfaceVariant". --> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_checkable="false" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_focused="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..3cc9b0d7cbbb0256e1398dfd79018006acda8b7b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_stroke_color.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/material_emphasis_disabled_background" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@android:color/transparent" android:state_selected="true"/> + <item android:color="@android:color/transparent" android:state_checked="true"/> + + <!-- Focused --> + <item android:color="?attr/colorOnSurfaceVariant" android:state_focused="true"/> + + <!-- Other states --> + <item android:color="?attr/colorOutline"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..70a4a346bbf9ef81938e1d365d08031984adbf59 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_chip_text_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled chips. --> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + + <!-- Selected chips. --> + <item android:color="?attr/colorOnSecondaryContainer" android:state_selected="true"/> + + <!-- Not-selected chips. --> + <item android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_primary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_primary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..ef7f3b834ab5f6e39e33d80e2ed3fd042a11e69a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_primary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimary for dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dark_on_surface"/> + <item android:color="@color/m3_sys_color_dark_on_surface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_secondary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_secondary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f5b1221a545af86e410e8e9d87b95a5aec59340 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_default_color_secondary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondary and textColorTertiary for dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_dark_on_surface"/> + <item android:color="@color/m3_sys_color_dark_on_surface_variant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_highlighted_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_highlighted_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..c9ac3abdf7c025e30a99dee72c12475cc3124f57 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_highlighted_text.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlight for dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dark_primary" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_hint_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_hint_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..9edd7e68274959d4b3d3b6c50b43ff749e0175e1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_hint_foreground.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHint for dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_high_type" + android:color="@color/m3_sys_color_dark_on_background" /> + <item android:alpha="@dimen/material_emphasis_medium" + android:color="@color/m3_sys_color_dark_on_background" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_primary_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_primary_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..1e9383a396dc2a31f65156572549b060d4d4a12d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_dark_primary_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryDisableOnly for dark theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_dark_on_background"/> + <item android:color="@color/m3_sys_color_dark_on_background"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_primary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_primary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba8e8b35dcd386e26d7f6dd9599cdfd05ebb32ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_primary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimary for light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_light_on_surface"/> + <item android:color="@color/m3_sys_color_light_on_surface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_secondary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_secondary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..e64ad1a26222a4034c8b0905e53d71268353153b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_default_color_secondary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondary and textColorTertiary for light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_light_on_surface"/> + <item android:color="@color/m3_sys_color_light_on_surface_variant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_efab_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_efab_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..b319c45a7e9797cfa0215f42b30aab1d26cb228d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_efab_ripple_color_selector.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_comp_extended_fab_primary_pressed_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_extended_fab_primary_focus_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_extended_fab_primary_hover_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_elevated_chip_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_elevated_chip_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..926b9752f3164f9ed302dcc00db88a5a3a61cbbe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_elevated_chip_background_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/material_emphasis_disabled_background" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="?attr/colorSecondaryContainer" android:state_selected="true"/> + <item android:color="?attr/colorSecondaryContainer" android:state_checked="true"/> + + <!-- Not selected --> + <item android:color="?attr/colorSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_background_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_background_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..9f4ebda993f8485dd3457039614be3b61dd9e35f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_background_color_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorContainer" android:state_enabled="true"/> + <item android:alpha="@dimen/material_emphasis_disabled_background" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_foreground_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_foreground_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e594c5b6aca1cd992cc72d474a889f338031f2d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_efab_foreground_color_selector.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnContainer" android:state_enabled="true"/> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..6906fb823f8c98f65cccfebcd9217ae7c576eabe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_fab_ripple_color_selector.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_comp_fab_primary_pressed_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_fab_primary_focus_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_fab_primary_hover_state_layer_opacity" android:color="?attr/colorOnContainer" android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_filled_icon_button_container_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_filled_icon_button_container_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..2677e88329d81b91fc91df991f255a3753b9322f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_filled_icon_button_container_color_selector.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled state --> + <item android:color="?attr/colorOnSurface" android:alpha="@dimen/material_emphasis_disabled_background" android:state_enabled="false"/> + <!-- Checkable, unchecked state --> + <item android:color="?attr/colorSurfaceVariant" android:state_checkable="true" android:state_checked="false"/> + <!-- Default, Enabled state --> + <item android:color="?attr/colorContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_highlighted_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_highlighted_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd3ad3716515c4234166e0b4b49ba4949feffb2f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_highlighted_text.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlight for light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_light_primary" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_hint_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_hint_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..6dfb3b23b5ba28226aa82c69131ace1f1671a41c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_hint_foreground.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHint for light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_medium" + android:color="@color/m3_sys_color_light_on_background" /> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/m3_sys_color_light_on_background" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_icon_button_icon_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_icon_button_icon_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9a9d741cac35f30b43a0acd0cf90acdf671990a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_icon_button_icon_color_selector.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled state --> + <item android:color="?attr/colorOnSurface" android:alpha="@dimen/material_emphasis_disabled" android:state_enabled="false"/> + <!-- Checkable, unchecked state --> + <item android:color="?attr/colorOnContainerUnchecked" android:state_checkable="true" android:state_checked="false"/> + <!-- Default, Enabled state --> + <item android:color="?attr/colorOnContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..74bb328e045625a54bfb62fe58fd308fbc36d624 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Active item --> + <item android:color="@macro/m3_comp_navigation_bar_active_pressed_icon_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_focus_icon_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_hover_icon_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_icon_color" + android:state_checked="true"/> + + <!-- Inactive item --> + <item android:color="@macro/m3_comp_navigation_bar_inactive_pressed_icon_color" + android:state_pressed="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_focus_icon_color" + android:state_focused="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_hover_icon_color" + android:state_hovered="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_icon_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_label_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_label_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..3935fae68054e937410336f26763a865101e4f66 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_item_with_indicator_label_tint.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Active item --> + <item android:color="@macro/m3_comp_navigation_bar_active_pressed_label_text_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_focus_label_text_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_hover_label_text_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_bar_active_label_text_color" + android:state_checked="true"/> + + <!-- Inactive item --> + <item android:color="@macro/m3_comp_navigation_bar_inactive_pressed_label_text_color" + android:state_pressed="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_focus_label_text_color" + android:state_focused="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_hover_label_text_color" + android:state_hovered="true"/> + <item android:color="@macro/m3_comp_navigation_bar_inactive_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..4fc84d4af4925d0ba1da7cde3905a3efb29e4d34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_bar_ripple_color_selector.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + <item android:alpha="@dimen/m3_comp_navigation_bar_pressed_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_active_pressed_state_layer_color" + android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_navigation_bar_focus_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_active_focus_state_layer_color" + android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_navigation_bar_hover_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_active_hover_state_layer_color" + android:state_hovered="true" android:state_selected="true"/> + + <!-- Unselected. --> + <item android:alpha="@dimen/m3_comp_navigation_bar_pressed_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_inactive_pressed_state_layer_color" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_navigation_bar_focus_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_inactive_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_navigation_bar_hover_state_layer_opacity" + android:color="@macro/m3_comp_navigation_bar_inactive_hover_state_layer_color" + android:state_hovered="true"/> + <item android:color="@android:color/transparent"/> +</selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..a8a1faed8810d07c3e4761c890deb6767f8e2d90 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_background_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@macro/m3_comp_navigation_drawer_active_indicator_color" android:state_activated="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_indicator_color" android:state_checked="true"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..64fe7f033cf5e2323574e8ea7f69a05ff5a68c25 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_icon_tint.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="?attr/colorOnSurfaceVariant" + android:state_enabled="false"/> + + <!-- Active item. --> + <item android:color="@macro/m3_comp_navigation_drawer_active_pressed_icon_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_focus_icon_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_hover_icon_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_icon_color" + android:state_checked="true"/> + + <!-- Inactive item. --> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_pressed_icon_color" + android:state_pressed="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_focus_icon_color" + android:state_focused="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_hover_icon_color" + android:state_hovered="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_icon_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ecf08111056700ad4010c59bf4624fa6922fc35 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_ripple_color.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected --> + + <item android:alpha="@dimen/m3_comp_navigation_drawer_pressed_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_active_pressed_state_layer_color" + android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_navigation_drawer_focus_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_active_focus_state_layer_color" + android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_navigation_drawer_hover_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_active_hover_state_layer_color" + android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorPrimary" + android:state_selected="true"/> + + <!-- Not selected --> + + <item android:alpha="@dimen/m3_comp_navigation_drawer_pressed_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_inactive_pressed_state_layer_color" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_navigation_drawer_focus_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_inactive_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_navigation_drawer_hover_state_layer_opacity" + android:color="@macro/m3_comp_navigation_drawer_inactive_hover_state_layer_color" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..79f9896ff2cb90473934fb26bc456e4d00c4d25e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_item_text_color.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurfaceVariant" android:state_enabled="false"/> + + <!-- Active item. --> + <item android:color="@macro/m3_comp_navigation_drawer_active_pressed_label_text_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_focus_label_text_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_hover_label_text_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_active_label_text_color" + android:state_checked="true"/> + + <!-- Inactive item. --> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_pressed_label_text_color" + android:state_pressed="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_focus_label_text_color" + android:state_focused="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_hover_label_text_color" + android:state_hovered="true"/> + <item android:color="@macro/m3_comp_navigation_drawer_inactive_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e8eedb7580d445f46174517110c913c371355e6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnSecondaryContainer" android:state_checked="true"/> + <item android:color="?attr/colorOnSurfaceVariant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_label_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_label_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c054f2cff4a84ea6240a68ea516399395826e1c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_item_with_indicator_label_tint.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnSurface" android:state_checked="true"/> + <item android:color="?attr/colorOnSurfaceVariant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d3d7052b03ac465a39a756808ad0bd68420cca5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_navigation_rail_ripple_color_selector.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorPrimary" android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorPrimary" android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorPrimary" android:state_hovered="true" android:state_selected="true"/> + + <!-- Unselected. --> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorPrimary" android:state_pressed="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_focused="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnSurfaceVariant" android:state_hovered="true"/> + <item android:color="@android:color/transparent"/> +</selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_popupmenu_overlay_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_popupmenu_overlay_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..bf25f82d0621d0d679c68a129d9fb153165ca796 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_popupmenu_overlay_color.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.08" android:color="?attr/elevationOverlayColor"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_primary_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_primary_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..af842e6ff0fd982930955cbbf61d5fdf0c5d834f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_primary_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryDisableOnly for light theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/m3_sys_color_light_on_background"/> + <item android:color="@color/m3_sys_color_light_on_background"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_button_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_button_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..168e2e3cb4ce641bff1e3fd13e27a00944573f84 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_button_tint.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_radio_button_disabled_unselected_icon_opacity" + android:color="@macro/m3_comp_radio_button_disabled_unselected_icon_color" + android:state_enabled="false"/> + <item android:alpha="@dimen/m3_comp_radio_button_disabled_selected_icon_opacity" + android:color="@macro/m3_comp_radio_button_disabled_selected_icon_color" + android:state_enabled="false" android:state_pressed="true"/> + + <!-- Checked --> + <item android:color="@macro/m3_comp_radio_button_selected_pressed_icon_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_selected_focus_icon_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_selected_hover_icon_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_selected_icon_color" + android:state_checked="true"/> + + <!-- Unchecked --> + <item android:color="@macro/m3_comp_radio_button_unselected_pressed_icon_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_unselected_focus_icon_color" + android:state_focused="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_unselected_hover_icon_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:color="@macro/m3_comp_radio_button_unselected_icon_color" + android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_ripple_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_ripple_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..40af942a92a6fc538a43890b413fa059aa6d6ab2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_radiobutton_ripple_tint.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Checked. --> + + <!-- Uses the primary state layer since tapping a checked radiobutton keeps it checked. --> + <item android:alpha="@dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_selected_pressed_state_layer_color" + android:state_pressed="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_comp_radio_button_selected_focus_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_selected_focus_state_layer_color" + android:state_focused="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_comp_radio_button_selected_hover_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_selected_hover_state_layer_color" + android:state_hovered="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorPrimary" + android:state_checked="true"/> + + <!-- Unchecked. --> + + <!-- Uses the primary state layer since tapping an unchecked radiobutton will turn it blue + (checked). --> + <item android:alpha="@dimen/m3_comp_radio_button_unselected_pressed_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_unselected_pressed_state_layer_color" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_radio_button_unselected_focus_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_unselected_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_radio_button_unselected_hover_state_layer_opacity" + android:color="@macro/m3_comp_radio_button_unselected_hover_state_layer_color" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_selection_control_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_selection_control_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..0977642ca8d5d4a58ff381a8abd6db1dd1fb10d0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_selection_control_ripple_color_selector.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Checked. --> + <!-- Uses the on surface state layer since tapping a checked selection control + will turn it to the unchecked color. --> + <item android:alpha="@dimen/m3_ripple_selectable_pressed_alpha" + android:color="?attr/colorOnSurface" + android:state_pressed="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" + android:color="?attr/colorPrimary" + android:state_focused="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" + android:color="?attr/colorPrimary" + android:state_hovered="true" android:state_checked="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorPrimary" + android:state_checked="true"/> + + <!-- Unchecked. --> + <!-- Uses the primary state layer since tapping an unchecked selection + control will turn it to the checked color. --> + <item android:alpha="@dimen/m3_ripple_selectable_pressed_alpha" + android:color="?attr/colorPrimary" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_ripple_focused_alpha" + android:color="?attr/colorOnSurface" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" + android:color="?attr/colorOnSurface" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_simple_item_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_simple_item_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..e350a012166c75ff895390c0f9ea9afbbc1930d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_simple_item_ripple_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnSurface" android:state_pressed="true"/> + <!-- The selected and hovered colors should also specify that they are for android:state_pressed="false". --> + <!-- When focused, the dropdown's item text view doesn't respond to state_focused, but to state_selected instead. --> + <item android:alpha="@dimen/m3_simple_item_color_selected_alpha" android:color="?attr/colorOnSurface" android:state_selected="true" android:state_pressed="false"/> + <item android:alpha="@dimen/m3_simple_item_color_hovered_alpha" android:color="?attr/colorOnSurface" android:state_hovered="true" android:state_pressed="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_active_track_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_active_track_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c1c0d6f41bd5b1238d5b8241533c6c66960491b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_active_track_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@macro/m3_comp_slider_active_track_color" android:state_enabled="true"/> + <item android:alpha="@dimen/m3_comp_slider_disabled_active_track_opacity" android:color="@macro/m3_comp_slider_disabled_active_track_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_halo_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_halo_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..40be92b5e99eba138f0472e2cc39a5d4c41823eb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_halo_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_inactive_track_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_inactive_track_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..c86b8974dcf4f977873366f27249773ce31fc4de --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_inactive_track_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@macro/m3_comp_slider_inactive_track_color" android:state_enabled="true"/> + <item android:alpha="@dimen/m3_comp_slider_disabled_inactive_track_opacity" android:color="@macro/m3_comp_slider_disabled_inactive_track_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_thumb_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_thumb_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..db629996d94f812bc47f732f29468ef7022ca66e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_slider_thumb_color.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_slider_disabled_handle_opacity" + android:color="@macro/m3_comp_slider_disabled_handle_color" + android:state_enabled="false"/> + + <!-- Normal --> + <item android:color="@macro/m3_comp_slider_handle_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_thumb_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_thumb_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad3fa339dff0821e45187b1b513d121e3f919dda --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_thumb_tint.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- State Disabled --> + <item android:color="?attr/colorOnSurfaceInverse" android:state_enabled="false"/> + + <!-- State Checked --> + <item android:color="?attr/colorPrimary" android:state_checked="true"/> + + <!-- State Unchecked --> + <item android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_track_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_track_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..a92c59f0c1c42642864101e90fa0501703220cd4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_switch_track_tint.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled_background" + android:color="?attr/colorOnSurface" + android:state_enabled="false"/> + <item android:color="?attr/colorPrimaryContainer" android:state_checked="true"/> + <item android:color="?attr/colorOutline"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..72014f9bf07e9789daf73f981de3815bdc8290cd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="?attr/colorOnSurface" + android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@macro/m3_comp_primary_navigation_tab_with_icon_active_icon_color" + android:state_selected="true"/> + + <!-- Not selected --> + <item android:color="@macro/m3_comp_primary_navigation_tab_with_icon_inactive_icon_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color_secondary.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color_secondary.xml new file mode 100644 index 0000000000000000000000000000000000000000..fd4cda135b19a378b92e93881ef9dc1e5ae6fd76 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_icon_color_secondary.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="?attr/colorOnSurface" + android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@macro/m3_comp_secondary_navigation_tab_with_icon_active_icon_color" + android:state_selected="true"/> + + <!-- Not selected --> + <item android:color="@macro/m3_comp_secondary_navigation_tab_with_icon_inactive_icon_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..d78ea8900c4d021de0939325fa5b69a30a28a0e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected --> + + <!-- Uses the primary state layer since tapping a selected tab keeps it + selected. --> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_active_pressed_state_layer_color" + android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_active_focus_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_active_focus_state_layer_color" + android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_active_hover_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_active_hover_state_layer_color" + android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorPrimary" + android:state_selected="true"/> + + <!-- Not selected --> + + <!-- Uses the primary state layer since tapping an non-selected tab will + select it. --> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_inactive_pressed_state_layer_color" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_inactive_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity" + android:color="@macro/m3_comp_primary_navigation_tab_inactive_hover_state_layer_color" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color_secondary.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color_secondary.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0d6de94c375c7f24c67cf069ebbee84abe767da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_ripple_color_secondary.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected --> + + <!-- Uses the primary state layer since tapping a selected tab keeps it + selected. --> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_pressed_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_pressed_state_layer_color" + android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_focus_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_focus_state_layer_color" + android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_hover_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_hover_state_layer_color" + android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorPrimary" + android:state_selected="true"/> + + <!-- Not selected --> + + <!-- Uses the primary state layer since tapping an non-selected tab will + select it. --> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_pressed_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_pressed_state_layer_color" + android:state_pressed="true"/> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_focus_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_secondary_navigation_tab_hover_state_layer_opacity" + android:color="@macro/m3_comp_secondary_navigation_tab_hover_state_layer_color" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurfaceVariant"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..943833c52657ea836e0d2f58f1a04aaadd217463 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="?attr/colorOnSurface" + android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@macro/m3_comp_primary_navigation_tab_with_label_text_active_label_text_color" + android:state_selected="true"/> + + <!-- Not selected --> + <item android:color="@macro/m3_comp_primary_navigation_tab_with_label_text_inactive_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color_secondary.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color_secondary.xml new file mode 100644 index 0000000000000000000000000000000000000000..2b397ea0b17c51f3064e7a51a5262125a8e7a232 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tabs_text_color_secondary.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="?attr/colorOnSurface" + android:state_enabled="false"/> + + <!-- Selected --> + <item android:color="@macro/m3_comp_secondary_navigation_tab_active_label_text_color" + android:state_selected="true"/> + + <!-- Not selected --> + <item android:color="@macro/m3_comp_secondary_navigation_tab_inactive_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_background_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_background_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb926ad12bfccd20872007b1489c463caa4a461f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_background_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorSecondaryContainer" android:state_enabled="true" android:state_checked="true"/> + + <item android:color="?attr/colorContainer"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_foreground_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_foreground_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4a4770ef7e5acef8760b1a36a71e9601182deef --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_foreground_color_selector.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false" /> + + <!-- Uncheckable --> + <item android:color="?attr/colorOnContainer" android:state_checkable="false" /> + + <!-- Checked Buttons. --> + <item android:color="?attr/colorOnSecondaryContainer" android:state_checked="true" /> + + <!-- Not-checked Buttons. --> + <item android:color="?attr/colorOnSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..2927bb1c723eac7ae93323ce0d0b38cc3dd5265f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_text_button_ripple_color_selector.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Uncheckable --> + <item android:alpha="@dimen/m3_comp_text_button_pressed_state_layer_opacity" + android:color="?attr/colorOnContainer" + android:state_checkable="false" + android:state_pressed="true" /> + <item android:alpha="@dimen/m3_comp_text_button_focus_state_layer_opacity" + android:color="?attr/colorOnContainer" + android:state_checkable="false" + android:state_focused="true" /> + <item android:alpha="@dimen/m3_comp_text_button_hover_state_layer_opacity" + android:color="?attr/colorOnContainer" + android:state_checkable="false" + android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnContainer" + android:state_checkable="false" /> + + <!-- Checked --> + <!-- The ripple color matches the color of the text / iconography on the element it's applied to. + If the text / iconography changes color during a state change, the ripple color matches the end state's color. + Pressing on a checked button will return it to the unchecked state at which point the text --> + <item android:alpha="@dimen/m3_comp_text_button_pressed_state_layer_opacity" + android:color="?attr/colorOnSurface" + android:state_checked="true" + android:state_pressed="true" /> + <item android:alpha="@dimen/m3_comp_text_button_focus_state_layer_opacity" + android:color="?attr/colorOnSecondaryContainer" + android:state_checked="true" + android:state_focused="true" /> + <item android:alpha="@dimen/m3_comp_text_button_hover_state_layer_opacity" + android:color="?attr/colorOnSecondaryContainer" + android:state_checked="true" + android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSecondaryContainer" + android:state_checked="true" /> + + <!-- Unchecked --> + <!-- Pressing on an unchecked, checkable chip will check it at which point the text / iconography + will use "colorOnSecondaryContainer". Therefore, the ripple color for the pressed, checkable state is + based on "colorOnSecondaryContainer". --> + <item android:alpha="@dimen/m3_comp_text_button_pressed_state_layer_opacity" + android:color="?attr/colorOnSecondaryContainer" + android:state_pressed="true" /> + <item android:alpha="@dimen/m3_comp_text_button_focus_state_layer_opacity" + android:color="?attr/colorOnSurface" + android:state_focused="true" /> + <item android:alpha="@dimen/m3_comp_text_button_hover_state_layer_opacity" + android:color="?attr/colorOnSurface" + android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" + android:color="?attr/colorOnSurface" /> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_filled_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_filled_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f7a1e807cb2fd50ef7768e9bf144dfb6d3cb917 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_filled_background_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurfaceInverse" android:state_enabled="false"/> + <item android:color="@macro/m3_comp_filled_text_field_container_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_indicator_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_indicator_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..f7751b4718c0c7bfbfb96b78a9c71f5f8233388e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_indicator_text_color.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Activated --> + <item android:color="?attr/colorPrimary" android:state_activated="true"/> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_outlined_text_field_disabled_supporting_text_opacity" android:color="@macro/m3_comp_outlined_text_field_disabled_supporting_text_color" android:state_enabled="false"/> + <!-- Focused --> + <item android:color="@macro/m3_comp_outlined_text_field_focus_supporting_text_color" android:state_focused="true"/> + <!-- Hovered --> + <item android:color="@macro/m3_comp_outlined_text_field_hover_supporting_text_color" android:state_hovered="true"/> + <!-- Normal --> + <item android:color="@macro/m3_comp_outlined_text_field_supporting_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_input_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_input_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..cea533b1f445bfb3e443fa776d5be4aacf4cd496 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_input_text_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_outlined_text_field_disabled_input_text_opacity" android:color="@macro/m3_comp_outlined_text_field_disabled_input_text_color" android:state_enabled="false"/> + <!-- Focused --> + <item android:color="@macro/m3_comp_outlined_text_field_focus_input_text_color" android:state_focused="true"/> + <!-- Hovered --> + <item android:color="@macro/m3_comp_outlined_text_field_hover_input_text_color" android:state_hovered="true"/> + <!-- Normal --> + <item android:color="@macro/m3_comp_outlined_text_field_input_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_label_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_label_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..abccaab1e0394fd90dfd2f4b3ff5e07d956503e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_label_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_outlined_text_field_disabled_label_text_opacity" android:color="@macro/m3_comp_outlined_text_field_disabled_label_text_color" android:state_enabled="false"/> + + <!-- Focused --> + <item android:color="@macro/m3_comp_outlined_text_field_focus_label_text_color" android:state_focused="true"/> + + <!-- Normal --> + <item android:color="@macro/m3_comp_outlined_text_field_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9d51aa5c619920ef2db96eb1bdcbc43b3c11c51 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_textfield_stroke_color.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Disabled --> + <item android:alpha="@dimen/m3_comp_filled_text_field_disabled_active_indicator_opacity" android:color="@macro/m3_comp_outlined_text_field_disabled_outline_color" android:state_enabled="false"/> + + <!-- Focused --> + <item android:color="@macro/m3_comp_outlined_text_field_focus_outline_color" android:state_focused="true"/> + + <!-- Hovered --> + <item android:color="@macro/m3_comp_outlined_text_field_hover_outline_color" android:state_hovered="true"/> + + <!-- Normal --> + <item android:color="@macro/m3_comp_outlined_text_field_outline_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..623954630b66ef0543efcddd46280b19721405da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_background_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@macro/m3_comp_time_picker_period_selector_selected_container_color" android:state_enabled="true" android:state_checked="true"/> + <item android:color="?attr/colorSurface" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..ff831db8e13d531f8098470480e1d84fb12a6c6a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_ripple_color.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Checked. --> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_pressed_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_selected_pressed_state_layer_color" + android:state_pressed="true" android:state_checked="true" /> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_focus_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_selected_focus_state_layer_color" + android:state_focused="true" android:state_checked="true" /> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_hover_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_selected_hover_state_layer_color" + android:state_hovered="true" android:state_checked="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnTertiaryContainer" + android:state_checked="true" /> + + <!-- Unchecked. --> + <!-- Pressing a checkable one will make it checked. So we use values for selected (checked) container color here. --> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_pressed_state_layer_opacity" + android:color="?attr/colorOnTertiaryContainer" + android:state_checkable="true" android:state_pressed="true" /> <!-- TODO(b/247609386) Use token when value is updated as is. --> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_pressed_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_unselected_pressed_state_layer_color" + android:state_pressed="true" /> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_focus_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_unselected_focus_state_layer_color" + android:state_focused="true" /> + <item android:alpha="@dimen/m3_comp_time_picker_period_selector_hover_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_period_selector_unselected_hover_state_layer_color" + android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnSurfaceVariant" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..6523ba88c484c861262e546190852f904585442b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_button_text_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_checkable="false" /> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false" /> + + <!-- Checked. --> + <item android:color="@macro/m3_comp_time_picker_period_selector_selected_label_text_color" android:state_checked="true" /> + + <!-- Not-checked. --> + <item android:color="@macro/m3_comp_time_picker_period_selector_unselected_label_text_color" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_clock_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_clock_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..99e7b9f26fd3da915867b1ea6a53a7c4f36b154d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_clock_text_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorSurface" android:state_selected="true" /> + <item android:color="?attr/colorOnBackground" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a0e61ca198446fb3d518ee60b4143bd55b4834d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_background_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Selected. --> + <item android:color="@macro/m3_comp_time_picker_time_selector_selected_container_color" android:state_selected="true"/> + + <!-- Not-selected. --> + <item android:color="@macro/m3_comp_time_picker_time_selector_unselected_container_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..23c77b299755322421d5f88f8060b15ad096ec3d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_ripple_color.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + + <!-- Pressing on a selected display will remain selected. --> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_pressed_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_time_selector_selected_pressed_state_layer_color" + android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_focus_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_time_selector_selected_focus_state_layer_color" + android:state_focused="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_hover_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_time_selector_selected_hover_state_layer_color" + android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnPrimaryContainer" + android:state_selected="true"/> + + <!-- Unselected. --> + + <!-- Pressing on an unselected display will select it. So we use values for selected (checked) container color here. --> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_pressed_state_layer_opacity" + android:color="?attr/colorOnPrimaryContainer" + android:state_pressed="true"/> <!-- TODO(b/247609386) Use token when value is updated as is. --> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_focus_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_time_selector_unselected_focus_state_layer_color" + android:state_focused="true"/> + <item android:alpha="@dimen/m3_comp_time_picker_time_selector_hover_state_layer_opacity" + android:color="@macro/m3_comp_time_picker_time_selector_unselected_hover_state_layer_color" + android:state_hovered="true"/> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..f26451b683440cfa133d3c41c7de8d9c3818dc1f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_display_text_color.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface" android:state_enabled="false" /> + + <!-- Selected. --> + <item android:color="@macro/m3_comp_time_picker_time_selector_selected_label_text_color" android:state_selected="true"/> + + <!-- Not-selected. --> + <item android:color="@macro/m3_comp_time_picker_time_selector_unselected_label_text_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..9dd384c851e844e36bb382799acd82567ad9d5f0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_ripple_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnSurface" android:state_pressed="true" /> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnSurface" android:state_focused="true" /> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnSurface" android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..81e688d3402f9d66850e438982edb1f62952e1eb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_secondary_text_button_text_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnSurfaceVariant" android:state_enabled="true"/> + + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_time_input_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_time_input_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..00cd9115ae46e537c94ca38029bd8f571c3ffda1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_timepicker_time_input_stroke_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Selected. --> + <item android:color="@macro/m3_comp_time_input_time_input_field_focus_outline_color" android:state_selected="true"/> + + <!-- Not-selected. --> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tonal_button_ripple_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tonal_button_ripple_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..e08d52d6b74b3045c8016e1bf60d27085b8e0788 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/m3_tonal_button_ripple_color_selector.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_ripple_pressed_alpha" android:color="?attr/colorOnContainer" android:state_pressed="true" /> + <item android:alpha="@dimen/m3_ripple_focused_alpha" android:color="?attr/colorOnContainer" android:state_focused="true" /> + <item android:alpha="@dimen/m3_ripple_hovered_alpha" android:color="?attr/colorOnContainer" android:state_hovered="true" /> + <item android:alpha="@dimen/m3_ripple_default_alpha" android:color="?attr/colorOnContainer" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_cursor_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_cursor_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..787ae51166dcb781a5d1c1658f5739674e5f572b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_cursor_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/black"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_divider_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_divider_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9d3ff30c08ecf611eed9f853f4c1ad738e2c6d9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_divider_color.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_disabled.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_disabled.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c7f0bdca0cb230b794f3414393ed137115e1ed2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_disabled.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnBackground"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_high_type.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_high_type.xml new file mode 100644 index 0000000000000000000000000000000000000000..5601110b8c0b509064772e14d772997005567460 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_high_type.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_high_type" android:color="?attr/colorOnBackground"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_medium.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_medium.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a9480bd6e03a4c22200a3844083b8dd12512967 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_background_emphasis_medium.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="?attr/colorOnBackground"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_disabled.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_disabled.xml new file mode 100644 index 0000000000000000000000000000000000000000..c971e2c09e9a5d006ee4835fc82dbc9159cf945f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_disabled.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_high_type.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_high_type.xml new file mode 100644 index 0000000000000000000000000000000000000000..6aebb05a1fe24c31ce09dc3799a08581e3552911 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_high_type.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_high_type" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_medium.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_medium.xml new file mode 100644 index 0000000000000000000000000000000000000000..8795019a54fc393708fcc9385f6f3c787272045f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_primary_emphasis_medium.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_disabled.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_disabled.xml new file mode 100644 index 0000000000000000000000000000000000000000..390d9f27a76fb9f855da607182189b6e99fc1845 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_disabled.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_disabled" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_high_type.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_high_type.xml new file mode 100644 index 0000000000000000000000000000000000000000..24f2fab99f6602b287db280abb16c7da0d5cf736 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_high_type.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_high_type" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_medium.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_medium.xml new file mode 100644 index 0000000000000000000000000000000000000000..fa5295b98f06681135b85ab696a79f5468ac8a29 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_emphasis_medium.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_stroke.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_stroke.xml new file mode 100644 index 0000000000000000000000000000000000000000..fffd52e240bee4bde672771659d80e741badaabd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_on_surface_stroke.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..35425c058f30f443d3605b3158953566a4765846 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlight for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/material_personalized_color_primary" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text_inverse.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text_inverse.xml new file mode 100644 index 0000000000000000000000000000000000000000..68858830689d63c212c4dab11ecae7ac03dffffb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized__highlighted_text_inverse.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHighlightInverse for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/material_emphasis_medium" android:color="@color/material_personalized_color_primary_inverse" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f2b0c0e1d443658e8b9621d2e6e27b3237e3be9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimary for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_on_surface"/> + <item android:color="@color/material_personalized_color_on_surface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text_inverse.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text_inverse.xml new file mode 100644 index 0000000000000000000000000000000000000000..b2e6b868c809f9e13a13ad10cafe4cfdbc72615c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_primary_text_inverse.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryInverse for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_text_primary_inverse"/> + <item android:color="@color/material_personalized_color_text_primary_inverse"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..7334faed1699b0efef968d90a71d8de4c28e0f7e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondary for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_on_surface"/> + <item android:color="@color/material_personalized_color_on_surface_variant"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text_inverse.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text_inverse.xml new file mode 100644 index 0000000000000000000000000000000000000000..f62d9db2837d3c9acaceb9878a90d15928bf55cf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_color_secondary_text_inverse.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorSecondaryInverse for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_text_secondary_and_tertiary_inverse_disabled"/> + <item android:color="@color/material_personalized_color_text_secondary_and_tertiary_inverse"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcb6bf91988aa1908def3e125ecd08663023f2f8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHint for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_medium" + android:color="@color/material_personalized_color_on_background" /> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_on_background" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground_inverse.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground_inverse.xml new file mode 100644 index 0000000000000000000000000000000000000000..33f9736b8376386f261f4836e0027e3bb85db065 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_hint_foreground_inverse.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorHintInverse for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="true" + android:state_pressed="true" + android:alpha="@dimen/material_emphasis_medium" + android:color="@color/material_personalized_color_text_hint_foreground_inverse" /> + <item android:alpha="@dimen/material_emphasis_disabled" + android:color="@color/material_personalized_color_text_hint_foreground_inverse" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_inverse_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_inverse_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9e51fea9054f11be3f46084e5ee38d4d45fe169 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_inverse_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryInverseDisableOnly for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/material_personalized_color_text_primary_inverse_disable_only"/> + <item android:color="@color/material_personalized_color_text_primary_inverse_disable_only"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_text_disable_only.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_text_disable_only.xml new file mode 100644 index 0000000000000000000000000000000000000000..fd7684024c22122da54b85849290676ed84a931f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_personalized_primary_text_disable_only.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- Material3 alternative to textColorPrimaryDisableOnly for personalized theme --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:alpha="@dimen/material_emphasis_medium" android:color="@color/material_personalized_color_on_background"/> + <item android:color="@color/material_personalized_color_on_background"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_tick_marks_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_tick_marks_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..c55e11599cbc4a85e1f51d0572c9448e8ad3f514 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_tick_marks_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.54" android:color="?attr/colorOnPrimary" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_track_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_track_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..47a5d5ffa5872348c040ec4bfd094c0f7d0e4040 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_active_track_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.32" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_halo_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_halo_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..da0ab8c7e4642b5a1bd7e244ad9f0d09ee895c62 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_halo_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_tick_marks_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_tick_marks_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..cecd651d4ee7f1f9ccf4547934f49224ec076045 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_tick_marks_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.54" android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_track_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_track_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..873f5a920faa80a97d7cc0bb551bd663447aebbb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_inactive_track_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_thumb_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_thumb_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a77994f5d3280536d86cf7a25726812bdddb962 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_slider_thumb_color.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..603d8c7cd6aa4121744901004103054efcb4d70e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_background.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_stroke.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_stroke.xml new file mode 100644 index 0000000000000000000000000000000000000000..9493bc402c09355fec44198807dc1ca047b56017 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_button_stroke.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.33" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clock_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clock_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f74e9832e74c858ccca41aef6f72f84812b4e63 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clock_text_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnPrimary" android:state_selected="true" /> + <item android:color="?attr/colorOnSurface" /> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clockface.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clockface.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6ca678b90593a299345cf60914b788edc66fda6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_clockface.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.10" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_modebutton_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_modebutton_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..557aa06c820798055937f46c4af7cd88aad00233 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/material_timepicker_modebutton_tint.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.6" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_bg_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_bg_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..689809a32948d34538fd5afcc0a690c838ed4793 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_bg_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..25c82cfbf1f5889d1eb2e4b526dd25cbdd1b00bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="@dimen/mtrl_high_ripple_pressed_alpha" android:color="?attr/colorOnPrimary" android:state_pressed="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_focused_alpha" android:color="?attr/colorOnPrimary" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_focused_alpha" android:color="?attr/colorOnPrimary" android:state_focused="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_hovered_alpha" android:color="?attr/colorOnPrimary" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_default_alpha" android:color="?attr/colorOnPrimary"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_stroke_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_stroke_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..5db3a226f8116543032c1a92e56092a9ce64b7d0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_stroke_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_bg_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_bg_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..72c75422b276b81a90ef5ae3ea93b973b562bf0e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_bg_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.08" android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:color="@android:color/transparent" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..87b9e30ab09c0f4c41a84b6221ac42d4a951c8ba --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_btn_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="@dimen/mtrl_low_ripple_pressed_alpha" android:color="?attr/colorPrimary" android:state_pressed="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_focused_alpha" android:color="?attr/colorPrimary" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_focused_alpha" android:color="?attr/colorPrimary" android:state_focused="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_hovered_alpha" android:color="?attr/colorPrimary" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_default_alpha" android:color="?attr/colorPrimary"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..659e08c4c4048781d8d18ff469a7ddf3b07ec600 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_btn_text_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnPrimary" android:state_enabled="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_item_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_item_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..fef10132c830046e48de75beebfbaecfd6ffaf14 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_item_stroke_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:alpha="0.38" android:color="?attr/colorOnSurface"/> + <item android:state_focused="true" android:alpha="0.38" android:color="?attr/colorOnSurface"/> + <item android:state_hovered="true" android:alpha="0.16" android:color="?attr/colorOnSurface"/> + <item android:alpha="1.0" android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_selected_range.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_selected_range.xml new file mode 100644 index 0000000000000000000000000000000000000000..37071cf8d52e13fa40c2505c8eac36caf32ab3cf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_calendar_selected_range.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_foreground.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_foreground.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e6d3c3c111b5ec7c2f041f7b1e085d7a081d3c3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_foreground.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:alpha="0.08" android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:alpha="0.08" android:color="?attr/colorOnSurface" app:state_dragged="true"/> + <item android:color="@android:color/transparent" android:state_checked="false" app:state_dragged="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_ripple.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_ripple.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc58d21fc6b1ad150fae6e3d625f30b8f8821641 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_card_view_ripple.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item android:alpha="0.20" android:color="?attr/colorPrimary" android:state_checked="true"/> + <!-- Ripple has an animation to disappear since we have a different state on the foreground + remove the ripple to avoid overlap while it transitions out --> + <item android:color="@android:color/transparent" app:state_dragged="true"/> + <item android:alpha="0.20" android:color="?attr/colorOnSurface" android:state_checked="false"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..25100dad2b8985084ac60a8dc5e261c7ad2f490d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_background_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- 8% + 8% opacity --> + <item android:alpha="0.18" android:color="?attr/colorOnSurface" android:state_enabled="true" android:state_selected="true"/> + <item android:alpha="0.18" android:color="?attr/colorOnSurface" android:state_enabled="true" android:state_checked="true"/> + <!-- 12% of 87% opacity --> + <item android:alpha="0.10" android:color="?attr/colorOnSurface" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_close_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_close_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..e8ac08d35b8251d2196edd4ce802bda8aed832d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_close_icon_tint.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="1.0" android:color="?attr/colorOnSurface" android:state_pressed="true"/> + <item android:alpha="1.0" android:color="?attr/colorOnSurface" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="1.0" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="1.0" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.87" android:color="?attr/colorOnSurface" android:state_enabled="true"/> + <!-- 38% of 54% opacity. --> + <item android:alpha="0.21" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_surface_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_surface_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..c77a0532fda099d434850f57a847468b3577ead2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_surface_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:color="?attr/colorSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..227b3492a7a5e7f35429617a2d3fe7b1b71d7494 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_chip_text_color.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- 87% opacity. --> + <item android:alpha="0.87" android:color="?attr/colorOnSurface" android:state_enabled="true"/> + <!-- 38% of 87% opacity. --> + <item android:alpha="0.33" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea71779e0a6993435f6297f6d0f61ab8c513fe63 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_background_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- 24% opacity --> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true" android:state_selected="true"/> + <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true" android:state_checked="true"/> + <!-- 12% of 87% opacity --> + <item android:alpha="0.10" android:color="?attr/colorOnSurface" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..642b9ceb692adedfefeac95a25cbb542d86098f0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="@dimen/mtrl_low_ripple_pressed_alpha" android:color="?attr/colorPrimary" android:state_pressed="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_focused_alpha" android:color="?attr/colorOnSurface" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_focused_alpha" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_hovered_alpha" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_default_alpha" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..62b86779b6f83314e13493625d3747dff7d6dd3e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_choice_chip_text_color.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:color="?attr/colorPrimary" android:state_enabled="true" android:state_selected="true"/> + <item android:color="?attr/colorPrimary" android:state_enabled="true" android:state_checked="true"/> + <!-- 87% opacity. --> + <item android:alpha="0.87" android:color="?attr/colorOnSurface" android:state_enabled="true"/> + <!-- 38% of 87% opacity. --> + <item android:alpha="0.33" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_error.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_error.xml new file mode 100644 index 0000000000000000000000000000000000000000..a46497ff08d65633fec36d868f28b9575ee229fe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_error.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnError" android:state_enabled="false"/> + <item android:color="?attr/colorError"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_bg_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_bg_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..31b20b20b1851c48878a09ea96cbb12fb92d974d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_bg_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorSecondary" android:state_enabled="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_icon_text_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_icon_text_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e87a863c5011bc379dfd8fbbd56d8d6f2a0ed74 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_icon_text_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnSecondary" android:state_enabled="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..2791c188b001224195220949f9feeb0e29fbd0e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_fab_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="@dimen/mtrl_high_ripple_pressed_alpha" android:color="?attr/colorOnSecondary" android:state_pressed="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_focused_alpha" android:color="?attr/colorOnSecondary" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_focused_alpha" android:color="?attr/colorOnSecondary" android:state_focused="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_hovered_alpha" android:color="?attr/colorOnSecondary" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_high_ripple_default_alpha" android:color="?attr/colorOnSecondary"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..0cf75c3f50a298eb381022eee1c5c1915013410f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_background_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.16" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="0.04" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..bafe722d3fbc15a0f35807152212bf3ce0e1f9df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_icon_tint.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_activated="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.54" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..802d8328f30c9386b58f86915e4fc13884f8154f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_filled_stroke_color.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_focused="true"/> + <!-- 4% overlay over 42% colorOnSurface --> + <item android:alpha="0.46" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.42" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_indicator_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_indicator_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..fd978fa21dcca956d0770641d5f90a7b0d2135a5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_indicator_text_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.6" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_item_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_item_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..9f76bd20e9ddfcee96034e7c4f47fc129a2f7598 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_item_tint.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="1.0" android:color="?attr/colorOnPrimary" android:state_checked="true"/> + <item android:alpha="0.6" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc038160594b938a3ce08448031d030491a5932c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_colored_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="0.16" android:color="?attr/colorOnPrimary" android:state_pressed="true"/> + <item android:alpha="0.32" android:color="?attr/colorOnPrimary" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="0.24" android:color="?attr/colorOnPrimary" android:state_focused="true"/> + <item android:alpha="0.08" android:color="?attr/colorOnPrimary" android:state_hovered="true"/> + <item android:alpha="0.00" android:color="?attr/colorOnPrimary"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_item_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_item_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..72347832005fd55bf14fdb090e7ecf16225665e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_item_tint.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="1.0" android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:alpha="0.6" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..65cd72dcc438c2d515a5c38a68cd5cb0387cdd1f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_bar_ripple_color.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + + <item android:alpha="0.08" android:color="?attr/colorPrimary" android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="0.16" android:color="?attr/colorPrimary" android:state_focused="true" android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="0.12" android:color="?attr/colorPrimary" android:state_focused="true" android:state_selected="true"/> + <item android:alpha="0.04" android:color="?attr/colorPrimary" android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="0.00" android:color="?attr/colorPrimary" android:state_selected="true"/> + + <!-- Unselected. --> + + <item android:alpha="0.08" android:color="?attr/colorOnSurface" android:state_pressed="true"/> + <item android:alpha="0.16" android:color="?attr/colorOnSurface" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="0.04" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.00" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_background_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_background_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..1fc6fb5c53a7ea98972c13f4c331824b86a3413e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_background_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.12" android:color="?attr/colorPrimary" android:state_activated="true"/> + <item android:alpha="0.12" android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:color="@android:color/transparent"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..f69dbaf2a27d549311b7aed6f44141b7f39f979b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_icon_tint.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_text_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_text_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..f69dbaf2a27d549311b7aed6f44141b7f39f979b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_navigation_item_text_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_checked="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_primary_text_btn_text_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_primary_text_btn_text_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..2ea9f1b09e9e9ae9eea682db8d497bedfdd2452e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_primary_text_btn_text_color_selector.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- This matches mtrl_bottom_nav_colored_item_tint + except for usage of enabled states instead of checked states. --> + <item android:state_enabled="false" android:alpha="0.6" android:color="?attr/colorOnPrimary"/> + <item android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_surface_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_surface_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..edccf854cbeccf66eaf42a659e7d6762d71b68f6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_on_surface_ripple_color.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="@dimen/mtrl_low_ripple_pressed_alpha" android:color="?attr/colorOnSurface" android:state_pressed="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_focused_alpha" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_hovered_alpha" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="@dimen/mtrl_low_ripple_default_alpha" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..d14fb07302e16f38ca38d7b6e86842072d2a3618 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_icon_tint.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_activated="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.6" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_stroke_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_stroke_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..b687332a01bcd102d00f979ce7a0beeec67b386c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_outlined_stroke_color.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_focused="true"/> + <item android:alpha="0.87" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_enabled="false"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_popupmenu_overlay_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_popupmenu_overlay_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..b891e970af737be3a5ce38e17342764835a223e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_popupmenu_overlay_color.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="0.11" android:color="?attr/elevationOverlayColor"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_icon_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_icon_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..aeb41c2883875f049430c70057acaed1a7f63eab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_icon_tint.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- State Disabled, Unchecked --> + <item + android:alpha="@dimen/m3_comp_switch_disabled_unselected_icon_opacity" + android:color="@macro/m3_comp_switch_disabled_unselected_icon_color" + android:state_enabled="false" android:state_checked="false"/> + + <!-- State Disabled, Checked --> + <item + android:alpha="@dimen/m3_comp_switch_disabled_selected_icon_opacity" + android:color="@macro/m3_comp_switch_disabled_selected_icon_color" + android:state_enabled="false" android:state_checked="true"/> + + <!-- State Checked --> + <item android:color="@macro/m3_comp_switch_selected_icon_color" android:state_checked="true"/> + + <!-- State Unchecked --> + <item android:color="@macro/m3_comp_switch_unselected_icon_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..1e3f185021244d67e29c4903a3b280ba782b5e67 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_thumb_tint.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- State Disabled, Unchecked --> + <item + android:alpha="@dimen/m3_comp_switch_disabled_unselected_handle_opacity" + android:color="@macro/m3_comp_switch_disabled_unselected_handle_color" + android:state_enabled="false" android:state_checked="false"/> + + <!-- State Disabled, Checked --> + <item + android:alpha="@dimen/m3_comp_switch_disabled_selected_handle_opacity" + android:color="@macro/m3_comp_switch_disabled_selected_handle_color" + android:state_enabled="false" android:state_checked="true"/> + + <!-- State Checked, Pressed --> + <item android:color="@macro/m3_comp_switch_selected_pressed_handle_color" android:state_checked="true" android:state_pressed="true"/> + + <!-- State Checked --> + <item android:color="@macro/m3_comp_switch_selected_handle_color" android:state_checked="true"/> + + <!-- State Unchecked, Pressed --> + <item android:color="@macro/m3_comp_switch_unselected_pressed_handle_color" android:state_pressed="true"/> + + <!-- State Unchecked --> + <item android:color="@macro/m3_comp_switch_unselected_handle_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_decoration_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_decoration_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..78adf3cfa22ae4ad626642704f17b6500482537d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_decoration_tint.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="@android:color/transparent" android:state_checked="true"/> + <item + android:alpha="@dimen/m3_comp_switch_disabled_track_opacity" + android:color="@macro/m3_comp_switch_disabled_unselected_track_outline_color" + android:state_enabled="false"/> + <item android:color="@macro/m3_comp_switch_unselected_track_outline_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_tint.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_tint.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec9f15836e7614688e457be643f00e9f3eee4251 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_switch_track_tint.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="@dimen/m3_comp_switch_disabled_track_opacity" + android:color="@macro/m3_comp_switch_disabled_unselected_track_color" + android:state_enabled="false" android:state_checked="false"/> + <item android:alpha="@dimen/m3_comp_switch_disabled_track_opacity" + android:color="@macro/m3_comp_switch_disabled_selected_track_color" + android:state_enabled="false" android:state_checked="true"/> + <item android:color="@macro/m3_comp_switch_selected_track_color" android:state_checked="true"/> + <item android:color="@macro/m3_comp_switch_unselected_track_color"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_colored_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_colored_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c6265c9e10e411282c8fb10cd7c8663d2a3e524 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_colored_ripple_color.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:alpha="0.16" android:color="?attr/colorOnPrimary" android:state_pressed="true"/> + <item android:alpha="0.32" android:color="?attr/colorOnPrimary" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="0.24" android:color="?attr/colorOnPrimary" android:state_focused="true"/> + <item android:alpha="0.08" android:color="?attr/colorOnPrimary" android:state_hovered="true"/> + <item android:alpha="0.00" android:color="?attr/colorOnPrimary"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..a2e3254323c3582938496da8e75483071ad1b2ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorPrimary" android:state_selected="true"/> + <item android:alpha="0.60" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector_colored.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector_colored.xml new file mode 100644 index 0000000000000000000000000000000000000000..297894ca8f9bd28c43c89054e192136c87378862 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_icon_color_selector_colored.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/colorOnPrimary" android:state_selected="true"/> + <item android:alpha="0.60" android:color="?attr/colorOnPrimary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_legacy_text_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_legacy_text_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..21f6883a9dce8d234404d4ff6d80b8a6e973e5f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_legacy_text_color_selector.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:color="?attr/android:textColorPrimary" android:state_selected="true"/> + <item android:color="?attr/android:textColorSecondary"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_ripple_color.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_ripple_color.xml new file mode 100644 index 0000000000000000000000000000000000000000..f77cdff76b0c8dae1155202658a9a8ef32160c59 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_tabs_ripple_color.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Selected. --> + + <item android:alpha="0.08" android:color="?attr/colorPrimary" android:state_pressed="true" android:state_selected="true"/> + <item android:alpha="0.16" android:color="?attr/colorPrimary" android:state_focused="true" android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="0.12" android:color="?attr/colorPrimary" android:state_focused="true" android:state_selected="true"/> + <item android:alpha="0.04" android:color="?attr/colorPrimary" android:state_hovered="true" android:state_selected="true"/> + <item android:alpha="0.00" android:color="?attr/colorPrimary" android:state_selected="true"/> + + <!-- Unselected. --> + + <item android:alpha="0.08" android:color="?attr/colorOnSurface" android:state_pressed="true"/> + <item android:alpha="0.16" android:color="?attr/colorOnSurface" android:state_focused="true" android:state_hovered="true"/> + <item android:alpha="0.12" android:color="?attr/colorOnSurface" android:state_focused="true"/> + <item android:alpha="0.04" android:color="?attr/colorOnSurface" android:state_hovered="true"/> + <item android:alpha="0.00" android:color="?attr/colorOnSurface"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_text_btn_text_color_selector.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_text_btn_text_color_selector.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d86cbaa187605eb8b6bd42ee40f85a5d07a48f6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/color/mtrl_text_btn_text_color_selector.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:alpha="1.00" android:color="?attr/colorPrimary" android:state_checkable="true" android:state_checked="true" android:state_enabled="true"/> + <item android:alpha="0.60" android:color="?attr/colorOnSurface" android:state_checkable="true" android:state_checked="false" android:state_enabled="true"/> + <item android:alpha="1.00" android:color="?attr/colorPrimary" android:state_enabled="true"/> + <item android:alpha="0.38" android:color="?attr/colorOnSurface"/> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/m3_tabs_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/m3_tabs_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..2531808188944bade7b845c80c5c21d29042e82b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/m3_tabs_background.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Fills the entire area with the divider's color first... --> + <item> + <shape + android:shape="rectangle"> + <solid android:color="@macro/m3_comp_primary_navigation_tab_divider_color"/> + </shape> + </item> + <!-- ..., then draws a rectangle with the container color to cover the area not for the divider. --> + <item + android:bottom="@dimen/m3_comp_primary_navigation_tab_divider_height"> + <shape + android:shape="rectangle"> + <solid android:color="@macro/m3_comp_primary_navigation_tab_container_color"/> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/material_cursor_drawable.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/material_cursor_drawable.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b5be7b619388f6d14a8df41ebd14059108bf3bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/material_cursor_drawable.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <padding + android:bottom="@dimen/material_cursor_inset" + android:top="@dimen/material_cursor_inset" /> + <size android:width="@dimen/material_cursor_width" /> + <solid android:color="?attr/colorPrimary" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/mtrl_navigation_bar_item_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/mtrl_navigation_bar_item_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e653d6a52368c9409131ff431ae955dcec69eb5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v21/mtrl_navigation_bar_item_background.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="?attr/colorPrimary"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_appbar_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_appbar_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d29cd9ac5cab0335ae9a5d6a18019323ba9a1b3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_appbar_background.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape> + <solid android:color="?attr/colorSurface"/> + </shape> + </item> + <item> + <shape> + <solid android:color="@color/m3_appbar_overlay_color"/> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_popupmenu_background_overlay.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_popupmenu_background_overlay.xml new file mode 100644 index 0000000000000000000000000000000000000000..16ea957c3e90969fb1966d53f50ae37d04f7bdf2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_popupmenu_background_overlay.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape> + <solid android:color="@macro/m3_comp_menu_container_color"/> + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + </shape> + </item> + <item> + <shape> + <solid android:color="@color/m3_popupmenu_overlay_color"/> + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + <padding + android:bottom="8dp" + android:top="8dp"/> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_radiobutton_ripple.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_radiobutton_ripple.xml new file mode 100644 index 0000000000000000000000000000000000000000..5363dd1dbadd864e381aaa6107f6603425c1ce17 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_radiobutton_ripple.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/m3_radiobutton_ripple_tint" + android:radius="20dp" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_selection_control_ripple.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_selection_control_ripple.xml new file mode 100644 index 0000000000000000000000000000000000000000..2122b4198355fe74e5f9f82962e53d55dbc49e0c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_selection_control_ripple.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/m3_selection_control_ripple_color_selector" + android:radius="20dp" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c24d752376bdf9840138fc4426b916462c9d072 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_background.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Fills the entire area with the container's color first... --> + <item> + <shape + android:shape="rectangle"> + <solid android:color="@macro/m3_comp_primary_navigation_tab_container_color"/> + </shape> + </item> + <!-- ..., then draws a rectangle for the divider at the bottom. --> + <item + android:gravity="bottom"> + <shape> + <size android:height="@dimen/m3_comp_primary_navigation_tab_divider_height" /> + <solid android:color="@macro/m3_comp_primary_navigation_tab_divider_color" /> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_transparent_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_transparent_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b9c2b4feb26503a1cd1054b58870d1e0716aafb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/m3_tabs_transparent_background.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:gravity="bottom"> + <shape> + <size android:height="1dp" /> + <solid android:color="?attr/colorSurfaceVariant" /> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/mtrl_popupmenu_background_overlay.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/mtrl_popupmenu_background_overlay.xml new file mode 100644 index 0000000000000000000000000000000000000000..fe51fcbf8dac0c478ad2bc3b368683d48a9e21e6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable-v23/mtrl_popupmenu_background_overlay.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape> + <solid android:color="?attr/colorSurface"/> + + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + + </shape> + </item> + <item> + <shape> + <solid android:color="@color/mtrl_popupmenu_overlay_color"/> + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + + <padding + android:bottom="8dp" + android:top="8dp"/> + </shape> + </item> +</layer-list> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_hide_password.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_hide_password.xml new file mode 100644 index 0000000000000000000000000000000000000000..89f4cddfa7dc94616a0eeb3346a257854aeb2d0c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_hide_password.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <aapt:attr name="android:drawable"> + + <vector + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24" + android:width="24dp"> + + <path + android:name="strike_through" + android:pathData="@string/path_password_strike_through" + android:strokeColor="@android:color/white" + android:strokeLineCap="square" + android:strokeWidth="1.8" + android:trimPathEnd="0"/> + + <group> + + <clip-path + android:name="eye_mask" + android:pathData="@string/path_password_eye_mask_visible"/> + + <path + android:fillColor="@android:color/white" + android:name="eye" + android:pathData="@string/path_password_eye"/> + + </group> + + </vector> + + </aapt:attr> + + <target android:name="eye_mask"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="@integer/hide_password_duration" + android:interpolator="@android:interpolator/fast_out_slow_in" + android:propertyName="pathData" + android:valueFrom="@string/path_password_eye_mask_visible" + android:valueTo="@string/path_password_eye_mask_strike_through" + android:valueType="pathType"/> + + </aapt:attr> + + </target> + + <target android:name="strike_through"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="@integer/hide_password_duration" + android:interpolator="@android:interpolator/fast_out_slow_in" + android:propertyName="trimPathEnd" + android:valueFrom="0" + android:valueTo="1"/> + + </aapt:attr> + + </target> + +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_show_password.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_show_password.xml new file mode 100644 index 0000000000000000000000000000000000000000..aed3983bd44b90f586cb2ff6cd787e16b317b24f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/avd_show_password.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <aapt:attr name="android:drawable"> + + <vector + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24" + android:width="24dp"> + + <path + android:name="strike_through" + android:pathData="@string/path_password_strike_through" + android:strokeColor="@android:color/white" + android:strokeLineCap="square" + android:strokeWidth="1.8"/> + + <group> + + <clip-path + android:name="eye_mask" + android:pathData="@string/path_password_eye_mask_strike_through"/> + + <path + android:fillColor="@android:color/white" + android:name="eye" + android:pathData="@string/path_password_eye"/> + + </group> + + </vector> + + </aapt:attr> + + <target android:name="eye_mask"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="@integer/show_password_duration" + android:interpolator="@android:interpolator/fast_out_linear_in" + android:propertyName="pathData" + android:valueFrom="@string/path_password_eye_mask_strike_through" + android:valueTo="@string/path_password_eye_mask_visible" + android:valueType="pathType"/> + + </aapt:attr> + + </target> + + <target android:name="strike_through"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="@integer/show_password_duration" + android:interpolator="@android:interpolator/fast_out_linear_in" + android:propertyName="trimPathEnd" + android:valueFrom="1" + android:valueTo="0"/> + + </aapt:attr> + + </target> + +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_fab_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_fab_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c1309d9b16be142d44c526d2405326043b628e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_fab_background.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval"> + <solid android:color="@android:color/white"/> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility.xml new file mode 100644 index 0000000000000000000000000000000000000000..078630f4e10d88be523af311b461646dc1836d2f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp"> + + <path + android:fillColor="@android:color/white" + android:pathData="@string/path_password_eye"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility_off.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility_off.xml new file mode 100644 index 0000000000000000000000000000000000000000..30c361f067c873446599e6feb9c96aac454a23a7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_ic_visibility_off.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi" + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24" + android:width="24dp"> + + <path + android:fillColor="@android:color/white" + android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_password_eye.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_password_eye.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e7ca9667cf5e912fc06d184fcc02ea2f416b2c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_password_eye.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<animated-selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <item + android:id="@+id/visible" + android:drawable="@drawable/design_ic_visibility_off" + android:state_checked="true"/> + + <item + android:id="@+id/masked" + android:drawable="@drawable/design_ic_visibility"/> + + <transition + android:drawable="@drawable/avd_hide_password" + android:fromId="@id/masked" + android:toId="@id/visible"/> + + <transition + android:drawable="@drawable/avd_show_password" + android:fromId="@id/visible" + android:toId="@id/masked"/> + +</animated-selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_snackbar_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_snackbar_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..945a0ce853677d856468f89f63adcb8ebf56e78d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/design_snackbar_background.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <corners android:radius="@dimen/design_snackbar_background_corner_radius"/> + <solid android:color="@color/design_snackbar_background_color"/> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_arrow_back_black_24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_arrow_back_black_24.xml new file mode 100644 index 0000000000000000000000000000000000000000..8bcc10ec26b53fb63e6df25a36315fabb757c06a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_arrow_back_black_24.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" tools:ignore="NewApi" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + <path + android:fillColor="#FF000000" + android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clear_black_24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clear_black_24.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d123d5a262557f45b7003ab58292eb59b12c7a1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clear_black_24.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + android:tint="?attr/colorControlNormal" + tools:ignore="NewApi"> + <path + android:fillColor="@android:color/white" + android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clock_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clock_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..e411c47f8d0eccc13bfd963cc3d3cf5463f335ec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_clock_black_24dp.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20zM17.23,14.94l-1.26,1.55L11,13V6h2v6L17.23,14.94z" + android:fillColor="#000000"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_keyboard_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_keyboard_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a55da80ffe962b00cbca0e5c23e3de2dbfd82fe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_keyboard_black_24dp.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:pathData="M20,5L4,5c-1.1,0 -1.99,0.9 -1.99,2L2,17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM11,8h2v2h-2L11,8zM11,11h2v2h-2v-2zM8,8h2v2L8,10L8,8zM8,11h2v2L8,13v-2zM7,13L5,13v-2h2v2zM7,10L5,10L5,8h2v2zM16,17L8,17v-2h8v2zM16,13h-2v-2h2v2zM16,10h-2L14,8h2v2zM19,13h-2v-2h2v2zM19,10h-2L17,8h2v2z" + android:fillColor="#000000"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_check.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_check.xml new file mode 100644 index 0000000000000000000000000000000000000000..709d5c5a83e61dcb1ec69dbe216e8e1ac38b07a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_check.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + <path + android:fillColor="@color/m3_chip_text_color" + android:pathData="M9.189,15.939l-3.127,-3.128l-1.061,1.061l4.189,4.189l9,-9l-1.061,-1.061z" + android:strokeColor="#00000000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_checked_circle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_checked_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..2a9ca41315f4627ba7a21ec866c9b507ec9b7f49 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_checked_circle.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + <!-- The circle --> + <path + android:fillColor="@color/m3_chip_text_color" + android:pathData="M12,12m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0" + android:strokeColor="#00000000" + android:strokeWidth="1"/> + <!-- The checkmark --> + <path + android:fillColor="@color/m3_chip_background_color" + android:pathData="M9.189,15.939l-3.127,-3.128l-1.061,1.061l4.189,4.189l9,-9l-1.061,-1.061z" + android:strokeColor="#00000000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_close.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_close.xml new file mode 100644 index 0000000000000000000000000000000000000000..b16e3e2e4dbc098d9758a594f13118cdf3bbf683 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_m3_chip_close.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:viewportHeight="24.0" + android:height="24dp" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + <path + android:fillColor="#000000" + android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_checked_circle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_checked_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..f78ef67acea05cf6d4d913b0f550657edd6e1277 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_checked_circle.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + tools:ignore="NewApi"> + <path + android:fillColor="#FF000000" + android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,17l-5,-5 1.41,-1.41L10,14.17l7.59,-7.59L19,8l-9,9z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_black.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_black.xml new file mode 100644 index 0000000000000000000000000000000000000000..9032d92c403a195f56be78901dc4ca6d69225d73 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_black.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + <path + android:fillColor="#000000" + android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_circle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..78820bce1e2ad870f77a65200a57ddbfd32e7dc0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_checked_circle.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + <path + android:fillAlpha="0.5" + android:fillColor="#191919" + android:pathData="M12,12m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0" + android:strokeColor="#00000000" + android:strokeWidth="1"/> + <path + android:fillColor="#FFFFFF" + android:pathData="M9.189,15.939l-3.127,-3.128l-1.061,1.061l4.189,4.189l9,-9l-1.061,-1.061z" + android:strokeColor="#00000000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_close_circle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_close_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..e65d48c0b678cadb75c7f1b06568f98bc148e7ef --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_mtrl_chip_close_circle.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="18dp" + android:viewportHeight="18" + android:viewportWidth="18" + android:width="18dp" + tools:ignore="NewApi"> + <path + android:fillColor="#000000" + android:pathData="M13,11.87 L11.87,13 L9,10.13 L6.13,13 L5,11.87 L7.87,9 L5,6.13 L6.13,5 L9,7.87 L11.87,5 L13,6.13 L10.13,9 L13,11.87 Z M9,1 C4.58,1,1,4.58,1,9 C1,13.42,4.58,17,9,17 C13.42,17,17,13.42,17,9 C17,4.58,13.42,1,9,1 L9,1 Z" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_search_black_24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_search_black_24.xml new file mode 100644 index 0000000000000000000000000000000000000000..432276eb5e437e6e3ca8c0dc72befba20dc9b728 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/ic_search_black_24.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" tools:ignore="NewApi" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + <path + android:fillColor="#FF000000" + android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_hide_password.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_hide_password.xml new file mode 100644 index 0000000000000000000000000000000000000000..a56b490aa430a77493dd815b057017fed2cb1d4a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_hide_password.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <aapt:attr name="android:drawable"> + + <vector + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24" + android:width="24dp"> + + <path + android:name="strike_through" + android:pathData="@string/path_password_strike_through" + android:strokeColor="@android:color/white" + android:strokeLineCap="square" + android:strokeWidth="1.8" + android:trimPathEnd="0"/> + + <group> + + <clip-path + android:name="eye_mask" + android:pathData="@string/path_password_eye_mask_visible"/> + + <path + android:fillColor="@android:color/white" + android:name="eye" + android:pathData="@string/path_password_eye"/> + + </group> + + </vector> + + </aapt:attr> + + <target android:name="eye_mask"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="?attr/motionDurationMedium2" + android:interpolator="?attr/motionEasingStandardInterpolator" + android:propertyName="pathData" + android:valueFrom="@string/path_password_eye_mask_visible" + android:valueTo="@string/path_password_eye_mask_strike_through" + android:valueType="pathType"/> + + </aapt:attr> + + </target> + + <target android:name="strike_through"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="?attr/motionDurationMedium2" + android:interpolator="?attr/motionEasingStandardInterpolator" + android:propertyName="trimPathEnd" + android:valueFrom="0" + android:valueTo="1"/> + + </aapt:attr> + + </target> + +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_show_password.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_show_password.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d79db917842d39f3442c884e3734c0f74a21d3b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_avd_show_password.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<animated-vector + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <aapt:attr name="android:drawable"> + + <vector + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24" + android:width="24dp"> + + <path + android:name="strike_through" + android:pathData="@string/path_password_strike_through" + android:strokeColor="@android:color/white" + android:strokeLineCap="square" + android:strokeWidth="1.8"/> + + <group> + + <clip-path + android:name="eye_mask" + android:pathData="@string/path_password_eye_mask_strike_through"/> + + <path + android:fillColor="@android:color/white" + android:name="eye" + android:pathData="@string/path_password_eye"/> + + </group> + + </vector> + + </aapt:attr> + + <target android:name="eye_mask"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="?attr/motionDurationShort4" + android:interpolator="?attr/motionEasingStandardInterpolator" + android:propertyName="pathData" + android:valueFrom="@string/path_password_eye_mask_strike_through" + android:valueTo="@string/path_password_eye_mask_visible" + android:valueType="pathType"/> + + </aapt:attr> + + </target> + + <target android:name="strike_through"> + + <aapt:attr name="android:animation"> + + <objectAnimator + android:duration="?attr/motionDurationShort4" + android:interpolator="?attr/motionEasingStandardInterpolator" + android:propertyName="trimPathEnd" + android:valueFrom="1" + android:valueTo="0"/> + + </aapt:attr> + + </target> + +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_password_eye.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_password_eye.xml new file mode 100644 index 0000000000000000000000000000000000000000..aaad96dfeeff4e3e82fae5acc0d37e3df948c15a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_password_eye.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<animated-selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="NewApi"> + + <item + android:id="@+id/visible" + android:drawable="@drawable/design_ic_visibility_off" + android:state_checked="true"/> + + <item + android:id="@+id/masked" + android:drawable="@drawable/design_ic_visibility"/> + + <transition + android:drawable="@drawable/m3_avd_hide_password" + android:fromId="@id/masked" + android:toId="@id/visible"/> + + <transition + android:drawable="@drawable/m3_avd_show_password" + android:fromId="@id/visible" + android:toId="@id/masked"/> + +</animated-selector> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_popupmenu_background_overlay.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_popupmenu_background_overlay.xml new file mode 100644 index 0000000000000000000000000000000000000000..eaa8698548286e1e6e60903866cae452f6f04ec0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_popupmenu_background_overlay.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="@macro/m3_comp_menu_container_color"/> + + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + + <padding + android:bottom="8dp" + android:top="8dp"/> + +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_line_indicator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_line_indicator.xml new file mode 100644 index 0000000000000000000000000000000000000000..f204c67c850e11cd66368a4d0a890c0b047d05d7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_line_indicator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <!-- Color is assigned programmatically with the value of "tabIndicatorColor". --> + <solid android:color="@android:color/white"/> + <size android:height="@dimen/m3_comp_secondary_navigation_tab_active_indicator_height"/> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_rounded_line_indicator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_rounded_line_indicator.xml new file mode 100644 index 0000000000000000000000000000000000000000..00dd0f5c03d30e2423677dd73063d841fec1d9c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/m3_tabs_rounded_line_indicator.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:left="2dp" + android:right="2dp"> + <shape + android:shape="rectangle"> + <!-- Color is assigned programmatically with the value of "tabIndicatorColor". --> + <solid android:color="@android:color/white"/> + <corners + android:bottomLeftRadius="0dp" + android:bottomRightRadius="0dp" + android:topLeftRadius="3dp" + android:topRightRadius="3dp"/> + <size android:height="@dimen/m3_comp_primary_navigation_tab_active_indicator_height"/> + </shape> + </item> +</layer-list> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_cursor_drawable.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_cursor_drawable.xml new file mode 100644 index 0000000000000000000000000000000000000000..11462ed83b41da50ab2c9891fd3a9760c3bf1da8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_cursor_drawable.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <padding + android:bottom="@dimen/material_cursor_inset" + android:top="@dimen/material_cursor_inset" /> + <size android:width="@dimen/material_cursor_width" /> + <solid android:color="@android:color/black" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_calendar_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_calendar_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..faf92c076dd1ca38cce1308d04c87f3930cf9c42 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_calendar_black_24dp.xml @@ -0,0 +1,26 @@ +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + tools:ignore="NewApi"> + <path + android:fillColor="#FF000000" + android:pathData="M20,3h-1L19,1h-2v2L7,3L7,1L5,1v2L4,3c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,21L4,21L4,8h16v13z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_clear_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_clear_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..193b8459423c1dc1893b818de8cb582bde8cbfec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_clear_black_24dp.xml @@ -0,0 +1,28 @@ +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + tools:ignore="NewApi"> + <path + android:name="path" + android:pathData="M 19 6.41 L 17.59 5 L 12 10.59 L 6.41 5 L 5 6.41 L 10.59 12 L 5 17.59 L 6.41 19 L 12 13.41 L 17.59 19 L 19 17.59 L 13.41 12 Z" + android:fillColor="#000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_edit_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_edit_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f49c430ddf418665b2f31fb1e10b1bd190752c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_edit_black_24dp.xml @@ -0,0 +1,26 @@ +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + tools:ignore="NewApi"> + <path + android:fillColor="#FF000000" + android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f18d28426e9dc29e445985ce5f0468c9259b22a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + tools:ignore="NewApi"> + <path + android:name="path_1" + android:pathData="M 15.41 16.59 L 10.83 12 L 15.41 7.41 L 14 6 L 8 12 L 14 18 L 15.41 16.59 Z" + android:fillColor="#000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..89457fcf8058a3a38b0dffd75c993d4b166ad668 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + tools:ignore="NewApi"> + <path + android:name="path" + android:pathData="M 8.59 16.59 L 13.17 12 L 8.59 7.41 L 10 6 L 16 12 L 10 18 L 8.59 16.59 Z" + android:fillColor="#000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_down_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_down_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..014cecc0d2ab84e2381b6a179f9ba0b6a3aa7ee3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_down_black_24dp.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + tools:ignore="NewApi"> + <path + android:name="path" + android:pathData="M 7 10 L 12 15 L 17 10 Z" + android:fillColor="#000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_up_black_24dp.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_up_black_24dp.xml new file mode 100644 index 0000000000000000000000000000000000000000..268495c522799751800c2f2911c72a4ed9b906c1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/material_ic_menu_arrow_up_black_24dp.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24" + tools:ignore="NewApi"> + <path + android:name="path" + android:pathData="M 7 14 L 12 9 L 17 14 Z" + android:fillColor="#000" + android:strokeWidth="1"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_bottomsheet_drag_handle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_bottomsheet_drag_handle.xml new file mode 100644 index 0000000000000000000000000000000000000000..a99eb3980beee940e62107c4a694592f74bcb7d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_bottomsheet_drag_handle.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <size android:height="4dp" android:width="32dp" /> + <corners android:radius="2dp" /> + <solid android:color="#FFF" /> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b9cdcd24296d2e3c124569491e9ccc1ade45e41 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" + tools:ignore="NewApi"> + <item + android:id="@+id/checked" + android:drawable="@drawable/mtrl_ic_checkbox_checked" + android:state_checked="true"/> + <item + android:id="@+id/indeterminate" + android:drawable="@drawable/mtrl_ic_checkbox_checked" + app:state_indeterminate="true"/> + <item + android:id="@+id/unchecked" + android:drawable="@drawable/mtrl_ic_checkbox_unchecked" + android:state_checked="false"/> + + <transition + android:fromId="@+id/checked" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_checkbox_button_checked_unchecked" /> + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/checked" + android:drawable="@drawable/mtrl_checkbox_button_unchecked_checked" /> + + <transition + android:fromId="@+id/indeterminate" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_checkbox_button_checked_unchecked" /> + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/indeterminate" + android:drawable="@drawable/mtrl_checkbox_button_unchecked_checked" /> +</animated-selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_checked_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_checked_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a7a641410c8e2a3699eb0d283592df85179b8da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_checked_unchecked.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_checkbox_checked" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short1" + android:interpolator="?attr/motionEasingLinearInterpolator" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..639b73658aa9409c79ee8a2f4b99f3bc45adac0c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-selector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" + tools:ignore="NewApi"> + <item + android:id="@+id/checked" + android:drawable="@drawable/mtrl_ic_check_mark" + android:state_checked="true"/> + <item + android:id="@+id/indeterminate" + android:drawable="@drawable/mtrl_ic_indeterminate" + app:state_indeterminate="true"/> + <item + android:id="@+id/unchecked" + android:drawable="@android:color/transparent" + android:state_checked="false"/> + + <transition + android:fromId="@+id/checked" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_checkbox_button_icon_checked_unchecked" /> + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/checked" + android:drawable="@drawable/mtrl_checkbox_button_icon_unchecked_checked" /> + + <transition + android:fromId="@+id/indeterminate" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_checkbox_button_icon_indeterminate_unchecked" /> + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/indeterminate" + android:drawable="@drawable/mtrl_checkbox_button_icon_unchecked_indeterminate" /> + + <transition + android:fromId="@+id/indeterminate" + android:toId="@+id/checked" + android:drawable="@drawable/mtrl_checkbox_button_icon_indeterminate_checked" /> + <transition + android:fromId="@+id/checked" + android:toId="@+id/indeterminate" + android:drawable="@drawable/mtrl_checkbox_button_icon_checked_indeterminate" /> +</animated-selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml new file mode 100644 index 0000000000000000000000000000000000000000..aaa1be1414a9eae8eda11960a7130c95d0166375 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_check_mark" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_checkbox_button_icon_path_checked" + android:valueTo="@string/mtrl_checkbox_button_icon_path_indeterminate" + android:valueType="pathType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..713eee102db85da10fd95c2847d9a78a9f3f0a76 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_check_mark" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short1" + android:interpolator="?attr/motionEasingLinearInterpolator" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..dcbaa18764ae89c54df73080d2421de459c3f5e9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_indeterminate" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_checkbox_button_icon_path_indeterminate" + android:valueTo="@string/mtrl_checkbox_button_icon_path_checked" + android:valueType="pathType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..6346c79d839032155c975d43c134d5c2bb1ef42a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_indeterminate" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short3" + android:interpolator="?attr/motionEasingEmphasizedAccelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="1.0" + android:valueTo="0.6" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short1" + android:interpolator="?attr/motionEasingLinearInterpolator" + android:propertyName="fillAlpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..21d35e42f0af7dbb72366305384a38eaffbb9b5b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_check_mark" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="trimPathEnd" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml new file mode 100644 index 0000000000000000000000000000000000000000..da62b658f63082ba87e70545a1257c7fb6ed9cc7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_indeterminate" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_icon_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short1" + android:interpolator="?attr/motionEasingLinearInterpolator" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_unchecked_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_unchecked_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed6d9b2126811d5fc231fe4e1519d15d3259fd8f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_checkbox_button_unchecked_checked.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_ic_checkbox_checked" + tools:ignore="NewApi"> + <target android:name="@string/mtrl_checkbox_button_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleX" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_path_group_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_medium3" + android:interpolator="?attr/motionEasingEmphasizedDecelerateInterpolator" + android:propertyName="scaleY" + android:valueFrom="0.6" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> + <target android:name="@string/mtrl_checkbox_button_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/m3_sys_motion_duration_short1" + android:interpolator="?attr/motionEasingLinearInterpolator" + android:propertyName="fillAlpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType"/> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dialog_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dialog_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd0ed8c9472efae4f959482d859e886102460e04 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dialog_background.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/appcompat_dialog_background_inset" + android:insetTop="@dimen/appcompat_dialog_background_inset" + android:insetRight="@dimen/appcompat_dialog_background_inset" + android:insetBottom="@dimen/appcompat_dialog_background_inset"> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/mtrl_shape_corner_size_medium_component" /> + <solid android:color="?attr/colorSurface" /> + </shape> +</inset> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dropdown_arrow.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dropdown_arrow.xml new file mode 100644 index 0000000000000000000000000000000000000000..445a0177ef9f7d035b79a11e0d05c91280f19615 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_dropdown_arrow.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:drawable="@drawable/mtrl_ic_arrow_drop_up" + android:state_checked="true"/> + + <item + android:drawable="@drawable/mtrl_ic_arrow_drop_down"/> + +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_down.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_down.xml new file mode 100644 index 0000000000000000000000000000000000000000..58bc9e827aa5700ed13bfd031b73af800be8ddd7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_down.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + + <path + android:fillColor="@android:color/white" + android:pathData="M7 10l5 5 5-5z"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_up.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_up.xml new file mode 100644 index 0000000000000000000000000000000000000000..93d88d59b7fe74a2e74ef89b1c9e222c59c9dcd3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_arrow_drop_up.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + + <path + android:fillColor="@android:color/white" + android:pathData="M7 14l5-5 5 5z"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_cancel.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_cancel.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc1dc5fe95258aa2a5d2084e1101d5892631aebf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_cancel.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + + <path + android:fillColor="@android:color/white" + android:pathData="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_check_mark.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_check_mark.xml new file mode 100644 index 0000000000000000000000000000000000000000..849f64d7000ee9fa0ae83394e147edaf1a8209a9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_check_mark.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32" + tools:ignore="NewApi"> + <group + android:name="@string/mtrl_checkbox_button_icon_path_group_name" + android:pivotX="16" + android:pivotY="16"> + <path + android:name="@string/mtrl_checkbox_button_icon_path_name" + android:fillColor="@android:color/white" + android:pathData="@string/mtrl_checkbox_button_icon_path_checked"/> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd0ef0e3d70fbf5dca28101ca4268b651612d660 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_checked.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32" + tools:ignore="NewApi"> + <group> + <path + android:fillColor="@android:color/black" + android:pathData="@string/mtrl_checkbox_button_path_unchecked"/> + </group> + <group + android:name="@string/mtrl_checkbox_button_path_group_name" + android:pivotX="16" + android:pivotY="16"> + <path + android:name="@string/mtrl_checkbox_button_path_name" + android:fillColor="@android:color/black" + android:pathData="@string/mtrl_checkbox_button_path_checked"/> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b7c498a3f9fb11b9e0a308c4b4caf82953412ac --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_checkbox_unchecked.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32" + tools:ignore="NewApi"> + <group> + <path + android:fillColor="@android:color/black" + android:pathData="@string/mtrl_checkbox_button_path_unchecked"/> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_error.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_error.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ba7c826eda388ac43c8f06c12f448facb33f723 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_error.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2019 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + tools:ignore="NewApi"> + + <path + android:fillColor="@android:color/white" + android:pathData="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_indeterminate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_indeterminate.xml new file mode 100644 index 0000000000000000000000000000000000000000..e303ebc1efdac97b9987124e41674fd7ae9fb304 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_ic_indeterminate.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="32dp" + android:height="32dp" + android:viewportWidth="32" + android:viewportHeight="32" + tools:ignore="NewApi"> + <group + android:name="@string/mtrl_checkbox_button_icon_path_group_name" + android:pivotX="16" + android:pivotY="16"> + <path + android:name="@string/mtrl_checkbox_button_icon_path_name" + android:fillColor="@android:color/white" + android:pathData="@string/mtrl_checkbox_button_icon_path_indeterminate"/> + </group> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_navigation_bar_item_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_navigation_bar_item_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..82dd0ab7be20e51ec1a4873aab38f8caeb23fa1d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_navigation_bar_item_background.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true"> + <shape android:shape="rectangle"> + <solid android:color="#ff0000"/> + </shape> + </item> + <item> + <shape android:shape="rectangle"> + <solid android:color="#ffffff"/> + </shape> + </item> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..f2eeebb464acd91589435162c59f90cd44e86301 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="?attr/colorSurface"/> + + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + + <padding + android:bottom="8dp" + android:top="8dp"/> + +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background_overlay.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background_overlay.xml new file mode 100644 index 0000000000000000000000000000000000000000..021fe9d556b8c4a21c7e70e449a3f6f96d6e8eda --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_popupmenu_background_overlay.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <solid android:color="?attr/colorSurface"/> + + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp"/> + + <padding + android:bottom="8dp" + android:top="8dp"/> + +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a41f6c033a74e486e40b6ac87eaefe4a597ae91 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-selector 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:width="@dimen/mtrl_switch_thumb_size" + android:height="@dimen/mtrl_switch_thumb_size" + tools:ignore="NewApi"> + + <item + android:id="@+id/pressed" + android:drawable="@drawable/mtrl_switch_thumb_pressed" + android:state_pressed="true" /> + + <item + android:id="@+id/checked" + android:drawable="@drawable/mtrl_switch_thumb_checked" + android:state_checked="true" /> + + <item + android:id="@+id/with_icon" + android:drawable="@drawable/mtrl_switch_thumb_checked" + app:state_with_icon="true" /> + + <item + android:id="@+id/unchecked" + android:drawable="@drawable/mtrl_switch_thumb_unchecked" /> + + <transition + android:fromId="@+id/pressed" + android:toId="@+id/checked" + android:drawable="@drawable/mtrl_switch_thumb_pressed_checked" /> + + <transition + android:fromId="@+id/pressed" + android:toId="@+id/with_icon" + android:drawable="@drawable/mtrl_switch_thumb_pressed_checked" /> + + <transition + android:fromId="@+id/pressed" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_switch_thumb_pressed_unchecked" /> + + <transition + android:fromId="@+id/checked" + android:toId="@+id/pressed" + android:drawable="@drawable/mtrl_switch_thumb_checked_pressed" /> + + <transition + android:fromId="@+id/checked" + android:toId="@+id/unchecked" + android:drawable="@drawable/mtrl_switch_thumb_checked_unchecked" /> + + <transition + android:fromId="@+id/with_icon" + android:toId="@+id/pressed" + android:drawable="@drawable/mtrl_switch_thumb_checked_pressed" /> + + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/pressed" + android:drawable="@drawable/mtrl_switch_thumb_unchecked_pressed" /> + + <transition + android:fromId="@+id/unchecked" + android:toId="@+id/checked" + android:drawable="@drawable/mtrl_switch_thumb_unchecked_checked" /> + +</animated-selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f1ade8ca93f703e2df9d1674e0aec2bd4b0cd9f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="@dimen/mtrl_switch_thumb_size" + android:height="@dimen/mtrl_switch_thumb_size" + android:viewportHeight="@integer/mtrl_switch_thumb_viewport_size" + android:viewportWidth="@integer/mtrl_switch_thumb_viewport_size" + tools:ignore="NewApi"> + + <group + android:name="@string/mtrl_switch_thumb_group_name" + android:pivotX="@integer/mtrl_switch_thumb_viewport_center_coordinate" + android:pivotY="@integer/mtrl_switch_thumb_viewport_center_coordinate"> + <path + android:name="@string/mtrl_switch_thumb_path_name" + android:fillColor="#FFFFFFFF" + android:pathData="@string/mtrl_switch_thumb_path_checked" /> + </group> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_pressed.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_pressed.xml new file mode 100644 index 0000000000000000000000000000000000000000..b12bbe995409d4dba85959c1cc37be20aecc6752 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_pressed.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_checked" + tools:ignore="NewApi"> + + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_pressed_duration" + android:interpolator="@interpolator/m3_sys_motion_easing_standard" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_checked" + android:valueTo="@string/mtrl_switch_thumb_path_pressed" + android:valueType="pathType" /> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..f7552d0b7ff8149fed59411be6bae92d505a494d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_checked_unchecked.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_checked" + tools:ignore="NewApi"> + + <set + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:shareInterpolator="true"> + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_pre_morphing_duration" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_checked" + android:valueTo="@string/mtrl_switch_thumb_path_morphing" + android:valueType="pathType" /> + </aapt:attr> + </target> + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:startOffset="@integer/mtrl_switch_thumb_pre_morphing_duration" + android:duration="@integer/mtrl_switch_thumb_post_morphing_duration" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_morphing" + android:valueTo="@string/mtrl_switch_thumb_path_unchecked" + android:valueType="pathType" /> + </aapt:attr> + </target> + </set> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed.xml new file mode 100644 index 0000000000000000000000000000000000000000..e652dd1898c16d8e0d9e82ab7b757c9201bfeed8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="@dimen/mtrl_switch_thumb_size" + android:height="@dimen/mtrl_switch_thumb_size" + android:viewportHeight="@integer/mtrl_switch_thumb_viewport_size" + android:viewportWidth="@integer/mtrl_switch_thumb_viewport_size" + tools:ignore="NewApi"> + + <group + android:name="@string/mtrl_switch_thumb_group_name" + android:pivotX="@integer/mtrl_switch_thumb_viewport_center_coordinate" + android:pivotY="@integer/mtrl_switch_thumb_viewport_center_coordinate"> + <path + android:name="@string/mtrl_switch_thumb_path_name" + android:fillColor="#ffffffff" + android:pathData="@string/mtrl_switch_thumb_path_pressed" /> + </group> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..691c76bd81afc15479d9f9b92d701c548ed87d86 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_checked.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_pressed" + tools:ignore="NewApi"> + + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_pressed_duration" + android:interpolator="@interpolator/m3_sys_motion_easing_standard" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_pressed" + android:valueTo="@string/mtrl_switch_thumb_path_checked" + android:valueType="pathType" /> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..8d5eac769cd0d3221077debbdb31a635bfbe761d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_pressed_unchecked.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_pressed" + tools:ignore="NewApi"> + + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_pressed_duration" + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_pressed" + android:valueTo="@string/mtrl_switch_thumb_path_unchecked" + android:valueType="pathType" /> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked.xml new file mode 100644 index 0000000000000000000000000000000000000000..131b1fc269677294854aeebaa3dc54de8241034b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="@dimen/mtrl_switch_thumb_size" + android:height="@dimen/mtrl_switch_thumb_size" + android:viewportHeight="@integer/mtrl_switch_thumb_viewport_size" + android:viewportWidth="@integer/mtrl_switch_thumb_viewport_size" + tools:ignore="NewApi"> + + <group + android:name="@string/mtrl_switch_thumb_group_name" + android:pivotX="@integer/mtrl_switch_thumb_viewport_center_coordinate" + android:pivotY="@integer/mtrl_switch_thumb_viewport_center_coordinate"> + <path + android:name="@string/mtrl_switch_thumb_path_name" + android:fillColor="#FFFFFFFF" + android:pathData="@string/mtrl_switch_thumb_path_unchecked" /> + </group> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_checked.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_checked.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c5ca0d746c37fde957ced280e4382155e65d0f2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_checked.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_unchecked" + tools:ignore="NewApi"> + + <set + android:interpolator="@interpolator/m3_sys_motion_easing_emphasized" + android:shareInterpolator="true"> + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_post_morphing_duration" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_unchecked" + android:valueTo="@string/mtrl_switch_thumb_path_morphing" + android:valueType="pathType" /> + </aapt:attr> + </target> + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:startOffset="@integer/mtrl_switch_thumb_post_morphing_duration" + android:duration="@integer/mtrl_switch_thumb_pre_morphing_duration" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_morphing" + android:valueTo="@string/mtrl_switch_thumb_path_checked" + android:valueType="pathType" /> + </aapt:attr> + </target> + </set> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_pressed.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_pressed.xml new file mode 100644 index 0000000000000000000000000000000000000000..a5d36a31dbd70646eb5eb6c341345b34b33de799 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_thumb_unchecked_pressed.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + xmlns:tools="http://schemas.android.com/tools" + android:drawable="@drawable/mtrl_switch_thumb_unchecked" + tools:ignore="NewApi"> + + <target android:name="@string/mtrl_switch_thumb_path_name"> + <aapt:attr name="android:animation"> + <objectAnimator + android:duration="@integer/mtrl_switch_thumb_pressed_duration" + android:interpolator="@interpolator/m3_sys_motion_easing_standard" + android:propertyName="pathData" + android:valueFrom="@string/mtrl_switch_thumb_path_unchecked" + android:valueTo="@string/mtrl_switch_thumb_path_pressed" + android:valueType="pathType" /> + </aapt:attr> + </target> +</animated-vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track.xml new file mode 100644 index 0000000000000000000000000000000000000000..7b2a86fc0c4b6111074c77954ea8c3adb04c5600 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="@dimen/mtrl_switch_track_width" + android:height="@dimen/mtrl_switch_track_height" + android:viewportWidth="@integer/mtrl_switch_track_viewport_width" + android:viewportHeight="@integer/mtrl_switch_track_viewport_height" + tools:ignore="NewApi"> + + <path + android:name="track" + android:fillColor="#FFFFFFFF" + android:pathData="@string/mtrl_switch_track_path" /> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track_decoration.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track_decoration.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fd3319cdde6b50bd4a96bbf957af3e1594a4568 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_switch_track_decoration.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:width="@dimen/mtrl_switch_track_width" + android:height="@dimen/mtrl_switch_track_height" + android:viewportWidth="@integer/mtrl_switch_track_viewport_width" + android:viewportHeight="@integer/mtrl_switch_track_viewport_height" + tools:ignore="NewApi"> + + <path + android:name="outline" + android:strokeColor="?attr/colorOutline" + android:strokeWidth="2" + android:pathData="@string/mtrl_switch_track_decoration_path" /> + +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_tabs_default_indicator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_tabs_default_indicator.xml new file mode 100644 index 0000000000000000000000000000000000000000..68ac74050560ebae8c6ca5c63f0eec92c295445b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/mtrl_tabs_default_indicator.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape + android:shape="rectangle"> + <solid android:color="@android:color/white"/> + <size android:height="2dp"/> + </shape> + </item> +</selector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/navigation_empty_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/navigation_empty_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..976507ed4069e7ec2172372418883d12685afc83 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/drawable/navigation_empty_icon.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="@android:color/transparent"/> + <size + android:height="@dimen/design_navigation_icon_size" + android:width="@dimen/design_navigation_icon_size"/> +</shape> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized.xml new file mode 100644 index 0000000000000000000000000000000000000000..01c9710aa78addadb94115737f4a5e1d2ea2934a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:pathData="@string/m3_sys_motion_easing_emphasized_path_data" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..2527b6607e106df9275a5cb75d54a6a11780dea2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_emphasized_accelerate_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_emphasized_accelerate_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_emphasized_accelerate_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_emphasized_accelerate_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..53179cfe3dc8c88a80024276d61b1860c8a9e4fe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_emphasized_decelerate_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_emphasized_decelerate_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_emphasized_decelerate_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_emphasized_decelerate_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_linear.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_linear.xml new file mode 100644 index 0000000000000000000000000000000000000000..a738c4682e772dd8b838765a965ff66567285da2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_linear.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_linear_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_linear_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_linear_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_linear_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard.xml new file mode 100644 index 0000000000000000000000000000000000000000..6fe4488c9081f40784c2936606b86187b80969bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_standard_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_standard_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_standard_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_standard_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..513147958b5a90f72d78d24038acd7cb9fc1aed2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_standard_accelerate_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_standard_accelerate_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_standard_accelerate_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_standard_accelerate_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..d35341cfa8b22e57e98b5400f26b2702248946c9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="@dimen/m3_sys_motion_easing_standard_decelerate_control_x1" + android:controlY1="@dimen/m3_sys_motion_easing_standard_decelerate_control_y1" + android:controlX2="@dimen/m3_sys_motion_easing_standard_decelerate_control_x2" + android:controlY2="@dimen/m3_sys_motion_easing_standard_decelerate_control_y2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_linear_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_linear_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..f88a91d2fdd879e5bc4002c927617e3851ac0265 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_linear_in.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="0.4" + android:controlY1="0" + android:controlX2="1" + android:controlY2="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0e2c84cd17e5460740822e1c09a850f742c218e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_fast_out_slow_in.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="0.4" + android:controlY1="0" + android:controlX2="0.2" + android:controlY2="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_linear_out_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_linear_out_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..2325a84feebf37e93fea5008e71aec9cca7550ad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator-v21/mtrl_linear_out_slow_in.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" + android:controlX1="0" + android:controlY1="0" + android:controlX2="0.2" + android:controlY2="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized.xml new file mode 100644 index 0000000000000000000000000000000000000000..a11a9070e09ab270c362c63f0e900f5338a39930 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<accelerateDecelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_accelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_accelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..a48c2164921b2800f28310ab4abadf1f6253f550 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_accelerate.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<accelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_decelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_decelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebee72db64e7abb61185d6b9c1bab4359cad5163 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_emphasized_decelerate.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<decelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_linear.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_linear.xml new file mode 100644 index 0000000000000000000000000000000000000000..afe024b9241d9787b92546394145a9197af75dec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_linear.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<linearInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard.xml new file mode 100644 index 0000000000000000000000000000000000000000..a11a9070e09ab270c362c63f0e900f5338a39930 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<accelerateDecelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_accelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_accelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..a48c2164921b2800f28310ab4abadf1f6253f550 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_accelerate.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<accelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_decelerate.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_decelerate.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebee72db64e7abb61185d6b9c1bab4359cad5163 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/m3_sys_motion_easing_standard_decelerate.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<decelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_linear_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_linear_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b9d209a310a4301b97db1afda5b40d5681159b2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_linear_in.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<!-- MotionSpec replaces this with a fast out linear in interpolator. --> +<accelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd9db4983c4da5d1e5f21f11aa1da491dd464aad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_fast_out_slow_in.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<!-- MotionSpec replaces this with a fast out slow in interpolator. --> +<accelerateDecelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear.xml new file mode 100644 index 0000000000000000000000000000000000000000..92a560cb409f5191056f324fd6f6dd14156dbe25 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<linearInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear_out_slow_in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear_out_slow_in.xml new file mode 100644 index 0000000000000000000000000000000000000000..32407f035f53dc8ab551474651f6e028dde560d3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/interpolator/mtrl_linear_out_slow_in.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<!-- MotionSpec replaces this with a linear out slow in interpolator. --> +<decelerateInterpolator /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_clock_period_toggle_land.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_clock_period_toggle_land.xml new file mode 100644 index 0000000000000000000000000000000000000000..c40ede385f27f375a8232c517eb54cfcead4905d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_clock_period_toggle_land.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<com.google.android.material.button.MaterialButtonToggleGroup 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:id="@+id/material_clock_period_toggle" + tools:ignore="MissingDefaultResource" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:visibility="gone" + app:checkedButton="@id/material_clock_period_am_button" + app:selectionRequired="true" + app:singleSelection="true"> + + <Button + android:id="@+id/material_clock_period_am_button" + style="?attr/materialButtonOutlinedStyle" + android:layout_width="0dp" + android:layout_weight="1" + android:insetTop="4dp" + android:insetBottom="4dp" + android:text="@string/material_timepicker_am" /> + <Button + android:id="@+id/material_clock_period_pm_button" + style="?attr/materialButtonOutlinedStyle" + android:layout_width="0dp" + android:layout_weight="1" + android:insetTop="4dp" + android:insetBottom="4dp" + android:text="@string/material_timepicker_pm" /> + +</com.google.android.material.button.MaterialButtonToggleGroup> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_timepicker.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_timepicker.xml new file mode 100644 index 0000000000000000000000000000000000000000..c4bdcd412c7369a552f5b134cafe7efd00f1813b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/material_timepicker.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<merge 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:id="@+id/material_timepicker_container" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout"> + + <androidx.constraintlayout.helper.widget.Flow + android:id="@+id/material_clock_display_and_toggle" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginTop="20dp" + android:orientation="vertical" + app:constraint_referenced_ids="material_clock_display,material_clock_period_toggle" + app:flow_verticalGap="@dimen/material_clock_period_toggle_vertical_gap" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <include + android:id="@+id/material_clock_display" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + layout="@layout/material_clock_display" /> + + <include + android:id="@+id/material_clock_period_toggle" + android:layout_width="0dp" + android:layout_height="wrap_content" + layout="@layout/material_clock_period_toggle_land" /> + + <com.google.android.material.timepicker.ClockFaceView + android:id="@+id/material_clock_face" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="@dimen/clock_face_margin_start" + app:layout_constraintStart_toEndOf="@+id/material_clock_display_and_toggle" + app:layout_constraintTop_toTopOf="parent" /> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/mtrl_picker_header_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/mtrl_picker_header_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..dae8c3cb612c137140f9e62a433bae673be06253 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-land/mtrl_picker_header_dialog.xml @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<merge xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="match_parent"> + + <LinearLayout + android:id="@+id/mtrl_picker_header" + style="?attr/materialCalendarHeaderLayout" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="start|center_horizontal" + android:paddingBottom="@dimen/mtrl_calendar_header_content_padding" + android:paddingStart="@dimen/mtrl_calendar_header_content_padding" + android:paddingEnd="@dimen/mtrl_calendar_header_content_padding" + android:paddingLeft="@dimen/mtrl_calendar_header_content_padding" + android:paddingRight="@dimen/mtrl_calendar_header_content_padding" + android:orientation="vertical"> + + <FrameLayout + android:id="@+id/mtrl_picker_header_title_and_selection" + android:layout_width="@dimen/mtrl_calendar_landscape_header_width" + android:layout_height="0dp" + android:layout_weight="1" + android:paddingStart="@dimen/mtrl_calendar_header_text_padding" + android:paddingLeft="@dimen/mtrl_calendar_header_text_padding" + android:focusable="true" + android:focusableInTouchMode="true"> + + <include layout="@layout/mtrl_picker_header_title_text"/> + <include layout="@layout/mtrl_picker_header_selection_text"/> + + </FrameLayout> + + <include layout="@layout/mtrl_picker_header_toggle"/> + + </LinearLayout> + + <View + style="?attr/materialCalendarHeaderDivider" + android:layout_width="@dimen/mtrl_calendar_header_divider_thickness" + android:layout_height="match_parent" + android:layout_gravity="end"/> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/design_layout_snackbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/design_layout_snackbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..1d25f0df47bd31979978b1b2d3464b2709c0bb0d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/design_layout_snackbar.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Design.Snackbar" + class="com.google.android.material.snackbar.Snackbar$SnackbarLayout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom|center_horizontal" + android:theme="@style/ThemeOverlay.AppCompat.Dark"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..e18243920ec022a322ea9c284d6a65d3ec350d7b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view xmlns:android="http://schemas.android.com/apk/res/android" + style="?attr/snackbarStyle" + class="com.google.android.material.snackbar.Snackbar$SnackbarLayout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom|center_horizontal"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-v26/mtrl_calendar_month.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-v26/mtrl_calendar_month.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc39a3dd13806f1eedea37f1c87ccb82dc644f08 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout-v26/mtrl_calendar_month.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<com.google.android.material.datepicker.MaterialCalendarGridView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/month_grid" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:addStatesFromChildren="false" + android:defaultFocusHighlightEnabled="false" + android:descendantFocusability="afterDescendants" + android:gravity="center" + android:horizontalSpacing="@dimen/mtrl_calendar_month_horizontal_padding" + android:listSelector="@android:color/transparent" + android:verticalSpacing="@dimen/mtrl_calendar_month_vertical_padding"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_navigation_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_navigation_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..d64dd8d7876b4968bc0499bbb2dabff4732ba4f8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_navigation_item.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + + <FrameLayout + android:id="@id/navigation_bar_item_icon_container" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:layout_marginTop="@dimen/design_bottom_navigation_margin" + android:layout_marginBottom="@dimen/design_bottom_navigation_margin" + android:duplicateParentState="true"> + <View + android:id="@id/navigation_bar_item_active_indicator_view" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_gravity="center" /> + <ImageView + android:id="@id/navigation_bar_item_icon_view" + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_gravity="center" + android:contentDescription="@null" + android:duplicateParentState="true"/> + </FrameLayout> + <com.google.android.material.internal.BaselineLayout + android:id="@id/navigation_bar_item_labels_group" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom|center_horizontal" + android:paddingBottom="@dimen/design_bottom_navigation_label_padding" + android:clipChildren="false" + android:clipToPadding="false" + android:duplicateParentState="true"> + <TextView + android:id="@id/navigation_bar_item_small_label_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:duplicateParentState="true" + android:ellipsize="end" + android:maxLines="1" + android:textSize="@dimen/design_bottom_navigation_text_size"/> + <TextView + android:id="@id/navigation_bar_item_large_label_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:duplicateParentState="true" + android:ellipsize="end" + android:maxLines="1" + android:textSize="@dimen/design_bottom_navigation_active_text_size" + android:visibility="invisible"/> + </com.google.android.material.internal.BaselineLayout> +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_sheet_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_sheet_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..111d6961d203c90881ccdb47c8b140f06e38897e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_bottom_sheet_dialog.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<FrameLayout + 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:id="@+id/container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <androidx.coordinatorlayout.widget.CoordinatorLayout + android:id="@+id/coordinator" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <View + android:id="@+id/touch_outside" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:focusable="false" + android:importantForAccessibility="no" + android:soundEffectsEnabled="false" + tools:ignore="UnusedAttribute"/> + + <FrameLayout + android:id="@+id/design_bottom_sheet" + style="?attr/bottomSheetStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal|top" + app:layout_behavior="@string/bottom_sheet_behavior"/> + + </androidx.coordinatorlayout.widget.CoordinatorLayout> + +</FrameLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..65d7fda3b93b6e4f1046641c3fb86e65b2602e85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Design.Snackbar" + class="com.google.android.material.snackbar.Snackbar$SnackbarLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="bottom" + android:theme="@style/ThemeOverlay.AppCompat.Dark"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar_include.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar_include.xml new file mode 100644 index 0000000000000000000000000000000000000000..66dba144610cc703cb81a14ca8c30309195e3639 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_snackbar_include.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view + xmlns:android="http://schemas.android.com/apk/res/android" + class="com.google.android.material.snackbar.SnackbarContentLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="bottom" + android:theme="@style/ThemeOverlay.AppCompat.Dark"> + + <TextView + android:id="@+id/snackbar_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_gravity="center_vertical|left|start" + android:paddingTop="@dimen/design_snackbar_padding_vertical" + android:paddingBottom="@dimen/design_snackbar_padding_vertical" + android:paddingLeft="@dimen/design_snackbar_padding_horizontal" + android:paddingRight="@dimen/design_snackbar_padding_horizontal" + android:ellipsize="end" + android:maxLines="@integer/design_snackbar_text_max_lines" + android:textAlignment="viewStart" + android:textAppearance="@style/TextAppearance.Design.Snackbar.Message"/> + + <Button + android:id="@+id/snackbar_action" + style="?attr/borderlessButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="@dimen/design_snackbar_extra_spacing_horizontal" + android:layout_marginLeft="@dimen/design_snackbar_extra_spacing_horizontal" + android:layout_gravity="center_vertical|right|end" + android:minWidth="48dp" + android:textColor="?attr/colorAccent" + android:visibility="gone"/> + +</view> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..b366fd879a166d546424b9a7139289078442f0d3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_icon.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<ImageView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="@dimen/m3_comp_primary_navigation_tab_with_icon_icon_size" + android:layout_height="@dimen/m3_comp_primary_navigation_tab_with_icon_icon_size" + android:contentDescription="@null" + android:scaleType="centerInside"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..56d28d7a5f6f6df122f6239dd3edafedbb4fefcb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_layout_tab_text.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:ellipsize="end" + android:gravity="center" + android:maxLines="2"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_menu_item_action_area.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_menu_item_action_area.xml new file mode 100644 index 0000000000000000000000000000000000000000..68890e21a2020dda52970a3dcf35ff437e50117b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_menu_item_action_area.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="match_parent"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..80f0a426d271a6c1ed3555c6c626b033ccd37e34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<com.google.android.material.internal.NavigationMenuItemView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:paddingLeft="?attr/listPreferredItemPaddingLeft" + android:paddingRight="?attr/listPreferredItemPaddingRight" + android:focusable="true" + android:foreground="?attr/selectableItemBackground" + android:defaultFocusHighlightEnabled="false" + tools:ignore="UnusedAttribute"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_header.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_header.xml new file mode 100644 index 0000000000000000000000000000000000000000..c55c63ee2054e512b397ff23faa7997f7daa1743 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_header.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/navigation_header_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingBottom="@dimen/design_navigation_separator_vertical_padding" + android:orientation="vertical"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_separator.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_separator.xml new file mode 100644 index 0000000000000000000000000000000000000000..b06cfb4d5368dbfa8a57d2532a910cec80b76d8d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_separator.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <View + android:layout_width="match_parent" + android:layout_height="1dp" + android:background="?android:attr/listDivider"/> + +</FrameLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_subheader.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_subheader.xml new file mode 100644 index 0000000000000000000000000000000000000000..0efa85c9512b3aef79db0ad7386dfa4bb76befa6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_item_subheader.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="?attr/listPreferredItemHeightSmall" + android:paddingLeft="?attr/listPreferredItemPaddingLeft" + android:paddingRight="?attr/listPreferredItemPaddingRight" + android:gravity="center_vertical|start" + android:maxLines="1" + android:textAppearance="@style/TextAppearance.AppCompat.Body2" + android:textColor="?android:textColorSecondary"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu.xml new file mode 100644 index 0000000000000000000000000000000000000000..bd9d623d6998c0fdefb2cdf3c493270bca4a8180 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<com.google.android.material.internal.NavigationMenuView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/design_navigation_view" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:paddingBottom="@dimen/design_navigation_padding_bottom" + android:clipToPadding="false" + android:scrollbars="vertical"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..8aa2a5c28a17e27e6c76fba78205a87be4da221f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_navigation_menu_item.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + + <CheckedTextView + android:id="@+id/design_menu_item_text" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1" + android:drawablePadding="@dimen/design_navigation_icon_padding" + android:gravity="center_vertical|start" + android:maxLines="1" + android:textAppearance="@style/TextAppearance.AppCompat.Body2"/> + + <ViewStub + android:id="@+id/design_menu_item_action_area_stub" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:inflatedId="@+id/design_menu_item_action_area" + android:layout="@layout/design_menu_item_action_area"/> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_end_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_end_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..929b37f95c14a9fcbaaf23ccf38a767b13912806 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_end_icon.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<com.google.android.material.internal.CheckableImageButton + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/text_input_end_icon" + android:visibility="gone" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical|end|right" + android:layout_marginStart="@dimen/mtrl_textinput_end_icon_margin_start" + android:background="?attr/actionBarItemBackground" + android:minHeight="@dimen/mtrl_min_touch_target_size" + android:minWidth="@dimen/mtrl_min_touch_target_size" + tools:ignore="Overdraw"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_start_icon.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_start_icon.xml new file mode 100644 index 0000000000000000000000000000000000000000..9252744693ce330e86d8b4e7bb7da364e48ee997 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/design_text_input_start_icon.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<com.google.android.material.internal.CheckableImageButton + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/text_input_start_icon" + android:visibility="gone" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical|start|left" + android:layout_marginEnd="@dimen/mtrl_textinput_start_icon_margin_end" + android:background="?attr/actionBarItemBackground" + android:minHeight="@dimen/mtrl_min_touch_target_size" + android:minWidth="@dimen/mtrl_min_touch_target_size" + tools:ignore="Overdraw"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc04f9d254ed13c811afc80f1d70f80f05e5accd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog.xml @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<androidx.appcompat.widget.AlertDialogLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/parentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="start|left|top" + android:orientation="vertical"> + + <include layout="@layout/m3_alert_dialog_title"/> + + <FrameLayout + android:id="@+id/contentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <ImageView android:id="@+id/scrollIndicatorUp" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="top" + android:background="#1f000000" + android:visibility="gone" + android:contentDescription="@null" + app:backgroundTint="?android:attr/colorForeground"/> + + <androidx.core.widget.NestedScrollView + android:id="@+id/scrollView" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:clipToPadding="false"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <android.widget.Space + android:id="@+id/textSpacerNoTitle" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + + <TextView + android:id="@android:id/message" + style="?attr/materialAlertDialogBodyTextStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding"/> + + <android.widget.Space + android:id="@+id/textSpacerNoButtons" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + </LinearLayout> + </androidx.core.widget.NestedScrollView> + + <ImageView android:id="@+id/scrollIndicatorDown" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="bottom" + android:background="#1f000000" + android:visibility="gone" + android:contentDescription="@null" + app:backgroundTint="?android:attr/colorForeground"/> + + </FrameLayout> + + <FrameLayout + android:id="@+id/customPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <FrameLayout + android:id="@+id/custom" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + </FrameLayout> + + <include layout="@layout/m3_alert_dialog_actions" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + +</androidx.appcompat.widget.AlertDialogLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_actions.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_actions.xml new file mode 100644 index 0000000000000000000000000000000000000000..42541abccb2a793dae3b8bb867f86795ce7da496 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_actions.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/buttonPanel" + style="?attr/buttonBarStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:fillViewport="true" + android:scrollIndicators="top|bottom"> + + <androidx.appcompat.widget.ButtonBarLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="bottom" + android:layoutDirection="locale" + android:orientation="horizontal" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingTop="@dimen/m3_alert_dialog_action_top_padding" + android:paddingBottom="@dimen/m3_alert_dialog_action_bottom_padding"> + + <Button + android:id="@android:id/button3" + style="?attr/buttonBarNeutralButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <android.widget.Space + android:id="@+id/spacer" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_weight="1" + android:visibility="?attr/materialAlertDialogButtonSpacerVisibility"/> + + <Button + android:id="@android:id/button2" + style="?attr/buttonBarNegativeButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <Button + android:id="@android:id/button1" + style="?attr/buttonBarPositiveButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + </androidx.appcompat.widget.ButtonBarLayout> + +</ScrollView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_title.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_title.xml new file mode 100644 index 0000000000000000000000000000000000000000..3c027716daf09437332dfa3368aed1b1f992b22d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_alert_dialog_title.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/topPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <!-- If the client uses a customTitle, it will be added here. --> + + <LinearLayout + android:id="@+id/title_template" + style="?attr/materialAlertDialogTitlePanelStyle"> + + <ImageView + android:id="@android:id/icon" + tools:ignore="ContentDescription" + style="?attr/materialAlertDialogTitleIconStyle"/> + + <androidx.appcompat.widget.DialogTitle + android:id="@+id/alertTitle" + style="?attr/materialAlertDialogTitleTextStyle"/> + </LinearLayout> + + <android.widget.Space + android:id="@+id/titleDividerNoCustom" + android:layout_width="match_parent" + android:layout_height="@dimen/m3_alert_dialog_title_bottom_margin" + android:visibility="gone"/> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_auto_complete_simple_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_auto_complete_simple_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..37f96a2fb0f455e5ed130a9629c2220587e95f2c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_auto_complete_simple_item.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingBottom="13dp" + android:paddingTop="13dp" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:ellipsize="end" + android:maxLines="1" + android:textAppearance="?attr/textAppearanceBodyLarge"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_side_sheet_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_side_sheet_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..e20c55dc4f716ad4409e36341e44f5ac8200c9ab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/m3_side_sheet_dialog.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<FrameLayout + 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:id="@+id/container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <androidx.coordinatorlayout.widget.CoordinatorLayout + android:id="@+id/coordinator" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <View + android:id="@+id/touch_outside" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:focusable="false" + android:importantForAccessibility="no" + android:soundEffectsEnabled="false" + tools:ignore="UnusedAttribute"/> + + <FrameLayout + android:id="@+id/m3_side_sheet" + style="?attr/sideSheetModalStyle" + android:layout_width="@dimen/m3_side_sheet_width" + android:layout_height="match_parent" + app:layout_behavior="@string/side_sheet_behavior"/> + + </androidx.coordinatorlayout.widget.CoordinatorLayout> + +</FrameLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_chip_input_combo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_chip_input_combo.xml new file mode 100644 index 0000000000000000000000000000000000000000..9409c6902fce642e121dca78a9f252dc0613aaf7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_chip_input_combo.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<com.google.android.material.timepicker.ChipTextInputComboView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display.xml new file mode 100644 index 0000000000000000000000000000000000000000..c7e76b80063b2f07fb9d9e0020b511c64005b5a5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/material_clock_display" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layoutDirection="ltr" + android:orientation="horizontal" + android:baselineAligned="false" + tools:ignore="UnusedAttribute"> + + <include + android:id="@+id/material_hour_tv" + layout="@layout/material_time_chip" /> + + <include layout="@layout/material_clock_display_divider" /> + + <include + android:id="@+id/material_minute_tv" + layout="@layout/material_time_chip" /> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display_divider.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display_divider.xml new file mode 100644 index 0000000000000000000000000000000000000000..fe74bbd315fc94b3544ae2f0ffe3b37b35b93c9b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_display_divider.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + style="?attr/materialDisplayDividerStyle" + android:layout_width="@dimen/material_clock_display_padding" + android:layout_height="@dimen/material_clock_display_height" + android:gravity="center" + android:importantForAccessibility="no" + tools:ignore="UnusedAttribute" + tools:showIn="@layout/material_timepicker_textinput_display" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_period_toggle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_period_toggle.xml new file mode 100644 index 0000000000000000000000000000000000000000..8438c6da836902039fff2ffe1b64fa559f8732bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clock_period_toggle.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<com.google.android.material.button.MaterialButtonToggleGroup + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/material_clock_period_toggle" + android:layout_width="@dimen/material_clock_period_toggle_width" + android:layout_height="@dimen/material_clock_period_toggle_height" + android:orientation="vertical" + android:contentDescription="@string/material_clock_toggle_content_description" + app:checkedButton="@id/material_clock_period_am_button" + android:visibility="gone" + app:selectionRequired="true" + app:singleSelection="true"> + + <com.google.android.material.button.MaterialButton + style="?attr/materialButtonOutlinedStyle" + android:id="@+id/material_clock_period_am_button" + android:insetTop="8dp" + android:layout_width="wrap_content" + android:text="@string/material_timepicker_am"/> + <com.google.android.material.button.MaterialButton + style="?attr/materialButtonOutlinedStyle" + android:id="@+id/material_clock_period_pm_button" + android:layout_width="wrap_content" + android:insetBottom="8dp" + android:text="@string/material_timepicker_pm"/> + +</com.google.android.material.button.MaterialButtonToggleGroup> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_textview.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_textview.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e1a31650ae0b1f434b1f8b88beda6ab0ab90e5f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_textview.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="@dimen/mtrl_min_touch_target_size" + android:layout_height="@dimen/mtrl_min_touch_target_size" + android:gravity="center" + android:textColor="?attr/colorOnSurface" + android:textSize="@dimen/material_clock_number_text_size" + android:visibility="gone" + tools:ignore="SpUsage" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_view.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..0acd5b1a33620ea1c81ad341317ac3419dd649e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_clockface_view.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<merge xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@id/material_clock_face" + android:layout_width="256dp" + android:layout_height="256dp" + android:layout_gravity="center"> + + <com.google.android.material.timepicker.ClockHandView + android:id="@+id/material_clock_hand" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:tag="skip" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:selectorSize="24dp" /> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_radial_view_group.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_radial_view_group.xml new file mode 100644 index 0000000000000000000000000000000000000000..b7006536ff1b3a88c00383a53d8357e623dc5f0d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_radial_view_group.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<merge xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <View + android:id="@+id/circle_center" + android:layout_width="1px" + android:layout_height="1px" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + +</merge> + diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_textinput_timepicker.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_textinput_timepicker.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4717e762e4f4b1c3f89380d56791a7f71407781 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_textinput_timepicker.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:baselineAligned="false" + android:orientation="horizontal"> + + <include layout="@layout/material_timepicker_textinput_display" /> + + <include + android:id="@+id/material_clock_period_toggle" + layout="@layout/material_clock_period_toggle" + android:layout_width="@dimen/material_clock_period_toggle_width" + android:layout_height="@dimen/material_clock_period_toggle_height" + android:layout_marginStart="@dimen/material_clock_period_toggle_horizontal_gap" /> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_chip.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_chip.xml new file mode 100644 index 0000000000000000000000000000000000000000..f42cb76f51f14f1cae0946bf770623bcba3ba8f3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_chip.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<com.google.android.material.chip.Chip + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="@dimen/material_clock_display_width" + android:layout_height="@dimen/material_clock_display_height" + style="?attr/chipStyle" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_input.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_input.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d5ab7c12ee21a0ec88cf479b11423811ebe86c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_time_input.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<com.google.android.material.textfield.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:errorIconDrawable="@null" + app:hintEnabled="false"> + + <com.google.android.material.textfield.TextInputEditText + android:layout_width="@dimen/material_clock_display_width" + android:layout_height="@dimen/material_clock_display_height" + android:textCursorDrawable="@drawable/material_cursor_drawable" /> + + <TextView + android:id="@+id/material_label" + android:focusable="false" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + +</com.google.android.material.textfield.TextInputLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b5701dcdee5dedd5cec6bc9758e3708d4a575c0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<merge 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:id="@+id/material_timepicker_container" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout"> + + <androidx.constraintlayout.helper.widget.Flow + android:id="@+id/material_clock_display_and_toggle" + android:layout_width="0dp" + android:layout_height="@dimen/material_clock_period_toggle_height" + android:orientation="horizontal" + app:constraint_referenced_ids="material_clock_display,material_clock_period_toggle" + app:flow_horizontalGap="@dimen/material_clock_period_toggle_horizontal_gap" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <include + android:id="@+id/material_clock_display" + layout="@layout/material_clock_display" /> + + <include + android:id="@+id/material_clock_period_toggle" + layout="@layout/material_clock_period_toggle" /> + + <com.google.android.material.timepicker.ClockFaceView + android:id="@+id/material_clock_face" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="28dp" + android:layout_gravity="center" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toBottomOf="@+id/material_clock_display_and_toggle" /> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c5862f24153a57df926ebbdba15c4d3335b71dd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_dialog.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.constraintlayout.widget.ConstraintLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:accessibilityPaneTitle="@string/material_timepicker_select_time" + android:paddingBottom="2dp"> + + <TextView + android:id="@+id/header_title" + style="?attr/materialTimePickerTitleStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:layout_marginStart="24dp" + android:importantForAccessibility="no" + android:text="@string/material_timepicker_select_time" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <androidx.constraintlayout.widget.Barrier + android:id="@+id/barrier" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:barrierDirection="bottom" + app:barrierMargin="@dimen/material_timepicker_dialog_buttons_margin_top" + app:constraint_referenced_ids="material_textinput_timepicker, material_timepicker_view" /> + + <com.google.android.material.timepicker.TimePickerView + android:id="@+id/material_timepicker_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/material_clock_face_margin_top" + android:layout_marginBottom="24dp" + android:layout_marginLeft="24dp" + android:layout_marginRight="24dp" + android:visibility="gone" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <ViewStub + android:id="@+id/material_textinput_timepicker" + android:inflatedId="@+id/material_textinput_timepicker" + android:layout="@layout/material_textinput_timepicker" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="44dp" + android:layout_marginBottom="24dp" + android:layout_marginLeft="24dp" + android:layout_marginRight="24dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <com.google.android.material.button.MaterialButton + android:id="@+id/material_timepicker_mode_button" + style="?attr/imageButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="12dp" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/barrier" /> + + <Button + android:id="@+id/material_timepicker_cancel_button" + style="?attr/borderlessButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="2dp" + android:layout_marginEnd="8dp" + android:minWidth="72dp" + android:text="@string/mtrl_timepicker_cancel" + app:layout_constraintEnd_toStartOf="@id/material_timepicker_ok_button" + app:layout_constraintTop_toTopOf="@id/material_timepicker_mode_button" /> + + <Button + android:id="@+id/material_timepicker_ok_button" + style="?attr/borderlessButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="2dp" + android:layout_marginEnd="8dp" + android:minWidth="64dp" + android:text="@string/mtrl_timepicker_confirm" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="@id/material_timepicker_mode_button" /> + +</androidx.constraintlayout.widget.ConstraintLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_textinput_display.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_textinput_display.xml new file mode 100644 index 0000000000000000000000000000000000000000..cd5f6a5d64c5f28f72ceb9251b85074d534f0b80 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/material_timepicker_textinput_display.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?><!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingTop="8dp" + android:layoutDirection="ltr" + tools:showIn="@layout/material_textinput_timepicker"> + + <include + android:id="@+id/material_hour_text_input" + layout="@layout/material_chip_input_combo" /> + + <include layout="@layout/material_clock_display_divider" /> + + <include + android:id="@+id/material_minute_text_input" + layout="@layout/material_chip_input_combo" /> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..036477967093ac91a37f67bdede78103d5f496f5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog.xml @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<androidx.appcompat.widget.AlertDialogLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/parentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="start|left|top" + android:orientation="vertical"> + + <include layout="@layout/mtrl_alert_dialog_title"/> + + <FrameLayout + android:id="@+id/contentPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <View android:id="@+id/scrollIndicatorUp" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="top" + android:background="?attr/colorControlHighlight" + android:visibility="gone"/> + + <androidx.core.widget.NestedScrollView + android:id="@+id/scrollView" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:clipToPadding="false"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <android.widget.Space + android:id="@+id/textSpacerNoTitle" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + + <TextView + android:id="@android:id/message" + style="?attr/materialAlertDialogBodyTextStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="?attr/dialogPreferredPadding" + android:paddingRight="?attr/dialogPreferredPadding"/> + + <android.widget.Space + android:id="@+id/textSpacerNoButtons" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_padding_top_material" + android:visibility="gone"/> + </LinearLayout> + </androidx.core.widget.NestedScrollView> + + <View android:id="@+id/scrollIndicatorDown" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_gravity="bottom" + android:background="?attr/colorControlHighlight" + android:visibility="gone"/> + + </FrameLayout> + + <FrameLayout + android:id="@+id/customPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="48dp"> + + <FrameLayout + android:id="@+id/custom" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + </FrameLayout> + + <include layout="@layout/mtrl_alert_dialog_actions" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + +</androidx.appcompat.widget.AlertDialogLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_actions.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_actions.xml new file mode 100644 index 0000000000000000000000000000000000000000..9ff9ae1b5918b65ee843c081cbfb4fcd1ba48aee --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_actions.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/buttonPanel" + style="?attr/buttonBarStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:fillViewport="true" + android:scrollIndicators="top|bottom"> + + <androidx.appcompat.widget.ButtonBarLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="bottom" + android:layoutDirection="locale" + android:orientation="horizontal" + android:paddingHorizontal="8dp" + android:paddingStart="8dp" + android:paddingEnd="8dp" + android:paddingVertical="2dp" + android:paddingTop="2dp" + android:paddingBottom="2dp"> + + <Button + android:id="@android:id/button3" + style="?attr/buttonBarNeutralButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <android.widget.Space + android:id="@+id/spacer" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_weight="1" + android:visibility="?attr/materialAlertDialogButtonSpacerVisibility"/> + + <Button + android:id="@android:id/button2" + style="?attr/buttonBarNegativeButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + <Button + android:id="@android:id/button1" + style="?attr/buttonBarPositiveButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + + </androidx.appcompat.widget.ButtonBarLayout> + +</ScrollView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_title.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_title.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec2d240fc971bd4032d16cef6bce7aaeb84327e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_dialog_title.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/topPanel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <!-- If the client uses a customTitle, it will be added here. --> + + <LinearLayout + android:id="@+id/title_template" + style="?attr/materialAlertDialogTitlePanelStyle"> + + <ImageView + android:id="@android:id/icon" + tools:ignore="ContentDescription" + style="?attr/materialAlertDialogTitleIconStyle"/> + + <androidx.appcompat.widget.DialogTitle + android:id="@+id/alertTitle" + style="?attr/materialAlertDialogTitleTextStyle"/> + </LinearLayout> + + <android.widget.Space + android:id="@+id/titleDividerNoCustom" + android:layout_width="match_parent" + android:layout_height="@dimen/abc_dialog_title_divider_material" + android:visibility="gone"/> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..28f93cda761ade5fbc9e3823acbdd3eea1584709 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_item.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + This layout file is used by the AlertDialog when displaying a list of items. + This layout file is inflated and used as the TextView to display individual + items. +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + style="?attr/materialAlertDialogBodyTextStyle" + android:gravity="center_vertical" + android:paddingLeft="?attr/listPreferredItemPaddingLeft" + android:paddingRight="?attr/listPreferredItemPaddingRight" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_multichoice.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_multichoice.xml new file mode 100644 index 0000000000000000000000000000000000000000..94eb71b01181b5f4c0e054086537459d46cf5782 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_multichoice.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + This layout file is used by the AlertDialog when displaying a multi select list of items. + + A left android:gravity will handle text alignment on API 16 and below while + android:textAlignment will be used on 17+. A start android:gravity is not added + to avoid text being aligned right while a drawable is aligned left in RTL configurations + on API 16 and below. + + app:drawableLeftCompat (and app:drawableStartCompat) used instead of android:drawableLeft + (and android:drawableStart) because of bug on api 17 that aligned drawable both left and + right when in RTL configurations +--> +<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:gravity="left|center_vertical" + android:textAlignment="viewStart" + android:paddingLeft="@dimen/abc_select_dialog_padding_start_material" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingStart="@dimen/abc_select_dialog_padding_start_material" + android:paddingEnd="?attr/dialogPreferredPadding" + app:drawableLeftCompat="?android:attr/listChoiceIndicatorMultiple" + app:drawableStartCompat="?android:attr/listChoiceIndicatorMultiple" + android:drawablePadding="20dp" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_singlechoice.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_singlechoice.xml new file mode 100644 index 0000000000000000000000000000000000000000..44f5f97936bf2915b0e99d4bc6e07d55165e55e5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_alert_select_dialog_singlechoice.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- + This layout file is used by the AlertDialog when displaying a single select list of items. + + A left android:gravity will handle text alignment on API 16 and below while + android:textAlignment will be used on 17+. A start android:gravity is not added + to avoid text being aligned right while a drawable is aligned left in RTL configurations + on API 16 and below. + + app:drawableLeftCompat (and app:drawableStartCompat) used instead of android:drawableLeft + (and android:drawableStart) because of bug on api 17 that aligned drawable both left and + right when in RTL configurations +--> +<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@android:id/text1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/listPreferredItemHeightSmall" + android:gravity="left|center_vertical" + android:textAlignment="viewStart" + android:paddingLeft="@dimen/abc_select_dialog_padding_start_material" + android:paddingRight="?attr/dialogPreferredPadding" + android:paddingStart="@dimen/abc_select_dialog_padding_start_material" + android:paddingEnd="?attr/dialogPreferredPadding" + app:drawableLeftCompat="?android:attr/listChoiceIndicatorSingle" + app:drawableStartCompat="?android:attr/listChoiceIndicatorSingle" + android:drawablePadding="20dp" + android:ellipsize="marquee" /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_auto_complete_simple_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_auto_complete_simple_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..27475dacaf965b80a11c11df7da320b0d58cea3c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_auto_complete_simple_item.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingBottom="13dp" + android:paddingTop="13dp" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:ellipsize="end" + android:maxLines="1" + android:textAppearance="?attr/textAppearanceSubtitle1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day.xml new file mode 100644 index 0000000000000000000000000000000000000000..bbecaf6416f0d87339c8b044be9e7e32ff37a4ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + style="?attr/materialCalendarDay" + android:layout_width="@dimen/mtrl_calendar_day_width" + android:layout_height="@dimen/mtrl_calendar_day_height"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day_of_week.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day_of_week.xml new file mode 100644 index 0000000000000000000000000000000000000000..fa39a4a5622ae24dae41f8b766f768c64f4cb25c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_day_of_week.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<TextView + xmlns:android="http://schemas.android.com/apk/res/android" + style="?attr/materialCalendarDayOfWeekLabel" + android:layout_width="@dimen/mtrl_calendar_day_width" + android:layout_height="@dimen/mtrl_calendar_days_of_week_height"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_days_of_week.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_days_of_week.xml new file mode 100644 index 0000000000000000000000000000000000000000..abfc21a8bfe1e7fb0e771d855871ec1dcf2de138 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_days_of_week.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<GridView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mtrl_calendar_days_of_week" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_days_of_week_height" + android:horizontalSpacing="@dimen/mtrl_calendar_month_horizontal_padding" + android:gravity="center_horizontal"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_horizontal.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_horizontal.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d16ecbe786948889ddbdfd122b3bfe6bd6ba956 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_horizontal.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + + <include layout="@layout/mtrl_calendar_month_navigation"/> + + <FrameLayout + android:id="@+id/mtrl_calendar_selection_frame" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/mtrl_calendar_year_selector_frame" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="center_horizontal" + android:scrollbars="none"/> + + <LinearLayout + android:id="@+id/mtrl_calendar_day_selector_frame" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:orientation="vertical"> + + <include layout="@layout/mtrl_calendar_days_of_week"/> + + <include layout="@layout/mtrl_calendar_months"/> + + </LinearLayout> + + </FrameLayout> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month.xml new file mode 100644 index 0000000000000000000000000000000000000000..7561507fc6987b2da13f59d318d8df217ea442fe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<com.google.android.material.datepicker.MaterialCalendarGridView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/month_grid" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:addStatesFromChildren="false" + android:descendantFocusability="afterDescendants" + android:gravity="center" + android:horizontalSpacing="@dimen/mtrl_calendar_month_horizontal_padding" + android:listSelector="@android:color/transparent" + android:verticalSpacing="@dimen/mtrl_calendar_month_vertical_padding"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_labeled.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_labeled.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f7300467eacf289a32f5f7f5fbad9c770cf838c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_labeled.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + android:id="@+id/month_title" + style="?attr/materialCalendarMonth" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_day_height" + android:focusable="true" + android:gravity="center_vertical|start"/> + + <include layout="@layout/mtrl_calendar_month"/> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_navigation.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_navigation.xml new file mode 100644 index 0000000000000000000000000000000000000000..14b3ac1eb3104879de9c604950f0cf633886a00d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_month_navigation.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/month_navigation_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="@dimen/mtrl_calendar_navigation_top_padding" + android:paddingBottom="@dimen/mtrl_calendar_navigation_bottom_padding" + android:orientation="horizontal"> + + <FrameLayout + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1"> + + <com.google.android.material.button.MaterialButton + style="?attr/materialCalendarYearNavigationButton" + android:id="@+id/month_navigation_fragment_toggle" + android:layout_width="wrap_content" + android:layout_height="@dimen/mtrl_calendar_navigation_height" + android:layout_gravity="start" + android:gravity="center_vertical|start" + android:insetBottom="0dp" + android:insetTop="0dp" + app:icon="@drawable/material_ic_menu_arrow_down_black_24dp" + app:iconGravity="textEnd" + app:iconPadding="4dp"/> + + </FrameLayout> + + <com.google.android.material.button.MaterialButton + style="?attr/materialCalendarMonthNavigationButton" + android:id="@+id/month_navigation_previous" + android:layout_width="@dimen/mtrl_min_touch_target_size" + android:layout_height="@dimen/mtrl_calendar_navigation_height" + android:contentDescription="@string/mtrl_picker_a11y_prev_month" + android:gravity="center" + android:insetBottom="0dp" + android:insetTop="0dp" + app:icon="@drawable/material_ic_keyboard_arrow_previous_black_24dp"/> + + <com.google.android.material.button.MaterialButton + style="?attr/materialCalendarMonthNavigationButton" + android:id="@+id/month_navigation_next" + android:layout_width="@dimen/mtrl_min_touch_target_size" + android:layout_height="@dimen/mtrl_calendar_navigation_height" + android:contentDescription="@string/mtrl_picker_a11y_next_month" + android:gravity="center" + android:insetBottom="0dp" + android:insetTop="0dp" + app:icon="@drawable/material_ic_keyboard_arrow_next_black_24dp"/> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_months.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_months.xml new file mode 100644 index 0000000000000000000000000000000000000000..7bf9098315460a22786d558fa7c16a83ed2196bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_months.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<androidx.recyclerview.widget.RecyclerView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mtrl_calendar_months" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:listSelector="@android:color/transparent"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_vertical.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_vertical.xml new file mode 100644 index 0000000000000000000000000000000000000000..0592b8b0efbdf9e6a5c65862f88e73a78227a218 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_vertical.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:gravity="center"> + + <include layout="@layout/mtrl_calendar_days_of_week"/> + + <View + android:layout_width="match_parent" + android:layout_height="1dp" + android:background="?attr/colorOnSurface"/> + + <include layout="@layout/mtrl_calendar_months"/> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_year.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_year.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f8ed1f031ae32b51a1efd5b2b15c729f16be142 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_calendar_year.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + style="?attr/materialCalendarDay" + android:layout_width="@dimen/mtrl_calendar_year_width" + android:layout_height="@dimen/mtrl_calendar_year_height"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f52c4a1889fc8a7f63493838828680e20d153e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view xmlns:android="http://schemas.android.com/apk/res/android" + style="?attr/snackbarStyle" + class="com.google.android.material.snackbar.Snackbar$SnackbarLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="bottom"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar_include.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar_include.xml new file mode 100644 index 0000000000000000000000000000000000000000..b142de1d8587ca0a362d9c193188db690a74a3dd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_layout_snackbar_include.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> + +<view + xmlns:android="http://schemas.android.com/apk/res/android" + class="com.google.android.material.snackbar.SnackbarContentLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="bottom"> + + <TextView + android:id="@+id/snackbar_text" + style="?attr/snackbarTextViewStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_gravity="center_vertical|left|start"/> + + <Button + android:id="@+id/snackbar_action" + style="?attr/snackbarButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical|right|end" + android:minWidth="48dp" + android:visibility="gone"/> + +</view> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_navigation_rail_item.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_navigation_rail_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..97e71f5a0429fade9f80802aeb52844c65329102 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_navigation_rail_item.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?><!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + + <FrameLayout + android:id="@+id/navigation_bar_item_icon_container" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:layout_marginTop="@dimen/mtrl_navigation_rail_margin" + android:layout_marginBottom="@dimen/mtrl_navigation_rail_text_bottom_margin" + android:duplicateParentState="true"> + <View + android:id="@+id/navigation_bar_item_active_indicator_view" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_gravity="center"/> + <ImageView + android:id="@id/navigation_bar_item_icon_view" + android:layout_width="@dimen/mtrl_navigation_rail_icon_size" + android:layout_height="@dimen/mtrl_navigation_rail_icon_size" + android:layout_gravity="center" + android:contentDescription="@null" + android:duplicateParentState="true" /> + </FrameLayout> + <com.google.android.material.internal.BaselineLayout + android:id="@id/navigation_bar_item_labels_group" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingBottom="@dimen/mtrl_navigation_rail_text_bottom_margin" + android:layout_gravity="bottom|center_horizontal" + android:clipChildren="false" + android:clipToPadding="false" + android:duplicateParentState="true"> + <TextView + android:id="@id/navigation_bar_item_small_label_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:duplicateParentState="true" + android:ellipsize="end" + android:maxLines="1" + android:textSize="@dimen/mtrl_navigation_rail_text_size" /> + <TextView + android:id="@id/navigation_bar_item_large_label_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:duplicateParentState="true" + android:ellipsize="end" + android:maxLines="1" + android:textSize="@dimen/mtrl_navigation_rail_active_text_size" + android:visibility="invisible" /> + </com.google.android.material.internal.BaselineLayout> +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_actions.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_actions.xml new file mode 100644 index 0000000000000000000000000000000000000000..3d5e9deacbb4b4a138d1f722dc78c6aec84770ce --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_actions.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/date_picker_actions" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_action_height" + android:paddingEnd="@dimen/mtrl_calendar_action_padding" + android:paddingRight="@dimen/mtrl_calendar_action_padding" + android:gravity="end" + android:orientation="horizontal"> + + <Button + android:id="@+id/cancel_button" + style="?attr/buttonBarNegativeButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:text="@string/mtrl_picker_cancel"/> + + <Button + android:id="@+id/confirm_button" + style="?attr/buttonBarPositiveButtonStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:minWidth="@dimen/mtrl_calendar_action_confirm_button_min_width" + android:text="@string/mtrl_picker_confirm"/> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd654dc1a6b1021572db43d8cb7b4c3a775d8960 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_dialog.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:orientation="@integer/mtrl_calendar_header_orientation"> + + <include layout="@layout/mtrl_picker_header_dialog"/> + + <LinearLayout + android:id="@+id/mtrl_calendar_main_pane" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:orientation="vertical"> + + <androidx.fragment.app.FragmentContainerView + android:id="@+id/mtrl_calendar_frame" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_weight="1" + android:paddingBottom="@dimen/mtrl_calendar_bottom_padding" + android:paddingStart="@dimen/mtrl_calendar_content_padding" + android:paddingEnd="@dimen/mtrl_calendar_content_padding" + android:paddingLeft="@dimen/mtrl_calendar_content_padding" + android:paddingRight="@dimen/mtrl_calendar_content_padding"/> + + <include + layout="@layout/mtrl_picker_actions" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_action_height"/> + + + </LinearLayout> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_fullscreen.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_fullscreen.xml new file mode 100644 index 0000000000000000000000000000000000000000..6156e62c095b898d381c48bed0494e9881dc7bb9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_fullscreen.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mtrl_picker_fullscreen" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:gravity="center_horizontal"> + + <include layout="@layout/mtrl_picker_header_fullscreen"/> + + <androidx.fragment.app.FragmentContainerView + android:id="@+id/mtrl_calendar_frame" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingStart="@dimen/mtrl_calendar_content_padding" + android:paddingEnd="@dimen/mtrl_calendar_content_padding" + android:paddingLeft="@dimen/mtrl_calendar_content_padding" + android:paddingRight="@dimen/mtrl_calendar_content_padding"/> + +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..ab8865599ea43eae9a6a136f2e1900e70af63521 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_dialog.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<merge xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <LinearLayout + android:id="@+id/mtrl_picker_header" + style="?attr/materialCalendarHeaderLayout" + android:layout_gravity="top" + android:paddingStart="@dimen/mtrl_calendar_header_content_padding" + android:paddingEnd="@dimen/mtrl_calendar_header_content_padding" + android:paddingLeft="@dimen/mtrl_calendar_header_content_padding" + android:paddingRight="@dimen/mtrl_calendar_header_content_padding" + android:baselineAligned="false" + android:orientation="horizontal"> + + <FrameLayout + android:id="@+id/mtrl_picker_header_title_and_selection" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1" + android:paddingStart="@dimen/mtrl_calendar_header_text_padding" + android:paddingLeft="@dimen/mtrl_calendar_header_text_padding" + android:focusable="true" + android:focusableInTouchMode="true"> + + <include layout="@layout/mtrl_picker_header_title_text"/> + <include layout="@layout/mtrl_picker_header_selection_text"/> + + </FrameLayout> + + <include layout="@layout/mtrl_picker_header_toggle"/> + + </LinearLayout> + + <View + style="?attr/materialCalendarHeaderDivider" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_header_divider_thickness" + android:layout_gravity="bottom"/> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_fullscreen.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_fullscreen.xml new file mode 100644 index 0000000000000000000000000000000000000000..f7fd2a9fe4384db2afcd43bd71834fcb3c7f7972 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_fullscreen.xml @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<merge 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="wrap_content"> + + <LinearLayout + android:id="@+id/fullscreen_header" + style="?attr/materialCalendarHeaderLayout" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_header_height_fullscreen" + android:layout_gravity="top|center_horizontal" + android:orientation="horizontal" + android:paddingStart="@dimen/mtrl_calendar_header_content_padding_fullscreen" + android:paddingLeft="@dimen/mtrl_calendar_header_content_padding_fullscreen" + android:paddingTop="@dimen/mtrl_calendar_header_content_padding_fullscreen" + android:paddingEnd="@dimen/mtrl_calendar_header_content_padding_fullscreen" + android:paddingRight="@dimen/mtrl_calendar_header_content_padding_fullscreen" + tools:ignore="Overdraw"> + + <com.google.android.material.button.MaterialButton + android:id="@+id/cancel_button" + style="?attr/materialCalendarHeaderCancelButton" + android:layout_width="@dimen/mtrl_min_touch_target_size" + android:layout_height="@dimen/mtrl_min_touch_target_size" + android:layout_gravity="top" + android:contentDescription="@string/mtrl_picker_cancel" + android:gravity="center" + android:insetTop="0dp" + android:insetBottom="0dp" + android:padding="12dp" + app:icon="@drawable/material_ic_clear_black_24dp"/> + + <FrameLayout + android:id="@+id/mtrl_picker_header_title_and_selection" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1" + android:paddingStart="@dimen/mtrl_calendar_header_text_padding" + android:paddingLeft="@dimen/mtrl_calendar_header_text_padding" + android:focusable="true" + android:focusableInTouchMode="true"> + + <TextView + android:id="@+id/mtrl_picker_title_text" + style="?attr/materialCalendarHeaderTitle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="top|start" + android:gravity="start|bottom" + app:firstBaselineToTopHeight="@dimen/mtrl_calendar_title_baseline_to_top_fullscreen"/> + + <TextView + android:id="@+id/mtrl_picker_header_selection_text" + style="?attr/materialCalendarHeaderSelection" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="top|start" + android:gravity="start|bottom" + android:paddingBottom="@dimen/mtrl_calendar_pre_l_text_clip_padding" + app:firstBaselineToTopHeight="@dimen/mtrl_calendar_selection_baseline_to_top_fullscreen" + app:lineHeight="@dimen/mtrl_calendar_header_selection_line_height"/> + </FrameLayout> + + <LinearLayout + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="@integer/mtrl_calendar_header_orientation"> + + <com.google.android.material.button.MaterialButton + android:id="@+id/confirm_button" + style="?attr/materialCalendarHeaderConfirmButton" + android:layout_width="wrap_content" + android:layout_height="@dimen/mtrl_min_touch_target_size" + android:layout_gravity="end|top" + android:contentDescription="@string/mtrl_picker_save" + android:text="@string/mtrl_picker_save"/> + + <include layout="@layout/mtrl_picker_header_toggle"/> + </LinearLayout> + </LinearLayout> + + <View + style="?attr/materialCalendarHeaderDivider" + android:layout_width="match_parent" + android:layout_height="@dimen/mtrl_calendar_header_divider_thickness" + android:layout_gravity="bottom"/> + +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_selection_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_selection_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f44116c67bc1b6eaef2fd6d6629ef4ac3876773 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_selection_text.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<TextView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/mtrl_picker_header_selection_text" + style="?attr/materialCalendarHeaderSelection" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="start|bottom" + app:firstBaselineToTopHeight="@dimen/mtrl_calendar_selection_text_baseline_to_top" + app:lineHeight="@dimen/mtrl_calendar_header_selection_line_height" + app:autoSizeTextType="uniform" + android:paddingBottom="@dimen/mtrl_calendar_pre_l_text_clip_padding"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_title_text.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_title_text.xml new file mode 100644 index 0000000000000000000000000000000000000000..e77f5daa1ac444da0da7b0b30ae213eb8233ade7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_title_text.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<TextView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/mtrl_picker_title_text" + style="?attr/materialCalendarHeaderTitle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="top|start" + android:gravity="start|bottom" + app:firstBaselineToTopHeight="@dimen/mtrl_calendar_title_baseline_to_top"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_toggle.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_toggle.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0fd11986b101d9dbaf51ee2aac7b4168d847b61 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_header_toggle.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<com.google.android.material.internal.CheckableImageButton + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mtrl_picker_header_toggle" + style="?attr/materialCalendarHeaderToggleButton" + android:layout_width="@dimen/mtrl_min_touch_target_size" + android:layout_height="@dimen/mtrl_min_touch_target_size" + android:layout_marginBottom="@dimen/mtrl_calendar_header_toggle_margin_bottom" + android:layout_marginTop="@dimen/mtrl_calendar_header_toggle_margin_top"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date.xml new file mode 100644 index 0000000000000000000000000000000000000000..89a2df6dc4cf0cfef57ac598c5a1c57561b69cbd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mtrl_calendar_text_input_frame" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="@dimen/mtrl_calendar_text_input_padding_top" + android:paddingBottom="16dp" + android:paddingLeft="@dimen/mtrl_calendar_content_padding" + android:paddingRight="@dimen/mtrl_calendar_content_padding"> + + <com.google.android.material.textfield.TextInputLayout + android:id="@+id/mtrl_picker_text_input_date" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <com.google.android.material.textfield.TextInputEditText + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:hint="@string/mtrl_picker_text_input_date_hint" + android:inputType="date" + android:imeOptions="flagNoExtractUi"/> + </com.google.android.material.textfield.TextInputLayout> +</FrameLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date_range.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date_range.xml new file mode 100644 index 0000000000000000000000000000000000000000..6b221811dd6346f5a102fe65c693b5081d75cb72 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_picker_text_input_date_range.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingLeft="@dimen/mtrl_calendar_content_padding" + android:paddingRight="@dimen/mtrl_calendar_content_padding" + android:orientation="horizontal"> + + <com.google.android.material.textfield.TextInputLayout + android:id="@+id/mtrl_picker_text_input_range_start" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1"> + + <com.google.android.material.textfield.TextInputEditText + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:hint="@string/mtrl_picker_text_input_date_range_start_hint" + android:inputType="date" + android:imeOptions="flagNoExtractUi"/> + </com.google.android.material.textfield.TextInputLayout> + + <Space + android:layout_width="8dp" + android:layout_height="0dp"/> + + <com.google.android.material.textfield.TextInputLayout + android:id="@+id/mtrl_picker_text_input_range_end" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1"> + + <com.google.android.material.textfield.TextInputEditText + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:hint="@string/mtrl_picker_text_input_date_range_end_hint" + android:inputType="date" + android:imeOptions="flagNoExtractUi"/> + </com.google.android.material.textfield.TextInputLayout> + + </LinearLayout> +</ScrollView> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_bar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_bar.xml new file mode 100644 index 0000000000000000000000000000000000000000..c3b6dee3e7129113c4406ddb4a14930116eacadf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_bar.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<!-- This text view isn't exposed to accessibility because its attributes are mirrored on the + parent container to more closely resemble the behavior of an EditText. --> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/search_bar_text_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:ellipsize="end" + android:importantForAccessibility="no" + android:maxLines="1"/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_view.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..a3c04176e44b4ea0888510fcf1b74610cc81b014 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/layout/mtrl_search_view.xml @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2022 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<merge 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"> + + <View + android:id="@+id/search_view_scrim" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:alpha="0" + android:background="?attr/scrimBackground"/> + + <com.google.android.material.internal.ClippableRoundedCornerLayout + android:id="@+id/search_view_root" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:focusable="true" + android:focusableInTouchMode="true" + android:visibility="gone"> + + <LinearLayout + android:id="@+id/search_view_background" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + + <View + android:id="@+id/search_view_status_bar_spacer" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone"/> + + <FrameLayout + android:id="@+id/search_view_header_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone"/> + + <FrameLayout + android:id="@+id/search_view_toolbar_container" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <com.google.android.material.appbar.MaterialToolbar + android:id="@+id/search_view_dummy_toolbar" + style="@style/Widget.Material3.SearchView.Toolbar" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end" + android:visibility="gone"/> + + <com.google.android.material.appbar.MaterialToolbar + android:id="@+id/search_view_toolbar" + style="@style/Widget.Material3.SearchView.Toolbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:clipChildren="false" + app:navigationContentDescription="@string/searchview_navigation_content_description" + app:navigationIcon="@drawable/ic_arrow_back_black_24"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="@dimen/m3_searchview_height" + android:gravity="center_vertical" + android:orientation="horizontal"> + + <TextView + android:id="@+id/search_view_search_prefix" + style="?attr/materialSearchViewPrefixStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:visibility="gone"/> + + <EditText + android:id="@+id/search_view_edit_text" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1" + android:background="@null" + android:imeOptions="flagNoExtractUi|actionSearch" + android:importantForAutofill="no" + android:inputType="textNoSuggestions" + android:textDirection="firstStrong" + tools:ignore="LabelFor"/> + + <ImageButton + android:id="@+id/search_view_clear_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:padding="16dp" + android:background="?attr/actionBarItemBackground" + android:contentDescription="@string/searchview_clear_text_content_description" + android:visibility="gone" + app:srcCompat="@drawable/ic_clear_black_24"/> + </LinearLayout> + </com.google.android.material.appbar.MaterialToolbar> + </FrameLayout> + + <View + android:id="@+id/search_view_divider" + android:layout_width="match_parent" + android:layout_height="@dimen/m3_searchview_divider_size" + android:background="@macro/m3_comp_search_view_divider_color"/> + + <com.google.android.material.internal.TouchObserverFrameLayout + android:id="@+id/search_view_content_container" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + </LinearLayout> + </com.google.android.material.internal.ClippableRoundedCornerLayout> +</merge> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-af/values-af.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2a1e0adcd02b215c3d02da679c446e7f69ca8ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-af/values-af.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nuwe kennisgewing</item> + <item quantity="other">%d nuwe kennisgewings</item> + </plurals> + <string name="bottomsheet_action_collapse">Vou die onderste blad in</string> + <string name="bottomsheet_action_expand">Vou die onderste blad uit</string> + <string name="bottomsheet_action_expand_halfway">Vou halfpad uit</string> + <string name="bottomsheet_drag_handle_clicked">Het op sleephandvatsel gedubbeltik</string> + <string name="bottomsheet_drag_handle_content_description">Sleephandvatsel</string> + <string name="character_counter_content_description">Karakters ingevoer: %1$d van %2$d</string> + <string name="character_counter_overflowed_content_description">Karakterlimiet oorskry %1$d van %2$d</string> + <string name="clear_text_end_icon_content_description">Vee teks uit</string> + <string name="error_icon_content_description">Fout</string> + <string name="exposed_dropdown_menu_content_description">Wys aftrekkieslys</string> + <string name="icon_content_description">Dialoogikoon</string> + <string name="item_view_role_description">Oortjie</string> + <string name="material_clock_toggle_content_description">Kies vm. of nm.</string> + <string name="material_hour_24h_suffix">%1$s uur</string> + <string name="material_hour_selection">Kies uur</string> + <string name="material_hour_suffix">%1$s-uur</string> + <string name="material_minute_selection">Kies minute</string> + <string name="material_minute_suffix">%1$s minute</string> + <string name="material_timepicker_am">VM.</string> + <string name="material_timepicker_clock_mode_description">Skakel oor na horlosiemodus vir die tydinvoer.</string> + <string name="material_timepicker_hour">Uur</string> + <string name="material_timepicker_minute">Minuut</string> + <string name="material_timepicker_pm">NM.</string> + <string name="material_timepicker_select_time">Kies tyd</string> + <string name="material_timepicker_text_input_mode_description">Skakel oor na teksmodus vir die tydinvoer.</string> + <string name="mtrl_badge_numberless_content_description">Nuwe kennisgewing</string> + <string name="mtrl_chip_close_icon_content_description">Verwyder %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Meer as %1$d nuwe kennisgewings</string> + <string name="mtrl_picker_a11y_next_month">Verander na volgende maand</string> + <string name="mtrl_picker_a11y_prev_month">Verander na vorige maand</string> + <string name="mtrl_picker_announce_current_selection">Huidige keuse: %1$s</string> + <string name="mtrl_picker_cancel">Kanselleer</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Kies datum</string> + <string name="mtrl_picker_date_header_unselected">Gekose datum</string> + <string name="mtrl_picker_day_of_week_column_header">Kolom van dae: %1$s</string> + <string name="mtrl_picker_invalid_format">Ongeldige formaat.</string> + <string name="mtrl_picker_invalid_format_example">Voorbeeld: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Gebruik: %1$s</string> + <string name="mtrl_picker_invalid_range">Ongeldige reeks.</string> + <string name="mtrl_picker_navigate_to_year_description">Gaan na jaar %1$s</string> + <string name="mtrl_picker_out_of_range">Buite reeks: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Begindatum – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Einddatum</string> + <string name="mtrl_picker_range_header_selected">%1$s-%2$s</string> + <string name="mtrl_picker_range_header_title">Kies datumreeks</string> + <string name="mtrl_picker_range_header_unselected">Begindatum – Einddatum</string> + <string name="mtrl_picker_save">Stoor</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Einddatum</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Begindatum</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">j</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Skakel oor na kalenderinvoermodus</string> + <string name="mtrl_picker_toggle_to_day_selection">Tik om oor te skakel na die kies van \'n dag</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Skakel oor na teksinvoermodus</string> + <string name="mtrl_picker_toggle_to_year_selection">Tik om oor te skakel na die kies van \'n jaar</string> + <string name="mtrl_timepicker_cancel">Kanselleer</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Wys wagwoord</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-am/values-am.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..c5dac7197beec1dad93ecd27055c2c483976d9da --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-am/values-am.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d አዲስ ማሳወቂያዎች</item> + <item quantity="other">%d አዲስ ማሳወቂያዎች</item> + </plurals> + <string name="bottomsheet_action_collapse">የáŒáˆáŒŒ ሉáˆáŠ• á‹áˆ°á‰¥áˆµá‰¡</string> + <string name="bottomsheet_action_expand">የáŒáˆáŒŒ ሉáˆáŠ• á‹á‹˜áˆáŒ‰</string> + <string name="bottomsheet_action_expand_halfway">áŒáˆ›áˆ½ መንገድ ዘáˆáŒ‹</string> + <string name="bottomsheet_drag_handle_clicked">መያዣ á‹áŒŽá‰µá‰± áˆáˆˆá‰´ መታ ተደáˆáŒ“áˆ</string> + <string name="bottomsheet_drag_handle_content_description">መያዣ á‹áŒŽá‰µá‰±</string> + <string name="character_counter_content_description">á‰áˆáŠá‹Žá‰½ %1$d ከ%2$d ገብተዋáˆ</string> + <string name="character_counter_overflowed_content_description">የá‰áˆáŠ áŒˆá‹°á‰¥ %1$d ከ%2$d አáˆááˆ</string> + <string name="clear_text_end_icon_content_description">ጽሑáን አጽዳ</string> + <string name="error_icon_content_description">ስህተት</string> + <string name="exposed_dropdown_menu_content_description">ተቆáˆá‰‹á‹ áˆáŠ“áˆŒáŠ• አሳá‹</string> + <string name="icon_content_description">የንáŒáŒáˆ አዶ</string> + <string name="item_view_role_description">ትáˆ</string> + <string name="material_clock_toggle_content_description">AM ወá‹áˆ PM á‹áˆáˆ¨áŒ¡</string> + <string name="material_hour_24h_suffix">%1$s ሰዓታት</string> + <string name="material_hour_selection">ሰዓትን á‹áˆáˆ¨áŒ¡</string> + <string name="material_hour_suffix">%1$s ሰዓት</string> + <string name="material_minute_selection">ደቂቃዎችን á‹áˆáˆ¨áŒ¡</string> + <string name="material_minute_suffix">%1$s ደቂቃዎች</string> + <string name="material_timepicker_am">ጥዋት</string> + <string name="material_timepicker_clock_mode_description">ለጊዜ áŒá‰¤á‰± ወደ የሰዓት áˆáŠá‰³ ቀá‹áˆá¢</string> + <string name="material_timepicker_hour">ሰዓት</string> + <string name="material_timepicker_minute">ደቂቃ</string> + <string name="material_timepicker_pm">ከሰዓት</string> + <string name="material_timepicker_select_time">ጊዜ áˆáˆ¨áŒ¥</string> + <string name="material_timepicker_text_input_mode_description">ለጊዜ áŒá‰¤á‰± ወደ የጽሑá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆá¢</string> + <string name="mtrl_badge_numberless_content_description">አዲስ ማሳወቂያ</string> + <string name="mtrl_chip_close_icon_content_description">%1$sን አስወáŒá‹µ</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">ከ%1$d በላዠአዲስ ማሳወቂያዎች</string> + <string name="mtrl_picker_a11y_next_month">ወደ የሚቀጥለዠወሠቀá‹áˆ</string> + <string name="mtrl_picker_a11y_prev_month">ወደ ቀዳሚዠወሠቀá‹áˆ</string> + <string name="mtrl_picker_announce_current_selection">የአáˆáŠ‘ áˆáˆáŒ«á¦ %1$s</string> + <string name="mtrl_picker_cancel">á‹á‰…áˆ</string> + <string name="mtrl_picker_confirm">እሺ</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ቀን á‹áˆáˆ¨áŒ¡</string> + <string name="mtrl_picker_date_header_unselected">የተመረጠዠቀን</string> + <string name="mtrl_picker_day_of_week_column_header">የቀኖች á‹“áˆá‹µá¦ %1$s</string> + <string name="mtrl_picker_invalid_format">áˆáŠ á‹«áˆáˆ†áŠ á‰…áˆáŒ¸á‰µ</string> + <string name="mtrl_picker_invalid_format_example">áˆáˆ³áˆŒá¦ %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s ን á‹áŒ ቀሙ</string> + <string name="mtrl_picker_invalid_range">áˆáŠ á‹«áˆáŠ¾áŠ áŠáˆáˆá¢</string> + <string name="mtrl_picker_navigate_to_year_description">ወደ ዓመት %1$s አሰስ</string> + <string name="mtrl_picker_out_of_range">ከáŠáˆáˆ á‹áŒá¦ %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">መጀመሪያ ቀን – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – መጨረሻ ቀን</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">áŠáˆáˆ á‹áˆáˆ¨áŒ¡</string> + <string name="mtrl_picker_range_header_unselected">የመጀመሪያ ቀን – የመጨረሻ ቀን</string> + <string name="mtrl_picker_save">አስቀáˆáŒ¥</string> + <string name="mtrl_picker_text_input_date_hint">ቀን</string> + <string name="mtrl_picker_text_input_date_range_end_hint">የማብቂያ ቀን</string> + <string name="mtrl_picker_text_input_date_range_start_hint">መጀመሪያ ቀን</string> + <string name="mtrl_picker_text_input_day_abbr">ቀ</string> + <string name="mtrl_picker_text_input_month_abbr">á‹°</string> + <string name="mtrl_picker_text_input_year_abbr">á‹“</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ወደ የቀን መá‰áŒ ሪያ áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆ</string> + <string name="mtrl_picker_toggle_to_day_selection">ወደ ቀን መáˆáˆ¨áŒ¥ ለመቀየሠመታ ያድáˆáŒ‰</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ወደ ጽáˆá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆ</string> + <string name="mtrl_picker_toggle_to_year_selection">ወደ ዓመት መáˆáˆ¨áŒ¥ ለመቀየሠመታ ያድáˆáŒ‰</string> + <string name="mtrl_timepicker_cancel">á‹á‰…áˆ</string> + <string name="mtrl_timepicker_confirm">እሺ</string> + <string name="password_toggle_content_description">የá‹áˆˆá ቃሠአሳá‹</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ar/values-ar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..65dc5664e5ddecac7cf24e08cc0d3361dfc9005a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ar/values-ar.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="zero">%d إشعار جديد</item> + <item quantity="one">إشعار جديد ÙˆØ§ØØ¯ (%d)</item> + <item quantity="two">إشعاران جديدان (%d)</item> + <item quantity="few">%d إشعارات جديدة</item> + <item quantity="many">%d إشعارًا جديدًا</item> + <item quantity="other">%d إشعار جديد</item> + </plurals> + <string name="bottomsheet_action_collapse">تصغير البطاقة السÙلية</string> + <string name="bottomsheet_action_expand">توسيع البطاقة السÙلية</string> + <string name="bottomsheet_action_expand_halfway">توسيع البطاقة السÙلية</string> + <string name="bottomsheet_drag_handle_clicked">تم النقر مرّتين على مقبض Ø§Ù„Ø³ØØ¨.</string> + <string name="bottomsheet_drag_handle_content_description">مقبض Ø§Ù„Ø³ØØ¨</string> + <string name="character_counter_content_description">تمّ إدخال %1$d ØØ±Ù من إجمالي %2$d.</string> + <string name="character_counter_overflowed_content_description">تجاوز عدد Ø§Ù„Ø£ØØ±Ù Ø§Ù„Ù…Ø³Ù…ÙˆØ Ø¨Ù‡ %1$d من %2$d.</string> + <string name="clear_text_end_icon_content_description">Ù…ØÙˆ النص</string> + <string name="error_icon_content_description">خطأ</string> + <string name="exposed_dropdown_menu_content_description">عرض القائمة المنسدلة</string> + <string name="icon_content_description">رمز مربع الØÙˆØ§Ø±</string> + <string name="item_view_role_description">علامة تبويب</string> + <string name="material_clock_toggle_content_description">ÙŠÙØ±Ø¬Ù‰ اختيار صباØÙ‹Ø§ أو مساءً.</string> + <string name="material_hour_24h_suffix">%1$s ساعة</string> + <string name="material_hour_selection">ØªØØ¯ÙŠØ¯ الساعة</string> + <string name="material_hour_suffix">الساعة %1$s</string> + <string name="material_minute_selection">ØªØØ¯ÙŠØ¯ الدقائق</string> + <string name="material_minute_suffix">%1$s دقيقة</string> + <string name="material_timepicker_am">صباØÙ‹Ø§</string> + <string name="material_timepicker_clock_mode_description">ÙŠÙØ±Ø¬Ù‰ التبديل إلى وضع الساعة لإدخال الوقت.</string> + <string name="material_timepicker_hour">الساعة</string> + <string name="material_timepicker_minute">دقيقة</string> + <string name="material_timepicker_pm">مساءً</string> + <string name="material_timepicker_select_time">اختيار الوقت</string> + <string name="material_timepicker_text_input_mode_description">ÙŠÙØ±Ø¬Ù‰ التبديل إلى وضع إدخال النص لإدخال الوقت.</string> + <string name="mtrl_badge_numberless_content_description">إشعار جديد</string> + <string name="mtrl_chip_close_icon_content_description">إزالة %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">يبلغ عدد الإشعارات الجديدة أكثر من %1$d.</string> + <string name="mtrl_picker_a11y_next_month">التغيير إلى الشهر التالي</string> + <string name="mtrl_picker_a11y_prev_month">التغيير إلى الشهر السابق</string> + <string name="mtrl_picker_announce_current_selection">الاختيار Ø§Ù„ØØ§Ù„ÙŠ: %1$s</string> + <string name="mtrl_picker_cancel">إلغاء</string> + <string name="mtrl_picker_confirm">ØØ³Ù†Ù‹Ø§</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ÙŠÙØ±Ø¬Ù‰ اختيار تاريخ.</string> + <string name="mtrl_picker_date_header_unselected">التاريخ Ø§Ù„Ù…ØØ¯Ù‘َد</string> + <string name="mtrl_picker_day_of_week_column_header">عمود الأيام: %1$s</string> + <string name="mtrl_picker_invalid_format">التنسيق غير صالØ</string> + <string name="mtrl_picker_invalid_format_example">مثال: %1$s</string> + <string name="mtrl_picker_invalid_format_use">استخدام: %1$s</string> + <string name="mtrl_picker_invalid_range">النطاق غير صالØ</string> + <string name="mtrl_picker_navigate_to_year_description">التنقل إلى العام %1$s</string> + <string name="mtrl_picker_out_of_range">خارج النطاق: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">تاريخ البدء – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – تاريخ الانتهاء</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">ÙŠÙØ±Ø¬Ù‰ اختيار نطاق زمني.</string> + <string name="mtrl_picker_range_header_unselected">تاريخ البدء - تاريخ الانتهاء</string> + <string name="mtrl_picker_save">ØÙظ</string> + <string name="mtrl_picker_text_input_date_hint">التاريخ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">تاريخ الانتهاء</string> + <string name="mtrl_picker_text_input_date_range_start_hint">تاريخ البدء</string> + <string name="mtrl_picker_text_input_day_abbr">ÙŠ</string> + <string name="mtrl_picker_text_input_month_abbr">Ø´</string> + <string name="mtrl_picker_text_input_year_abbr">س</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">التبديل إلى وضع \"الإدخال ÙÙŠ التقويم\"</string> + <string name="mtrl_picker_toggle_to_day_selection">انقر للتبديل إلى اختيار يوم</string> + <string name="mtrl_picker_toggle_to_text_input_mode">التبديل إلى وضع \"إدخال النص\"</string> + <string name="mtrl_picker_toggle_to_year_selection">انقر للتبديل إلى اختيار عام</string> + <string name="mtrl_timepicker_cancel">إلغاء</string> + <string name="mtrl_timepicker_confirm">ØØ³Ù†Ù‹Ø§</string> + <string name="password_toggle_content_description">عرض كلمة المرور</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-as/values-as.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..0bf6c71030e3cdb67ed539132a499ad707731c22 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-as/values-as.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d new notification</item> + <item quantity="other">%d new notifications</item> + </plurals> + <string name="bottomsheet_action_collapse">Collapse the bottom sheet</string> + <string name="bottomsheet_action_expand">Expand the bottom sheet</string> + <string name="bottomsheet_action_expand_halfway">Expand halfway</string> + <string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string> + <string name="bottomsheet_drag_handle_content_description">Drag handle</string> + <string name="character_counter_content_description">%2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£ লিখা হৈছে</string> + <string name="character_counter_overflowed_content_description">%2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£à§° সীমা অতিকà§à§°à¦® কৰিছে</string> + <string name="clear_text_end_icon_content_description">Clear text</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Show dropdown menu</string> + <string name="icon_content_description">Dialog Icon</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Select AM or PM</string> + <string name="material_hour_24h_suffix">%1$s hours</string> + <string name="material_hour_selection">Select hour</string> + <string name="material_hour_suffix">%1$s o\'clock</string> + <string name="material_minute_selection">মিনিট বাছনি কৰক</string> + <string name="material_minute_suffix">%1$s minutes</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">সময়ৰ ইনপà§à¦Ÿà§° বাবে ঘড়ী ম\'ডলৈ যাওক।</string> + <string name="material_timepicker_hour">Hour</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Select time</string> + <string name="material_timepicker_text_input_mode_description">সময়ৰ ইনপà§à¦Ÿà§° বাবে পাঠৰ ইনপà§à¦Ÿ ম\'ডলৈ যাওক।</string> + <string name="mtrl_badge_numberless_content_description">New notification</string> + <string name="mtrl_chip_close_icon_content_description">%1$sক আà¦à¦¤à§°à¦¾à¦“ক</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">More than %1$d new notifications</string> + <string name="mtrl_picker_a11y_next_month">Change to next month</string> + <string name="mtrl_picker_a11y_prev_month">Change to previous month</string> + <string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string> + <string name="mtrl_picker_cancel">Cancel</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Select Date</string> + <string name="mtrl_picker_date_header_unselected">Selected date</string> + <string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string> + <string name="mtrl_picker_invalid_format">Invalid format.</string> + <string name="mtrl_picker_invalid_format_example">Example: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Use: %1$s</string> + <string name="mtrl_picker_invalid_range">Invalid range.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$s</string> + <string name="mtrl_picker_out_of_range">Out of range: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Start date – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – End date</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Select Range</string> + <string name="mtrl_picker_range_header_unselected">Start date – End date</string> + <string name="mtrl_picker_save">Save</string> + <string name="mtrl_picker_text_input_date_hint">Date</string> + <string name="mtrl_picker_text_input_date_range_end_hint">End date</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Start date</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string> + <string name="mtrl_picker_toggle_to_day_selection">Tap to switch to selecting a day</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string> + <string name="mtrl_picker_toggle_to_year_selection">Tap to switch to selecting a year</string> + <string name="mtrl_timepicker_cancel">Cancel</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">পাছৱৰà§à¦¡ দেখà§à§±à¦¾à¦“ক</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-az/values-az.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..40833d7398a44e6a91a9e88568a0d77ee42eef13 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-az/values-az.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d yeni bildiriÅŸ</item> + <item quantity="other">%d yeni bildiriÅŸ</item> + </plurals> + <string name="bottomsheet_action_collapse">AÅŸağıdakı vÉ™rÉ™qi yığcamlaÅŸdırın</string> + <string name="bottomsheet_action_expand">AÅŸağıdakı vÉ™rÉ™qi geniÅŸlÉ™ndirin</string> + <string name="bottomsheet_action_expand_halfway">Tam geniÅŸlÉ™ndirin</string> + <string name="bottomsheet_drag_handle_clicked">DÉ™stÉ™yÉ™ iki dÉ™fÉ™ toxunun</string> + <string name="bottomsheet_drag_handle_content_description">DÉ™stÉ™k</string> + <string name="character_counter_content_description">%1$d/%2$d simvol daxil edilib</string> + <string name="character_counter_overflowed_content_description">Simvol limiti %1$d/%2$d dÉ™yÉ™rini keçdi</string> + <string name="clear_text_end_icon_content_description">MÉ™tni silin</string> + <string name="error_icon_content_description">XÉ™ta</string> + <string name="exposed_dropdown_menu_content_description">Açılan menyunu göstÉ™rin</string> + <string name="icon_content_description">Dialoq ikonası</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Gündüz vÉ™ ya axÅŸam seçin</string> + <string name="material_hour_24h_suffix">%1$s saat</string> + <string name="material_hour_selection">Saatı seçin</string> + <string name="material_hour_suffix">Saat %1$s</string> + <string name="material_minute_selection">DÉ™qiqÉ™ seçin</string> + <string name="material_minute_suffix">%1$s dÉ™qiqÉ™</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Zamanı daxil etmÉ™k üçün saat rejiminÉ™ keçin</string> + <string name="material_timepicker_hour">Saat</string> + <string name="material_timepicker_minute">DÉ™qiqÉ™</string> + <string name="material_timepicker_pm">GÆ</string> + <string name="material_timepicker_select_time">Vaxt seçin</string> + <string name="material_timepicker_text_input_mode_description">Zamanı daxil etmÉ™k üçün mÉ™tnlÉ™ daxiletmÉ™ rejiminÉ™ keçin</string> + <string name="mtrl_badge_numberless_content_description">Yeni bildiriÅŸ</string> + <string name="mtrl_chip_close_icon_content_description">%1$s silin</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Minimum %1$d yeni bildiriÅŸ</string> + <string name="mtrl_picker_a11y_next_month">NövbÉ™ti aya dÉ™yiÅŸin</string> + <string name="mtrl_picker_a11y_prev_month">ÆvvÉ™lki aya dÉ™yiÅŸin</string> + <string name="mtrl_picker_announce_current_selection">Cari seçim: %1$s</string> + <string name="mtrl_picker_cancel">Ləğv edin</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Tarix seçin</string> + <string name="mtrl_picker_date_header_unselected">SeçilmiÅŸ tarix</string> + <string name="mtrl_picker_day_of_week_column_header">Gün sütunu: %1$s</string> + <string name="mtrl_picker_invalid_format">Yanlış format.</string> + <string name="mtrl_picker_invalid_format_example">NümunÉ™: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s istifadÉ™ edin</string> + <string name="mtrl_picker_invalid_range">Yanlış diapazon.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s ilinÉ™ keçin</string> + <string name="mtrl_picker_out_of_range">ÆhatÉ™ dairÉ™sindÉ™n kÉ™nar: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">BaÅŸlama tarixi – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – BitmÉ™ tarixi</string> + <string name="mtrl_picker_range_header_selected">%1$s: %2$s</string> + <string name="mtrl_picker_range_header_title">Aralıq seçin</string> + <string name="mtrl_picker_range_header_unselected">BaÅŸlama tarixi - BitmÉ™ tarixi</string> + <string name="mtrl_picker_save">Saxlayın</string> + <string name="mtrl_picker_text_input_date_hint">Tarix</string> + <string name="mtrl_picker_text_input_date_range_end_hint">BitmÉ™ tarixi</string> + <string name="mtrl_picker_text_input_date_range_start_hint">BaÅŸlama tarixi</string> + <string name="mtrl_picker_text_input_day_abbr">gün</string> + <string name="mtrl_picker_text_input_month_abbr">ay</string> + <string name="mtrl_picker_text_input_year_abbr">il</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">TÉ™qvim daxiletmÉ™ rejiminÉ™ keçin</string> + <string name="mtrl_picker_toggle_to_day_selection">Gün seçiminÉ™ keçmÉ™k üçün toxunun</string> + <string name="mtrl_picker_toggle_to_text_input_mode">MÉ™tn daxiletmÉ™ rejiminÉ™ keçin</string> + <string name="mtrl_picker_toggle_to_year_selection">İl seçiminÉ™ keçmÉ™k üçün toxunun</string> + <string name="mtrl_timepicker_cancel">Ləğv edin</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Parolu göstÉ™rin</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+es+419/values-b+es+419.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+es+419/values-b+es+419.xml new file mode 100644 index 0000000000000000000000000000000000000000..127481067888f66690608bb7c418594d77352db0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+es+419/values-b+es+419.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificación nueva</item> + <item quantity="other">%d notificaciones nuevas</item> + </plurals> + <string name="bottomsheet_action_collapse">Contraer la hoja inferior</string> + <string name="bottomsheet_action_expand">Expandir la hoja inferior</string> + <string name="bottomsheet_action_expand_halfway">Expandir hasta la mitad</string> + <string name="bottomsheet_drag_handle_clicked">El control de arrastre se presionó dos veces</string> + <string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string> + <string name="character_counter_content_description">Caracteres ingresados: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">Se excedió en %1$d el lÃmite de caracteres de %2$d</string> + <string name="clear_text_end_icon_content_description">Borrar texto</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string> + <string name="icon_content_description">Ãcono de diálogo</string> + <string name="item_view_role_description">Pestaña</string> + <string name="material_clock_toggle_content_description">Selecciona a.m. o p.m.</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Seleccione la hora.</string> + <string name="material_hour_suffix">%1$s en punto</string> + <string name="material_minute_selection">Seleccionar minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">a.m.</string> + <string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para ingresar la hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">p.m.</string> + <string name="material_timepicker_select_time">Seleccionar la hora</string> + <string name="material_timepicker_text_input_mode_description">Cambia al modo de entrada de texto para ingresar la hora.</string> + <string name="mtrl_badge_numberless_content_description">Notificación nueva</string> + <string name="mtrl_chip_close_icon_content_description">Quitar %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string> + <string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string> + <string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string> + <string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">Aceptar</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Seleccionar fecha</string> + <string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string> + <string name="mtrl_picker_day_of_week_column_header">Columna de dÃas: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato no válido</string> + <string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usar: %1$s</string> + <string name="mtrl_picker_invalid_range">El rango no es válido.</string> + <string name="mtrl_picker_navigate_to_year_description">Navegar al año %1$s</string> + <string name="mtrl_picker_out_of_range">Fuera de rango: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - fecha de finalización</string> + <string name="mtrl_picker_range_header_selected">%1$s-%2$s</string> + <string name="mtrl_picker_range_header_title">Selecciona un perÃodo</string> + <string name="mtrl_picker_range_header_unselected">Fecha de inicio - fecha de finalización</string> + <string name="mtrl_picker_save">Guardar</string> + <string name="mtrl_picker_text_input_date_hint">Fecha</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de entrada de calendario</string> + <string name="mtrl_picker_toggle_to_day_selection">Presiona para seleccionar un dÃa</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de entrada de texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Presiona para seleccionar un año</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">Aceptar</string> + <string name="password_toggle_content_description">Mostrar contraseña</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed7f67e1df17818e14f174b3c1e6e6e33951d397 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d novo obaveÅ¡tenje</item> + <item quantity="few">%d nova obaveÅ¡tenja</item> + <item quantity="other">%d novih obaveÅ¡tenja</item> + </plurals> + <string name="bottomsheet_action_collapse">Skupite donju tabelu</string> + <string name="bottomsheet_action_expand">ProÅ¡irite donju tabelu</string> + <string name="bottomsheet_action_expand_halfway">ProÅ¡irite do pola</string> + <string name="bottomsheet_drag_handle_clicked">Identifikator za prevlaÄenje je dvaput dodirnut</string> + <string name="bottomsheet_drag_handle_content_description">RuÄica za prevlaÄenje</string> + <string name="character_counter_content_description">Uneti znakovi: %1$d od %2$d</string> + <string name="character_counter_overflowed_content_description">PrekoraÄeno je ograniÄenje broja znakova: %1$d od %2$d</string> + <string name="clear_text_end_icon_content_description">ObriÅ¡i tekst</string> + <string name="error_icon_content_description">GreÅ¡ka</string> + <string name="exposed_dropdown_menu_content_description">Prikaži padajucÌi meni</string> + <string name="icon_content_description">Ikona dijaloga</string> + <string name="item_view_role_description">Kartica</string> + <string name="material_clock_toggle_content_description">Izaberite pre podne ili po podne</string> + <string name="material_hour_24h_suffix">%1$s s</string> + <string name="material_hour_selection">Izaberite sat</string> + <string name="material_hour_suffix">%1$s s</string> + <string name="material_minute_selection">Izaberite minute</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">PreÄ‘ite u režim sata radi unosa vremena.</string> + <string name="material_timepicker_hour">Sat</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Izaberite vreme</string> + <string name="material_timepicker_text_input_mode_description">PreÄ‘ite u režim unosa teksta radi unosa vremena.</string> + <string name="mtrl_badge_numberless_content_description">Novo obaveÅ¡tenje</string> + <string name="mtrl_chip_close_icon_content_description">Uklonite %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Novih obaveÅ¡tenja: viÅ¡e od %1$d</string> + <string name="mtrl_picker_a11y_next_month">PreÄ‘ite na sledecÌi mesec</string> + <string name="mtrl_picker_a11y_prev_month">PreÄ‘ite na prethodni mesec</string> + <string name="mtrl_picker_announce_current_selection">Aktuelni izbor: %1$s</string> + <string name="mtrl_picker_cancel">Otkaži</string> + <string name="mtrl_picker_confirm">Potvrdi</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Izaberite datum</string> + <string name="mtrl_picker_date_header_unselected">Izabrani datum</string> + <string name="mtrl_picker_day_of_week_column_header">Kolona sa danima: %1$s</string> + <string name="mtrl_picker_invalid_format">Format je nevažecÌi.</string> + <string name="mtrl_picker_invalid_format_example">Primer: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Koristite: %1$s</string> + <string name="mtrl_picker_invalid_range">NevažecÌi period.</string> + <string name="mtrl_picker_navigate_to_year_description">Idite na godinu %1$s</string> + <string name="mtrl_picker_out_of_range">Izvan perioda: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Datum poÄetka – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Datum zavrÅ¡etka</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Izaberite period</string> + <string name="mtrl_picker_range_header_unselected">Datum poÄetka – Datum zavrÅ¡etka</string> + <string name="mtrl_picker_save">SaÄuvaj</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Datum zavrÅ¡etka</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Datum poÄetka</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">g</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">PreÄ‘ite na režim unosa u Kalendaru</string> + <string name="mtrl_picker_toggle_to_day_selection">Dodirnite da biste preÅ¡li na izbor dana</string> + <string name="mtrl_picker_toggle_to_text_input_mode">PreÄ‘ite na režim unosa teksta</string> + <string name="mtrl_picker_toggle_to_year_selection">Dodirnite da biste preÅ¡li na izbor godine</string> + <string name="mtrl_timepicker_cancel">Otkaži</string> + <string name="mtrl_timepicker_confirm">Potvrdi</string> + <string name="password_toggle_content_description">Prikaži lozinku</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-be/values-be.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..f78a23c48152f4e67fc38e74ef0b7df32aea69ac --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-be/values-be.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d новае апавÑшчÑнне</item> + <item quantity="few">%dÂ Ð½Ð¾Ð²Ñ‹Ñ Ð°Ð¿Ð°Ð²ÑшчÑнні</item> + <item quantity="many">%d новых апавÑшчÑннÑÑž</item> + <item quantity="other">%d новага апавÑшчÑннÑ</item> + </plurals> + <string name="bottomsheet_action_collapse">Згарнуць ніжні аркуш</string> + <string name="bottomsheet_action_expand">Разгарнуць ніжні аркуш</string> + <string name="bottomsheet_action_expand_halfway">Разгарнуць напалову</string> + <string name="bottomsheet_drag_handle_clicked">Маркер перацÑÐ³Ð²Ð°Ð½Ð½Ñ Ð½Ð°Ñ†Ñ–Ñнуты двойчы</string> + <string name="bottomsheet_drag_handle_content_description">Маркер перацÑгваннÑ</string> + <string name="character_counter_content_description">Уведзена Ñімвалаў: %1$d з %2$d</string> + <string name="character_counter_overflowed_content_description">Ðбмежаванне колькаÑці Ñімвалаў перавышана: %1$d з %2$d</string> + <string name="clear_text_end_icon_content_description">ÐчыÑціць Ñ‚ÑкÑÑ‚</string> + <string name="error_icon_content_description">Памылка</string> + <string name="exposed_dropdown_menu_content_description">Паказаць выпадное меню</string> + <string name="icon_content_description">Значок дыÑлогавага акна</string> + <string name="item_view_role_description">Укладка</string> + <string name="material_clock_toggle_content_description">Выберыце AM (да паўднÑ) або PM (паÑÐ»Ñ Ð¿Ð°ÑžÐ´Ð½Ñ)</string> + <string name="material_hour_24h_suffix">%1$s гадз</string> + <string name="material_hour_selection">Выберыце гадзіну</string> + <string name="material_hour_suffix">%1$s гадз</string> + <string name="material_minute_selection">Выберыце хвіліны</string> + <string name="material_minute_suffix">%1$s хв</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Пераключыцца на Ñ€Ñжым гадзінніка пры ўводзе чаÑу.</string> + <string name="material_timepicker_hour">Гадзіна</string> + <string name="material_timepicker_minute">Хвіліна</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Выберыце чаÑ</string> + <string name="material_timepicker_text_input_mode_description">Пераключыцца на Ñ€Ñжым Ñ‚ÑкÑту пры ўводзе чаÑу.</string> + <string name="mtrl_badge_numberless_content_description">Ðовае апавÑшчÑнне</string> + <string name="mtrl_chip_close_icon_content_description">Выдаліць %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">КолькаÑць новых апавÑшчÑннÑÑž перавыÑіла %1$d</string> + <string name="mtrl_picker_a11y_next_month">ПерайÑці да наÑтупнага меÑÑца</string> + <string name="mtrl_picker_a11y_prev_month">ПерайÑці да папÑÑ€ÑднÑга меÑÑца</string> + <string name="mtrl_picker_announce_current_selection">БÑгучае вылучÑнне: %1$s</string> + <string name="mtrl_picker_cancel">СкаÑаваць</string> + <string name="mtrl_picker_confirm">ОК</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Выберыце дату</string> + <string name="mtrl_picker_date_header_unselected">Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°</string> + <string name="mtrl_picker_day_of_week_column_header">Слупок дзён: %1$s</string> + <string name="mtrl_picker_invalid_format">ÐÑправільны фармат.</string> + <string name="mtrl_picker_invalid_format_example">Прыклад: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Ðеабходны фармат: %1$s</string> + <string name="mtrl_picker_invalid_range">ÐÑправільны дыÑпазон.</string> + <string name="mtrl_picker_navigate_to_year_description">ПерайÑці Ñž %1$s год</string> + <string name="mtrl_picker_out_of_range">Па-за межамі дыÑпазону: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Дата пачатку – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – дата заканчÑннÑ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Выберыце дыÑпазон дат</string> + <string name="mtrl_picker_range_header_unselected">Дата пачатку – дата заканчÑннÑ</string> + <string name="mtrl_picker_save">Захаваць</string> + <string name="mtrl_picker_text_input_date_hint">Дата</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Дата заканчÑннÑ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Дата пачатку</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">г</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Пераключыцца Ñž Ñ€Ñжым уводу \"КалÑндар\"</string> + <string name="mtrl_picker_toggle_to_day_selection">ДакраніцеÑÑ, каб пераключыцца на выбар днÑ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Пераключыцца Ñž Ñ€Ñжым уводу \"ТÑкÑÑ‚\"</string> + <string name="mtrl_picker_toggle_to_year_selection">ДакраніцеÑÑ, каб пераключыцца на выбар года</string> + <string name="mtrl_timepicker_cancel">СкаÑаваць</string> + <string name="mtrl_timepicker_confirm">ОК</string> + <string name="password_toggle_content_description">Паказаць пароль</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bg/values-bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..397dc513fbe34f4abeeab7ca53c7d2200d579229 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bg/values-bg.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ново извеÑтие</item> + <item quantity="other">%d нови извеÑтиÑ</item> + </plurals> + <string name="bottomsheet_action_collapse">Свиване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑÑ‚</string> + <string name="bottomsheet_action_expand">Разгъване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑÑ‚</string> + <string name="bottomsheet_action_expand_halfway">Разгъване наполовина</string> + <string name="bottomsheet_drag_handle_clicked">Двукратно докоÑване на манипулатора за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½Ðµ</string> + <string name="bottomsheet_drag_handle_content_description">Манипулатор за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½Ðµ</string> + <string name="character_counter_content_description">Въведени знаци: %1$d от %2$d</string> + <string name="character_counter_overflowed_content_description">МакÑималниÑÑ‚ брой знаци е надхвърлен Ñ(ÑŠÑ) %1$d от %2$d</string> + <string name="clear_text_end_icon_content_description">ИзчиÑтване на текÑта</string> + <string name="error_icon_content_description">Грешка</string> + <string name="exposed_dropdown_menu_content_description">Показване на падащото меню</string> + <string name="icon_content_description">Икона за диалогов прозорец</string> + <string name="item_view_role_description">Раздел</string> + <string name="material_clock_toggle_content_description">Изберете AM или PM</string> + <string name="material_hour_24h_suffix">%1$s чаÑа</string> + <string name="material_hour_selection">Изберете чаÑ</string> + <string name="material_hour_suffix">%1$s чаÑа</string> + <string name="material_minute_selection">Избиране на минути</string> + <string name="material_minute_suffix">%1$s минути</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Превключете към режима за чаÑовник, за да въведете чаÑа.</string> + <string name="material_timepicker_hour">ЧаÑ</string> + <string name="material_timepicker_minute">Минута</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Избор на чаÑ</string> + <string name="material_timepicker_text_input_mode_description">Превключете към режима за въвеждане на текÑÑ‚, за да въведете чаÑа.</string> + <string name="mtrl_badge_numberless_content_description">Ðово извеÑтие</string> + <string name="mtrl_chip_close_icon_content_description">Премахване на %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Повече от %1$d нови извеÑтиÑ</string> + <string name="mtrl_picker_a11y_next_month">Преминаване към ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¼ÐµÑец</string> + <string name="mtrl_picker_a11y_prev_month">Преминаване към Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ Ð¼ÐµÑец</string> + <string name="mtrl_picker_announce_current_selection">Текущ избор: %1$s</string> + <string name="mtrl_picker_cancel">Отказ</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Избиране на дата</string> + <string name="mtrl_picker_date_header_unselected">Избрана дата</string> + <string name="mtrl_picker_day_of_week_column_header">Колона за дни: %1$s</string> + <string name="mtrl_picker_invalid_format">Форматът е невалиден.</string> + <string name="mtrl_picker_invalid_format_example">Пример: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Използвайте: %1$s</string> + <string name="mtrl_picker_invalid_range">Ðевалиден диапазон.</string> + <string name="mtrl_picker_navigate_to_year_description">Ðавигиране до %1$s г.</string> + <string name="mtrl_picker_out_of_range">Извън диапазона: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Ðачална дата – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – крайна дата</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Избиране на период от време</string> + <string name="mtrl_picker_range_header_unselected">Ðачална дата – крайна дата</string> + <string name="mtrl_picker_save">Запазване</string> + <string name="mtrl_picker_text_input_date_hint">Дата</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Крайна дата</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Ðачална дата</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">г</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Превключване към режим на въвеждане в календар</string> + <string name="mtrl_picker_toggle_to_day_selection">ДокоÑнете, за да превключите към избиране на ден</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Превключване към режим за въвеждане на текÑÑ‚</string> + <string name="mtrl_picker_toggle_to_year_selection">ДокоÑнете, за да превключите към избиране на година</string> + <string name="mtrl_timepicker_cancel">Отказ</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Показване на паролата</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bn/values-bn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..54bce1bc334e53660b039a0360d894dd36075300 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bn/values-bn.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿</item> + <item quantity="other">%dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿</item> + </plurals> + <string name="bottomsheet_action_collapse">সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট আড়াল করà§à¦¨</string> + <string name="bottomsheet_action_expand">সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট বড় করà§à¦¨</string> + <string name="bottomsheet_action_expand_halfway">অরà§à¦§à§‡à¦• পà§à¦°à¦¸à¦¾à¦°à¦¿à¦¤ করà§à¦¨</string> + <string name="bottomsheet_drag_handle_clicked">টেনে আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²à§‡ ডবল টà§à¦¯à¦¾à¦ª করা হয়েছে</string> + <string name="bottomsheet_drag_handle_content_description">টেনে আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²</string> + <string name="character_counter_content_description">%2$dটির মধà§à¦¯à§‡ %1$dটি অকà§à¦·à¦° লেখা হয়েছে</string> + <string name="character_counter_overflowed_content_description">অকà§à¦·à¦°à§‡à¦° সীমা %1$d à¦à¦° %2$d অতিকà§à¦°à¦® করেছে</string> + <string name="clear_text_end_icon_content_description">টেকà§à¦¸à¦Ÿ মà§à¦›à§à¦¨</string> + <string name="error_icon_content_description">সমসà§à¦¯à¦¾</string> + <string name="exposed_dropdown_menu_content_description">ডà§à¦°à¦ª-ডাউন মেনৠদেখà§à¦¨</string> + <string name="icon_content_description">ডায়ালগ আইকন</string> + <string name="item_view_role_description">টà§à¦¯à¦¾à¦¬</string> + <string name="material_clock_toggle_content_description">AM অথবা PM বেছে নিন</string> + <string name="material_hour_24h_suffix">%1$s ঘণà§à¦Ÿà¦¾</string> + <string name="material_hour_selection">ঘণà§à¦Ÿà¦¾ বেছে নিন</string> + <string name="material_hour_suffix">%1$sটা বাজে</string> + <string name="material_minute_selection">মিনিট বেছে নিন</string> + <string name="material_minute_suffix">%1$s মিনিট</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">সময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ ঘড়ি মোডে যান।</string> + <string name="material_timepicker_hour">ঘণà§à¦Ÿà¦¾</string> + <string name="material_timepicker_minute">মিনিট</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">সময় বেছে নিন</string> + <string name="material_timepicker_text_input_mode_description">সময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ পাঠà§à¦¯ ইনপà§à¦Ÿ মোডে যান।</string> + <string name="mtrl_badge_numberless_content_description">নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿</string> + <string name="mtrl_chip_close_icon_content_description">%1$s সরিয়ে দিন</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$dটির বেশি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿</string> + <string name="mtrl_picker_a11y_next_month">আগামী মাসে যান</string> + <string name="mtrl_picker_a11y_prev_month">আগের মাসে যান</string> + <string name="mtrl_picker_announce_current_selection">বরà§à¦¤à¦®à¦¾à¦¨ বাছাই: %1$s</string> + <string name="mtrl_picker_cancel">বাতিল করà§à¦¨</string> + <string name="mtrl_picker_confirm">ঠিক আছে</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">তারিখ বেছে নিন</string> + <string name="mtrl_picker_date_header_unselected">বেছে নেওয়া তারিখ</string> + <string name="mtrl_picker_day_of_week_column_header">সপà§à¦¤à¦¾à¦¹à§‡à¦° দিনগà§à¦²à¦¿à¦° কলাম: %1$s</string> + <string name="mtrl_picker_invalid_format">à¦à§à¦² ফরà§à¦®à§à¦¯à¦¾à¦Ÿà¥¤</string> + <string name="mtrl_picker_invalid_format_example">উদাহরণ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s ফরà§à¦®à§à¦¯à¦¾à¦Ÿà§‡ লিখà§à¦¨</string> + <string name="mtrl_picker_invalid_range">তারিখ সঠিক নয়।</string> + <string name="mtrl_picker_navigate_to_year_description">নেà¦à¦¿à¦—েট করে %1$s সালে যান</string> + <string name="mtrl_picker_out_of_range">নিরà§à¦¦à¦¿à¦·à§à¦Ÿ তারিখের বাইরে: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">শà§à¦°à§à¦° তারিখ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – সমাপà§à¦¤à¦¿à¦° তারিখ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">রেঞà§à¦œ বেছে নিন</string> + <string name="mtrl_picker_range_header_unselected">শà§à¦°à§à¦° তারিখ - সমাপà§à¦¤à¦¿à¦° তারিখ</string> + <string name="mtrl_picker_save">সেঠকরà§à¦¨</string> + <string name="mtrl_picker_text_input_date_hint">তারিখ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">সমাপà§à¦¤à¦¿à¦° তারিখ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">শà§à¦°à§à¦° তারিখ</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">কà§à¦¯à¦¾à¦²à§‡à¦¨à§à¦¡à¦¾à¦° ইনপà§à¦Ÿ মোডে বদল করà§à¦¨</string> + <string name="mtrl_picker_toggle_to_day_selection">দিন বেছে নেওয়ার মোডে বদল করতে টà§à¦¯à¦¾à¦ª করà§à¦¨</string> + <string name="mtrl_picker_toggle_to_text_input_mode">টেকà§à¦¸à¦Ÿ ইনপà§à¦Ÿ মোডে বদল করà§à¦¨</string> + <string name="mtrl_picker_toggle_to_year_selection">বছর বেছে নেওয়ার মোডে বদল করতে টà§à¦¯à¦¾à¦ª করà§à¦¨</string> + <string name="mtrl_timepicker_cancel">বাতিল করà§à¦¨</string> + <string name="mtrl_timepicker_confirm">ঠিক আছে</string> + <string name="password_toggle_content_description">পাসওয়ারà§à¦¡ দেখান</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bs/values-bs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..69fc96e8f502075395e1460be6411e70c396c6e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-bs/values-bs.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d novo obavjeÅ¡tenje</item> + <item quantity="few">%d nova obavjeÅ¡tenja</item> + <item quantity="other">%d novih obavjeÅ¡tenja</item> + </plurals> + <string name="bottomsheet_action_collapse">Sužavanje donje tabele</string> + <string name="bottomsheet_action_expand">ProÅ¡irivanje donje tabele</string> + <string name="bottomsheet_action_expand_halfway">ProÅ¡irivanje dopola</string> + <string name="bottomsheet_drag_handle_clicked">RuÄica za prevlaÄenje je dvaput dodirnuta</string> + <string name="bottomsheet_drag_handle_content_description">RuÄica za prevlaÄenje</string> + <string name="character_counter_content_description">Uneseno znakova: %1$d od %2$d</string> + <string name="character_counter_overflowed_content_description">OgraniÄenje broja znakova premaÅ¡uje %1$d od %2$d</string> + <string name="clear_text_end_icon_content_description">ObriÅ¡i tekst</string> + <string name="error_icon_content_description">GreÅ¡ka</string> + <string name="exposed_dropdown_menu_content_description">Prikaži padajući meni</string> + <string name="icon_content_description">ikona dijaloÅ¡kog okvira</string> + <string name="item_view_role_description">Kartica</string> + <string name="material_clock_toggle_content_description">Odaberite prijepodne ili poslijepodne</string> + <string name="material_hour_24h_suffix">%1$s h</string> + <string name="material_hour_selection">Odaberite sat</string> + <string name="material_hour_suffix">%1$s h</string> + <string name="material_minute_selection">Odaberite minute</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Prebacite u naÄin rada kao sat za unos vremena.</string> + <string name="material_timepicker_hour">Sat</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Odabir vremena</string> + <string name="material_timepicker_text_input_mode_description">Prebacite u naÄin unosa teksta za unos vremena.</string> + <string name="mtrl_badge_numberless_content_description">Novo obavjeÅ¡tenje</string> + <string name="mtrl_chip_close_icon_content_description">Uklonite %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Broj novih obavjeÅ¡tenja: viÅ¡e od %1$d</string> + <string name="mtrl_picker_a11y_next_month">Promijeni na sljedeći mjesec</string> + <string name="mtrl_picker_a11y_prev_month">Promijeni na prethodni mjesec</string> + <string name="mtrl_picker_announce_current_selection">Trenutni izbor: %1$s</string> + <string name="mtrl_picker_cancel">Otkaži</string> + <string name="mtrl_picker_confirm">Uredu</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Odaberite datum</string> + <string name="mtrl_picker_date_header_unselected">Odabrani datum</string> + <string name="mtrl_picker_day_of_week_column_header">Kolona za dane: %1$s</string> + <string name="mtrl_picker_invalid_format">Nevažeći format.</string> + <string name="mtrl_picker_invalid_format_example">Primjer: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Koristi: %1$s</string> + <string name="mtrl_picker_invalid_range">Nevažeći opseg.</string> + <string name="mtrl_picker_navigate_to_year_description">Odlazak na %1$s. godinu</string> + <string name="mtrl_picker_out_of_range">Izvan opsega: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Datum poÄetka – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Datum zavrÅ¡etka</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Odaberite raspon</string> + <string name="mtrl_picker_range_header_unselected">Datum poÄetka – Datum zavrÅ¡etka</string> + <string name="mtrl_picker_save">SaÄuvaj</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Datum zavrÅ¡etka</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Datum poÄetka</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">g</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Prebacivanje na naÄin unosa kalendara</string> + <string name="mtrl_picker_toggle_to_day_selection">Dodirnite da prebacite na odabir dana</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Prebacivanje na naÄin unosa teksta</string> + <string name="mtrl_picker_toggle_to_year_selection">Dodirnite da prebacite na odabir godine</string> + <string name="mtrl_timepicker_cancel">Otkaži</string> + <string name="mtrl_timepicker_confirm">Uredu</string> + <string name="password_toggle_content_description">Prikaži lozinku</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ca/values-ca.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..41b28ccdd9a20533f0a08f434e9db11bb49a8e3f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ca/values-ca.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificació nova</item> + <item quantity="other">%d notificacions noves</item> + </plurals> + <string name="bottomsheet_action_collapse">Replega el full inferior</string> + <string name="bottomsheet_action_expand">Desplega el full inferior</string> + <string name="bottomsheet_action_expand_halfway">Desplega fins a la meitat</string> + <string name="bottomsheet_drag_handle_clicked">Has fet doble toc a l\'ansa per arrossegar</string> + <string name="bottomsheet_drag_handle_content_description">Ansa per arrossegar</string> + <string name="character_counter_content_description">Carà cters introduïts: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">S\'ha superat el lÃmit de carà cters (%1$d de %2$d)</string> + <string name="clear_text_end_icon_content_description">Esborra el text</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Mostra el menú desplegable</string> + <string name="icon_content_description">Icona del quadre de dià leg</string> + <string name="item_view_role_description">Tabulador</string> + <string name="material_clock_toggle_content_description">Selecciona a. m. o p. m.</string> + <string name="material_hour_24h_suffix">%1$s hores</string> + <string name="material_hour_selection">Seleccioneu l\'hora</string> + <string name="material_hour_suffix">%1$s en punt</string> + <string name="material_minute_selection">Selecciona els minuts</string> + <string name="material_minute_suffix">%1$s minuts</string> + <string name="material_timepicker_am">a. m.</string> + <string name="material_timepicker_clock_mode_description">Canvia al mode de rellotge per introduir l\'hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">p. m.</string> + <string name="material_timepicker_select_time">Selecció de l\'hora</string> + <string name="material_timepicker_text_input_mode_description">Canvia al mode d\'introducció de text per introduir l\'hora.</string> + <string name="mtrl_badge_numberless_content_description">Notificació nova</string> + <string name="mtrl_chip_close_icon_content_description">Suprimeix %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Més de %1$d notificacions noves</string> + <string name="mtrl_picker_a11y_next_month">Canvia al mes següent</string> + <string name="mtrl_picker_a11y_prev_month">Canvia al mes anterior</string> + <string name="mtrl_picker_announce_current_selection">Selecció actual: %1$s</string> + <string name="mtrl_picker_cancel">Cancel·la</string> + <string name="mtrl_picker_confirm">D’acord</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecciona una data</string> + <string name="mtrl_picker_date_header_unselected">Data seleccionada</string> + <string name="mtrl_picker_day_of_week_column_header">Columna de dies: %1$s</string> + <string name="mtrl_picker_invalid_format">El format no és và lid.</string> + <string name="mtrl_picker_invalid_format_example">Exemple: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Utilitza: %1$s</string> + <string name="mtrl_picker_invalid_range">L\'interval no és và lid.</string> + <string name="mtrl_picker_navigate_to_year_description">Canvia a l\'any %1$s</string> + <string name="mtrl_picker_out_of_range">La data està fora de l\'interval: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data d\'inici - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - data de finalització</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Selecciona un interval</string> + <string name="mtrl_picker_range_header_unselected">Data d\'inici - data de finalització</string> + <string name="mtrl_picker_save">Desa</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data de finalització</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data d\'inici</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Canvia al mode d\'introducció de dades del calendari</string> + <string name="mtrl_picker_toggle_to_day_selection">Toca per canviar a la selecció del dia</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Canvia al mode d\'introducció de text</string> + <string name="mtrl_picker_toggle_to_year_selection">Toca per canviar a la selecció de l\'any</string> + <string name="mtrl_timepicker_cancel">Cancel·la</string> + <string name="mtrl_timepicker_confirm">D’acord</string> + <string name="password_toggle_content_description">Mostra la contrasenya</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-cs/values-cs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..5a17cae420d9a79feaa9c44f152ee9c0cd7c4652 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-cs/values-cs.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nové oznámenÃ</item> + <item quantity="few">%d nová oznámenÃ</item> + <item quantity="many">%d nového oznámenÃ</item> + <item quantity="other">%d nových oznámenÃ</item> + </plurals> + <string name="bottomsheet_action_collapse">Sbalit spodnà tabulku</string> + <string name="bottomsheet_action_expand">Rozbalit spodnà tabulku</string> + <string name="bottomsheet_action_expand_halfway">Rozbalit napůl</string> + <string name="bottomsheet_drag_handle_clicked">Dvakrát jste klepli na úchyt pro pÅ™etaženÃ</string> + <string name="bottomsheet_drag_handle_content_description">Úchyt pro pÅ™etaženÃ</string> + <string name="character_counter_content_description">Zadané znaky: %1$d z %2$d</string> + <string name="character_counter_overflowed_content_description">Byl pÅ™ekroÄen povolený poÄet znaků (%1$d z %2$d)</string> + <string name="clear_text_end_icon_content_description">Vymazat text</string> + <string name="error_icon_content_description">Chyba</string> + <string name="exposed_dropdown_menu_content_description">Zobrazit rozbalovacà nabÃdku</string> + <string name="icon_content_description">Ikona dialogového okna</string> + <string name="item_view_role_description">Karta</string> + <string name="material_clock_toggle_content_description">Vyberte AM nebo PM</string> + <string name="material_hour_24h_suffix">%1$s hodin</string> + <string name="material_hour_selection">Vyberte hodinu</string> + <string name="material_hour_suffix">%1$s</string> + <string name="material_minute_selection">Zvolte minuty</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Chcete-li zadat Äas, pÅ™epnÄ›te na režim hodin.</string> + <string name="material_timepicker_hour">Hodina</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Vyberte Äas</string> + <string name="material_timepicker_text_input_mode_description">Chcete-li zadat Äas, pÅ™epnÄ›te na režim textu.</string> + <string name="mtrl_badge_numberless_content_description">Nové oznámenÃ</string> + <string name="mtrl_chip_close_icon_content_description">Odstranit položku %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">VÃce než %1$d nových oznámenÃ</string> + <string name="mtrl_picker_a11y_next_month">PÅ™ejÃt na dalšà mÄ›sÃc</string> + <string name="mtrl_picker_a11y_prev_month">PÅ™ejÃt na pÅ™edchozà mÄ›sÃc</string> + <string name="mtrl_picker_announce_current_selection">Aktuálnà výbÄ›r: %1$s</string> + <string name="mtrl_picker_cancel">ZruÅ¡it</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Vyberte datum</string> + <string name="mtrl_picker_date_header_unselected">Vybrané datum</string> + <string name="mtrl_picker_day_of_week_column_header">Sloupec dnů: %1$s</string> + <string name="mtrl_picker_invalid_format">Neplatný formát.</string> + <string name="mtrl_picker_invalid_format_example">PÅ™Ãklad: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Použijte: %1$s</string> + <string name="mtrl_picker_invalid_range">Neplatný rozsah.</string> + <string name="mtrl_picker_navigate_to_year_description">PÅ™ejÃt na rok %1$s</string> + <string name="mtrl_picker_out_of_range">Mimo rozsah: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Datum zahájenà – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – datum ukonÄenÃ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Vyberte rozsah</string> + <string name="mtrl_picker_range_header_unselected">Datum zahájenà – datum ukonÄenÃ</string> + <string name="mtrl_picker_save">Uložit</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Datum ukonÄenÃ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Datum zahájenÃ</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">r</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">PÅ™epnout na režim zadávánà do kalendáře</string> + <string name="mtrl_picker_toggle_to_day_selection">KlepnutÃm pÅ™epnete na výbÄ›r dne</string> + <string name="mtrl_picker_toggle_to_text_input_mode">PÅ™epnout na režim zadávánà textu</string> + <string name="mtrl_picker_toggle_to_year_selection">KlepnutÃm pÅ™epnete na výbÄ›r roku</string> + <string name="mtrl_timepicker_cancel">ZruÅ¡it</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Zobrazit heslo</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-da/values-da.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..6b6a4ee62d64b4057dcf83d0ea8c92eebc933d3c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-da/values-da.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ny notifikation</item> + <item quantity="other">%d nye notifikationer</item> + </plurals> + <string name="bottomsheet_action_collapse">Skjul feltet i bunden</string> + <string name="bottomsheet_action_expand">Udvid feltet i bunden</string> + <string name="bottomsheet_action_expand_halfway">Udvid halvdelen</string> + <string name="bottomsheet_drag_handle_clicked">Du har trykket to gange pÃ¥ hÃ¥ndtaget</string> + <string name="bottomsheet_drag_handle_content_description">HÃ¥ndtag</string> + <string name="character_counter_content_description">Du har brugt %1$d ud af %2$d tegn</string> + <string name="character_counter_overflowed_content_description">Du har brugt %1$d tegn og dermed overskredet tegnbegrænsningen pÃ¥ %2$d.</string> + <string name="clear_text_end_icon_content_description">Ryd tekst</string> + <string name="error_icon_content_description">Fejl</string> + <string name="exposed_dropdown_menu_content_description">Vis rullemenuen</string> + <string name="icon_content_description">Ikon for dialogboks</string> + <string name="item_view_role_description">Fane</string> + <string name="material_clock_toggle_content_description">Vælg AM eller PM</string> + <string name="material_hour_24h_suffix">%1$s timer</string> + <string name="material_hour_selection">Vælg time</string> + <string name="material_hour_suffix">klokken %1$s</string> + <string name="material_minute_selection">Vælg minutter</string> + <string name="material_minute_suffix">%1$s minutter</string> + <string name="material_timepicker_am">f.m.</string> + <string name="material_timepicker_clock_mode_description">Skift til urtilstand for at angive klokkeslæt.</string> + <string name="material_timepicker_hour">Time</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">e.m.</string> + <string name="material_timepicker_select_time">Vælg tidspunkt</string> + <string name="material_timepicker_text_input_mode_description">Skift til teksttilstand for at angive klokkeslæt.</string> + <string name="mtrl_badge_numberless_content_description">Ny notifikation</string> + <string name="mtrl_chip_close_icon_content_description">Fjern %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Flere end %1$d nye notifikationer</string> + <string name="mtrl_picker_a11y_next_month">Skift til næste mÃ¥ned</string> + <string name="mtrl_picker_a11y_prev_month">Skift til forrige mÃ¥ned</string> + <string name="mtrl_picker_announce_current_selection">Aktuelt valg: %1$s</string> + <string name="mtrl_picker_cancel">Annuller</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Vælg dato</string> + <string name="mtrl_picker_date_header_unselected">Valgt dato</string> + <string name="mtrl_picker_day_of_week_column_header">Kolonne med dage: %1$s</string> + <string name="mtrl_picker_invalid_format">Ugyldigt format.</string> + <string name="mtrl_picker_invalid_format_example">Eksempel: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Brug: %1$s</string> + <string name="mtrl_picker_invalid_range">Ugyldigt interval.</string> + <string name="mtrl_picker_navigate_to_year_description">GÃ¥ til Ã¥r %1$s</string> + <string name="mtrl_picker_out_of_range">Uden for interval: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Startdato – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – slutdato</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Vælg interval</string> + <string name="mtrl_picker_range_header_unselected">Startdato – slutdato</string> + <string name="mtrl_picker_save">Gem</string> + <string name="mtrl_picker_text_input_date_hint">Dato</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Slutdato</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Startdato</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">Ã¥</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Skift til input-tilstand for kalender</string> + <string name="mtrl_picker_toggle_to_day_selection">Tryk for at gÃ¥ til valg af dag</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Skift til input-tilstand for tekst</string> + <string name="mtrl_picker_toggle_to_year_selection">Tryk for at gÃ¥ til valg af Ã¥r</string> + <string name="mtrl_timepicker_cancel">Annuller</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Vis adgangskode</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-de/values-de.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..073bc18247aa0446bb9b8a9e405554b3fbc8f6f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-de/values-de.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d neue Benachrichtigung</item> + <item quantity="other">%d neue Benachrichtigungen</item> + </plurals> + <string name="bottomsheet_action_collapse">Ansicht am unteren Rand minimieren</string> + <string name="bottomsheet_action_expand">Ansicht am unteren Rand maximieren</string> + <string name="bottomsheet_action_expand_halfway">Zur Hälfte maximieren</string> + <string name="bottomsheet_drag_handle_clicked">Auf Ziehpunkt doppelt getippt</string> + <string name="bottomsheet_drag_handle_content_description">Ziehpunkt</string> + <string name="character_counter_content_description">Eingegebene Zeichen: %1$d von %2$d</string> + <string name="character_counter_overflowed_content_description">Zeichenbeschränkung überschritten: %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Text löschen</string> + <string name="error_icon_content_description">Fehler</string> + <string name="exposed_dropdown_menu_content_description">Drop-down-Menü anzeigen</string> + <string name="icon_content_description">Dialogfeldsymbol</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Vormittags oder Nachmittags auswählen</string> + <string name="material_hour_24h_suffix">%1$s Stunden</string> + <string name="material_hour_selection">Stunde auswählen</string> + <string name="material_hour_suffix">%1$s Uhr</string> + <string name="material_minute_selection">Minuten auswählen</string> + <string name="material_minute_suffix">%1$s Minuten</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">In den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben.</string> + <string name="material_timepicker_hour">Stunde</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Uhrzeit auswählen</string> + <string name="material_timepicker_text_input_mode_description">In den Texteingabemodus wechseln, um die Uhrzeit einzugeben.</string> + <string name="mtrl_badge_numberless_content_description">Neue Benachrichtigung</string> + <string name="mtrl_chip_close_icon_content_description">%1$s entfernen</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Mehr als %1$d neue Benachrichtigungen</string> + <string name="mtrl_picker_a11y_next_month">Zum nächsten Monat wechseln</string> + <string name="mtrl_picker_a11y_prev_month">Zum vorherigen Monat wechseln</string> + <string name="mtrl_picker_announce_current_selection">Aktuelle Auswahl: %1$s</string> + <string name="mtrl_picker_cancel">Abbrechen</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Datum auswählen</string> + <string name="mtrl_picker_date_header_unselected">Ausgewähltes Datum</string> + <string name="mtrl_picker_day_of_week_column_header">Spalte \"Wochentag\": %1$s</string> + <string name="mtrl_picker_invalid_format">Ungültiges Format.</string> + <string name="mtrl_picker_invalid_format_example">Beispiel: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Format: %1$s</string> + <string name="mtrl_picker_invalid_range">Ungültiger Bereich.</string> + <string name="mtrl_picker_navigate_to_year_description">Zum Jahr %1$s wechseln</string> + <string name="mtrl_picker_out_of_range">Außerhalb des Bereichs: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Startdatum – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Enddatum</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Zeitraum auswählen</string> + <string name="mtrl_picker_range_header_unselected">Startdatum – Enddatum</string> + <string name="mtrl_picker_save">Speichern</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Enddatum</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Startdatum</string> + <string name="mtrl_picker_text_input_day_abbr">T</string> + <string name="mtrl_picker_text_input_month_abbr">M</string> + <string name="mtrl_picker_text_input_year_abbr">J</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">In den Kalendereingabemodus wechseln</string> + <string name="mtrl_picker_toggle_to_day_selection">Tippen, um zur Tagesauswahl zu wechseln</string> + <string name="mtrl_picker_toggle_to_text_input_mode">In den Texteingabemodus wechseln</string> + <string name="mtrl_picker_toggle_to_year_selection">Tippen, um zur Jahresauswahl zu wechseln</string> + <string name="mtrl_timepicker_cancel">Abbrechen</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Passwort anzeigen</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-el/values-el.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..62095d01086d038efa329f8b757b83b76aae4f76 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-el/values-el.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d νÎα ειδοποίηση</item> + <item quantity="other">%d νÎες ειδοποιήσεις</item> + </plurals> + <string name="bottomsheet_action_collapse">ΣÏμπτυξη του φÏλλου κάτω μÎÏους</string> + <string name="bottomsheet_action_expand">Ανάπτυξη του φÏλλου κάτω μÎÏους</string> + <string name="bottomsheet_action_expand_halfway">Ανάπτυξη μÎχÏι τη μÎση</string> + <string name="bottomsheet_drag_handle_clicked">Η λαβή μεταφοÏάς πατήθηκε δÏο φοÏÎÏ‚</string> + <string name="bottomsheet_drag_handle_content_description">Λαβή μεταφοÏάς</string> + <string name="character_counter_content_description">Εισήχθησαν %1$d από %2$d χαÏακτήÏες</string> + <string name="character_counter_overflowed_content_description">ΥπÎÏβαση οÏίου χαÏακτήÏων %1$d από %2$d</string> + <string name="clear_text_end_icon_content_description">ΔιαγÏαφή κειμÎνου</string> + <string name="error_icon_content_description">Σφάλμα</string> + <string name="exposed_dropdown_menu_content_description">Εμφάνιση αναπτυσσόμενου μενοÏ</string> + <string name="icon_content_description">Εικονίδιο παÏαθÏÏου διαλόγου</string> + <string name="item_view_role_description">ΚαÏÏ„Îλα</string> + <string name="material_clock_toggle_content_description">ΕπιλÎξτε Ï€.μ. ή μ.μ.</string> + <string name="material_hour_24h_suffix">%1$s ÏŽÏες</string> + <string name="material_hour_selection">Επιλογή ÏŽÏας</string> + <string name="material_hour_suffix">%1$s ακÏιβώς</string> + <string name="material_minute_selection">Επιλογή λεπτών</string> + <string name="material_minute_suffix">%1$s λεπτά</string> + <string name="material_timepicker_am">ΠΜ</string> + <string name="material_timepicker_clock_mode_description">Κάντε εναλλαγή στη λειτουÏγία ÏολογιοÏ, για την εισαγωγή της ÏŽÏας.</string> + <string name="material_timepicker_hour">ÎÏα</string> + <string name="material_timepicker_minute">Λεπτό</string> + <string name="material_timepicker_pm">ΜΜ</string> + <string name="material_timepicker_select_time">ΕπιλÎξτε ÏŽÏα</string> + <string name="material_timepicker_text_input_mode_description">Κάντε εναλλαγή στη λειτουÏγία εισαγωγής κειμÎνου, για την εισαγωγή της ÏŽÏας.</string> + <string name="mtrl_badge_numberless_content_description">ÎÎα ειδοποίηση</string> + <string name="mtrl_chip_close_icon_content_description">ΚατάÏγηση %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Πάνω από %1$d νÎες ειδοποιήσεις</string> + <string name="mtrl_picker_a11y_next_month">Αλλαγή στον επόμενο μήνα</string> + <string name="mtrl_picker_a11y_prev_month">Αλλαγή στον Ï€ÏοηγοÏμενο μήνα</string> + <string name="mtrl_picker_announce_current_selection">ΤÏÎχουσα επιλογή: %1$s</string> + <string name="mtrl_picker_cancel">ΑκÏÏωση</string> + <string name="mtrl_picker_confirm">ΟΚ</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Επιλογή ημεÏομηνίας</string> + <string name="mtrl_picker_date_header_unselected">ΕπιλεγμÎνη ημεÏομηνία</string> + <string name="mtrl_picker_day_of_week_column_header">Στήλη ημεÏών: %1$s</string> + <string name="mtrl_picker_invalid_format">Μη ÎγκυÏη μοÏφή.</string> + <string name="mtrl_picker_invalid_format_example">ΠαÏάδειγμα: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ΧÏησιμοποιήστε: %1$s</string> + <string name="mtrl_picker_invalid_range">Μη ÎγκυÏο εÏÏος.</string> + <string name="mtrl_picker_navigate_to_year_description">Πλοήγηση στο Îτος %1$s</string> + <string name="mtrl_picker_out_of_range">Εκτός εÏÏους: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ΗμεÏομηνία ÎναÏξης – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ΗμεÏομηνία λήξης</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Επιλογή εÏÏους</string> + <string name="mtrl_picker_range_header_unselected">ΗμεÏομηνία ÎναÏξης – ΗμεÏομηνία λήξης</string> + <string name="mtrl_picker_save">Αποθήκευση</string> + <string name="mtrl_picker_text_input_date_hint">ΗμεÏομηνία</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ΗμεÏομηνία λήξης</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ΗμεÏομηνία ÎναÏξης</string> + <string name="mtrl_picker_text_input_day_abbr">η</string> + <string name="mtrl_picker_text_input_month_abbr">μ</string> + <string name="mtrl_picker_text_input_year_abbr">ε</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Εναλλαγή στη λειτουÏγία εισαγωγής ημεÏολογίου</string> + <string name="mtrl_picker_toggle_to_day_selection">Πατήστε για εναλλαγή για την επιλογή ημÎÏας</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Εναλλαγή στη λειτουÏγία εισαγωγής κειμÎνου</string> + <string name="mtrl_picker_toggle_to_year_selection">Πατήστε για εναλλαγή για την επιλογή Îτους</string> + <string name="mtrl_timepicker_cancel">ΑκÏÏωση</string> + <string name="mtrl_timepicker_confirm">ΟΚ</string> + <string name="password_toggle_content_description">Εμφάνιση ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-en-rGB/values-en-rGB.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..69af29b30d3b3bb38453d97c6a9c25eac9bb11e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d new notification</item> + <item quantity="other">%d new notifications</item> + </plurals> + <string name="bottomsheet_action_collapse">Collapse the bottom sheet</string> + <string name="bottomsheet_action_expand">Expand the bottom sheet</string> + <string name="bottomsheet_action_expand_halfway">Expand halfway</string> + <string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string> + <string name="bottomsheet_drag_handle_content_description">Drag handle</string> + <string name="character_counter_content_description">Characters entered %1$d of %2$d</string> + <string name="character_counter_overflowed_content_description">Character limit exceeded %1$d of %2$d</string> + <string name="clear_text_end_icon_content_description">Clear text</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Show drop-down menu</string> + <string name="icon_content_description">Dialogue Icon</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Select a.m. or p.m.</string> + <string name="material_hour_24h_suffix">%1$s hours</string> + <string name="material_hour_selection">Select hour</string> + <string name="material_hour_suffix">%1$s o\'clock</string> + <string name="material_minute_selection">Select minutes</string> + <string name="material_minute_suffix">%1$s minutes</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Switch to clock mode for the time input.</string> + <string name="material_timepicker_hour">Hour</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Select time</string> + <string name="material_timepicker_text_input_mode_description">Switch to text input mode for the time input.</string> + <string name="mtrl_badge_numberless_content_description">New notification</string> + <string name="mtrl_chip_close_icon_content_description">Remove %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">More than %1$d new notifications</string> + <string name="mtrl_picker_a11y_next_month">Change to next month</string> + <string name="mtrl_picker_a11y_prev_month">Change to previous month</string> + <string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string> + <string name="mtrl_picker_cancel">Cancel</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Select date</string> + <string name="mtrl_picker_date_header_unselected">Selected date</string> + <string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string> + <string name="mtrl_picker_invalid_format">Invalid format.</string> + <string name="mtrl_picker_invalid_format_example">Example: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Use: %1$s</string> + <string name="mtrl_picker_invalid_range">Invalid range.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$s</string> + <string name="mtrl_picker_out_of_range">Out of range: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Start date – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – End date</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Select range</string> + <string name="mtrl_picker_range_header_unselected">Start date – End date</string> + <string name="mtrl_picker_save">Save</string> + <string name="mtrl_picker_text_input_date_hint">Date</string> + <string name="mtrl_picker_text_input_date_range_end_hint">End date</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Start date</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string> + <string name="mtrl_picker_toggle_to_day_selection">Tap to switch to selecting a day</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string> + <string name="mtrl_picker_toggle_to_year_selection">Tap to switch to selecting a year</string> + <string name="mtrl_timepicker_cancel">Cancel</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Show password</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es-rUS/values-es-rUS.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..127481067888f66690608bb7c418594d77352db0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificación nueva</item> + <item quantity="other">%d notificaciones nuevas</item> + </plurals> + <string name="bottomsheet_action_collapse">Contraer la hoja inferior</string> + <string name="bottomsheet_action_expand">Expandir la hoja inferior</string> + <string name="bottomsheet_action_expand_halfway">Expandir hasta la mitad</string> + <string name="bottomsheet_drag_handle_clicked">El control de arrastre se presionó dos veces</string> + <string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string> + <string name="character_counter_content_description">Caracteres ingresados: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">Se excedió en %1$d el lÃmite de caracteres de %2$d</string> + <string name="clear_text_end_icon_content_description">Borrar texto</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string> + <string name="icon_content_description">Ãcono de diálogo</string> + <string name="item_view_role_description">Pestaña</string> + <string name="material_clock_toggle_content_description">Selecciona a.m. o p.m.</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Seleccione la hora.</string> + <string name="material_hour_suffix">%1$s en punto</string> + <string name="material_minute_selection">Seleccionar minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">a.m.</string> + <string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para ingresar la hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">p.m.</string> + <string name="material_timepicker_select_time">Seleccionar la hora</string> + <string name="material_timepicker_text_input_mode_description">Cambia al modo de entrada de texto para ingresar la hora.</string> + <string name="mtrl_badge_numberless_content_description">Notificación nueva</string> + <string name="mtrl_chip_close_icon_content_description">Quitar %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string> + <string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string> + <string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string> + <string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">Aceptar</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Seleccionar fecha</string> + <string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string> + <string name="mtrl_picker_day_of_week_column_header">Columna de dÃas: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato no válido</string> + <string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usar: %1$s</string> + <string name="mtrl_picker_invalid_range">El rango no es válido.</string> + <string name="mtrl_picker_navigate_to_year_description">Navegar al año %1$s</string> + <string name="mtrl_picker_out_of_range">Fuera de rango: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - fecha de finalización</string> + <string name="mtrl_picker_range_header_selected">%1$s-%2$s</string> + <string name="mtrl_picker_range_header_title">Selecciona un perÃodo</string> + <string name="mtrl_picker_range_header_unselected">Fecha de inicio - fecha de finalización</string> + <string name="mtrl_picker_save">Guardar</string> + <string name="mtrl_picker_text_input_date_hint">Fecha</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de entrada de calendario</string> + <string name="mtrl_picker_toggle_to_day_selection">Presiona para seleccionar un dÃa</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de entrada de texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Presiona para seleccionar un año</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">Aceptar</string> + <string name="password_toggle_content_description">Mostrar contraseña</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es/values-es.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..d29d93e961aca197d673cb15d7078f05744ccbc9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-es/values-es.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificación nueva</item> + <item quantity="other">%d notificaciones nuevas</item> + </plurals> + <string name="bottomsheet_action_collapse">Ocultar la hoja inferior</string> + <string name="bottomsheet_action_expand">Mostrar la hoja inferior</string> + <string name="bottomsheet_action_expand_halfway">Desplegar hasta la mitad</string> + <string name="bottomsheet_drag_handle_clicked">Controlador de arrastre tocado dos veces</string> + <string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string> + <string name="character_counter_content_description">Caracteres introducidos: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">LÃmite de caracteres superado (%1$d de %2$d)</string> + <string name="clear_text_end_icon_content_description">Borrar texto</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string> + <string name="icon_content_description">Icono del cuadro de diálogo</string> + <string name="item_view_role_description">Pestaña</string> + <string name="material_clock_toggle_content_description">Selecciona AM o PM</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Seleccionar hora</string> + <string name="material_hour_suffix">%1$s en punto</string> + <string name="material_minute_selection">Seleccionar minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">A.M.</string> + <string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para escribir la hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">P.M.</string> + <string name="material_timepicker_select_time">Seleccionar la hora</string> + <string name="material_timepicker_text_input_mode_description">Cambia al modo de introducción de texto para escribir la hora.</string> + <string name="mtrl_badge_numberless_content_description">Notificación nueva</string> + <string name="mtrl_chip_close_icon_content_description">Retirar %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string> + <string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string> + <string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string> + <string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">Aceptar</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecciona una fecha</string> + <string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string> + <string name="mtrl_picker_day_of_week_column_header">Columna de dÃas: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato no válido.</string> + <string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usar: %1$s</string> + <string name="mtrl_picker_invalid_range">El periodo no es válido.</string> + <string name="mtrl_picker_navigate_to_year_description">Ir al año %1$s</string> + <string name="mtrl_picker_out_of_range">Fuera del periodo válido: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio–%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s–Fecha de finalización</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Selecciona un periodo</string> + <string name="mtrl_picker_range_header_unselected">Fecha de inicio–Fecha de finalización</string> + <string name="mtrl_picker_save">Guardar</string> + <string name="mtrl_picker_text_input_date_hint">Fecha</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de introducción Calendario</string> + <string name="mtrl_picker_toggle_to_day_selection">Toca para seleccionar un dÃa</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de introducción Texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Toca para seleccionar un año</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">Aceptar</string> + <string name="password_toggle_content_description">Mostrar contraseña</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-et/values-et.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..d5dac7a79820d5519bd66917debd859d51a77458 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-et/values-et.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d uus märguanne</item> + <item quantity="other">%d uut märguannet</item> + </plurals> + <string name="bottomsheet_action_collapse">Alumise lehe ahendamine</string> + <string name="bottomsheet_action_expand">Alumise lehe laiendamine</string> + <string name="bottomsheet_action_expand_halfway">Laiendamine poolenisti</string> + <string name="bottomsheet_drag_handle_clicked">Lohistamispidet topeltpuudutati</string> + <string name="bottomsheet_drag_handle_content_description">Lohistamispide</string> + <string name="character_counter_content_description">Sisestatud tähemärgid: %1$d/%2$d</string> + <string name="character_counter_overflowed_content_description">Tähemärgipiirang on ületatud: %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Kustuta tekst</string> + <string name="error_icon_content_description">Viga</string> + <string name="exposed_dropdown_menu_content_description">Kuva rippmenüü</string> + <string name="icon_content_description">Dialoogi ikoon</string> + <string name="item_view_role_description">Vaheleht</string> + <string name="material_clock_toggle_content_description">Valige AM või PM</string> + <string name="material_hour_24h_suffix">%1$s tundi</string> + <string name="material_hour_selection">Valige tund</string> + <string name="material_hour_suffix">Kell %1$s</string> + <string name="material_minute_selection">Minutite valimine</string> + <string name="material_minute_suffix">%1$s minutit</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Aktiveerige kellaaja sisestamiseks kellarežiim.</string> + <string name="material_timepicker_hour">Tunnid</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Aja valimine</string> + <string name="material_timepicker_text_input_mode_description">Aktiveerige kellaaja sisestamiseks tekstisisestusrežiim.</string> + <string name="mtrl_badge_numberless_content_description">Uus märguanne</string> + <string name="mtrl_chip_close_icon_content_description">Üksuse %1$s eemaldamine</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Rohkem kui %1$d uut märguannet</string> + <string name="mtrl_picker_a11y_next_month">Vaheta järgmisele kuule</string> + <string name="mtrl_picker_a11y_prev_month">Vaheta eelmisele kuule</string> + <string name="mtrl_picker_announce_current_selection">Praegune valik: %1$s</string> + <string name="mtrl_picker_cancel">Tühista</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Valige kuupäev</string> + <string name="mtrl_picker_date_header_unselected">Valitud kuupäev</string> + <string name="mtrl_picker_day_of_week_column_header">Päevade veerg: %1$s</string> + <string name="mtrl_picker_invalid_format">Sobimatu vorming.</string> + <string name="mtrl_picker_invalid_format_example">Näide: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Kasutage: %1$s</string> + <string name="mtrl_picker_invalid_range">Sobimatu vahemik.</string> + <string name="mtrl_picker_navigate_to_year_description">Mine aastasse %1$s</string> + <string name="mtrl_picker_out_of_range">Vahemikust väljas: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Alguskuupäev – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – lõppkuupäev</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Valige vahemik</string> + <string name="mtrl_picker_range_header_unselected">Alguskuupäev – lõppkuupäev</string> + <string name="mtrl_picker_save">Salvesta</string> + <string name="mtrl_picker_text_input_date_hint">Kuupäev</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Lõppkuupäev</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Alguskuupäev</string> + <string name="mtrl_picker_text_input_day_abbr">p</string> + <string name="mtrl_picker_text_input_month_abbr">k</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Lülitu kalendrisisestusrežiimile</string> + <string name="mtrl_picker_toggle_to_day_selection">Puudutage, et lülituda päeva valimisele</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Lülitu tekstisisestusrežiimile</string> + <string name="mtrl_picker_toggle_to_year_selection">Puudutage, et lülituda aasta valimisele</string> + <string name="mtrl_timepicker_cancel">Tühista</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Parooli kuvamine</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-eu/values-eu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..89908285d16fc8f95843073581829d56fa2c2a53 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-eu/values-eu.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d jakinarazpen berri</item> + <item quantity="other">%d jakinarazpen berri</item> + </plurals> + <string name="bottomsheet_action_collapse">Tolestu pantailaren behealdean ainguratutako orria</string> + <string name="bottomsheet_action_expand">Zabaldu pantailaren behealdean ainguratutako orria</string> + <string name="bottomsheet_action_expand_halfway">Zabaldu erdiraino</string> + <string name="bottomsheet_drag_handle_clicked">Birritan sakatu da arrastatzeko kontrol-puntua</string> + <string name="bottomsheet_drag_handle_content_description">Arrastatzeko kontrol-puntua</string> + <string name="character_counter_content_description">%1$d/%2$d karaktere idatzi dira</string> + <string name="character_counter_overflowed_content_description">Karaktere-muga gainditu da: %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Garbitu testua</string> + <string name="error_icon_content_description">Errorea</string> + <string name="exposed_dropdown_menu_content_description">Erakutsi goitibeherako menua</string> + <string name="icon_content_description">Leihoko ikonoa</string> + <string name="item_view_role_description">Fitxa</string> + <string name="material_clock_toggle_content_description">Hautatu AM edo PM</string> + <string name="material_hour_24h_suffix">%1$s ordu</string> + <string name="material_hour_selection">Hautatu ordua</string> + <string name="material_hour_suffix">%1$s(r)ak dira</string> + <string name="material_minute_selection">Hautatu minutuak</string> + <string name="material_minute_suffix">%1$s minutu</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Aldatu erloju modura ordua zehazteko.</string> + <string name="material_timepicker_hour">Ordua</string> + <string name="material_timepicker_minute">Minutua</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Hautatu ordua</string> + <string name="material_timepicker_text_input_mode_description">Ordua idazteko, aldatu testua idazteko metodora.</string> + <string name="mtrl_badge_numberless_content_description">Jakinarazpen berria</string> + <string name="mtrl_chip_close_icon_content_description">Kendu %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d jakinarazpen berri baino gehiago</string> + <string name="mtrl_picker_a11y_next_month">Aldatu hurrengo hilabetera</string> + <string name="mtrl_picker_a11y_prev_month">Aldatu aurreko hilabetera</string> + <string name="mtrl_picker_announce_current_selection">Oraingo hautapena: %1$s</string> + <string name="mtrl_picker_cancel">Utzi</string> + <string name="mtrl_picker_confirm">Ados</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Hautatu data</string> + <string name="mtrl_picker_date_header_unselected">Hautatutako data</string> + <string name="mtrl_picker_day_of_week_column_header">Egunen zutabea:%1$s</string> + <string name="mtrl_picker_invalid_format">Formatuak ez du balio.</string> + <string name="mtrl_picker_invalid_format_example">Adibidea: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Erabili: %1$s</string> + <string name="mtrl_picker_invalid_range">Tarteak ez du balio.</string> + <string name="mtrl_picker_navigate_to_year_description">Joan %1$s. urtera</string> + <string name="mtrl_picker_out_of_range">Onartutako barrutitik kanpo: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Hasiera-data – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Amaiera-data</string> + <string name="mtrl_picker_range_header_selected">%1$s-%2$s</string> + <string name="mtrl_picker_range_header_title">Hautatu barrutia</string> + <string name="mtrl_picker_range_header_unselected">Hasiera-data - Amaiera-data</string> + <string name="mtrl_picker_save">Gorde</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Amaiera-data</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Hasiera-data</string> + <string name="mtrl_picker_text_input_day_abbr">e</string> + <string name="mtrl_picker_text_input_month_abbr">h</string> + <string name="mtrl_picker_text_input_year_abbr">u</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Aldatu egutegiaren idazketa-metodora</string> + <string name="mtrl_picker_toggle_to_day_selection">Sakatu eguna hautatzeko modura aldatzeko</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Aldatu testua idazteko modura</string> + <string name="mtrl_picker_toggle_to_year_selection">Sakatu urtea hautatzeko modura aldatzeko</string> + <string name="mtrl_timepicker_cancel">Utzi</string> + <string name="mtrl_timepicker_confirm">Ados</string> + <string name="password_toggle_content_description">Erakutsi pasahitza</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fa/values-fa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ed063ecfb64a2e7cd744620c2618036969e9d01 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fa/values-fa.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d اعلان جدید</item> + <item quantity="other">%d اعلان جدید</item> + </plurals> + <string name="bottomsheet_action_collapse">جمع کردن برگ زیرین</string> + <string name="bottomsheet_action_expand">ازهم بازکردن برگ زیرین</string> + <string name="bottomsheet_action_expand_halfway">گسترده کردن تا نیمه</string> + <string name="bottomsheet_drag_handle_clicked">روی دستگیره کشاندن دوضربه زده شد</string> + <string name="bottomsheet_drag_handle_content_description">دستگیره کشاندن</string> + <string name="character_counter_content_description">نویسه‌های واردشده %1$d از %2$d</string> + <string name="character_counter_overflowed_content_description">Ù…ØØ¯ÙˆØ¯ÛŒØª نویسه از ØØ¯ مجاز %1$d از %2$d بیشتر شده است</string> + <string name="clear_text_end_icon_content_description">پاک کردن نوشتار</string> + <string name="error_icon_content_description">خطا</string> + <string name="exposed_dropdown_menu_content_description">نمایش منوی کرکره‌ای</string> + <string name="icon_content_description">نماد کادر Ú¯ÙØªÚ¯Ùˆ</string> + <string name="item_view_role_description">برگه</string> + <string name="material_clock_toggle_content_description">انتخاب .Ù‚.ظ. یا ب.ظ.</string> + <string name="material_hour_24h_suffix">%1$s ساعت</string> + <string name="material_hour_selection">انتخاب ساعت</string> + <string name="material_hour_suffix">ساعت %1$s</string> + <string name="material_minute_selection">انتخاب دقیقه</string> + <string name="material_minute_suffix">%1$s دقیقه</string> + <string name="material_timepicker_am">Ù‚.ظ</string> + <string name="material_timepicker_clock_mode_description">برای وارد کردن زمان، به ØØ§Ù„ت ساعت تغییر وضعیت دهید.</string> + <string name="material_timepicker_hour">ساعت</string> + <string name="material_timepicker_minute">دقیقه</string> + <string name="material_timepicker_pm">ب.ظ</string> + <string name="material_timepicker_select_time">انتخاب زمان</string> + <string name="material_timepicker_text_input_mode_description">برای وارد کردن زمان، به ØØ§Ù„ت ورودی نوشتاری تغییر وضعیت دهید.</string> + <string name="mtrl_badge_numberless_content_description">اعلان جدید</string> + <string name="mtrl_chip_close_icon_content_description">برداشتن %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">بیش از %1$d اعلان جدید</string> + <string name="mtrl_picker_a11y_next_month">تغییر به ماه بعدی</string> + <string name="mtrl_picker_a11y_prev_month">تغییر به ماه قبلی</string> + <string name="mtrl_picker_announce_current_selection">انتخاب کنونی: %1$s</string> + <string name="mtrl_picker_cancel">لغو</string> + <string name="mtrl_picker_confirm">تأیید</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">انتخاب تاریخ</string> + <string name="mtrl_picker_date_header_unselected">تاریخ انتخابی</string> + <string name="mtrl_picker_day_of_week_column_header">ستون روز: %1$s</string> + <string name="mtrl_picker_invalid_format">قالب نامعتبر است.</string> + <string name="mtrl_picker_invalid_format_example">مثال: %1$s</string> + <string name="mtrl_picker_invalid_format_use">قالب: %1$s</string> + <string name="mtrl_picker_invalid_range">Ù…ØØ¯ÙˆØ¯Ù‡ نامعتبر است.</string> + <string name="mtrl_picker_navigate_to_year_description">Ø±ÙØªÙ† به سال %1$s</string> + <string name="mtrl_picker_out_of_range">خارج از Ù…ØØ¯ÙˆØ¯Ù‡: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">تاریخ شروع – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – تاریخ پایان</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">انتخاب Ù…ØØ¯ÙˆØ¯Ù‡</string> + <string name="mtrl_picker_range_header_unselected">تاریخ شروع – تاریخ پایان</string> + <string name="mtrl_picker_save">ذخیره</string> + <string name="mtrl_picker_text_input_date_hint">تاریخ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">تاریخ پایان</string> + <string name="mtrl_picker_text_input_date_range_start_hint">تاریخ شروع</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Ø±ÙØªÙ† به روش ورودی تقویم</string> + <string name="mtrl_picker_toggle_to_day_selection">Ø±ÙØªÙ† به Ø±ÙØªÙ† به ØØ§Ù„ت انتخاب روز ضربه بزنید</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Ø±ÙØªÙ† به ØØ§Ù„ت ورودی نوشتاری</string> + <string name="mtrl_picker_toggle_to_year_selection">برای Ø±ÙØªÙ† به ØØ§Ù„ت انتخاب سال ضربه بزنید</string> + <string name="mtrl_timepicker_cancel">لغو</string> + <string name="mtrl_timepicker_confirm">تأیید</string> + <string name="password_toggle_content_description">نمایش گذرواژه</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fi/values-fi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1121c883c86cf4fc49e8f3e943dd6f2af4787c9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fi/values-fi.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d uusi ilmoitus</item> + <item quantity="other">%d uutta ilmoitusta</item> + </plurals> + <string name="bottomsheet_action_collapse">Tiivistä alapaneeli</string> + <string name="bottomsheet_action_expand">Laajenna alapaneeli</string> + <string name="bottomsheet_action_expand_halfway">Laajenna puoliväliin</string> + <string name="bottomsheet_drag_handle_clicked">Vetokahvaa kaksoisnapautettu</string> + <string name="bottomsheet_drag_handle_content_description">Vetokahva</string> + <string name="character_counter_content_description">%1$d/%2$d merkkiä kirjoitettu</string> + <string name="character_counter_overflowed_content_description">Merkkiraja ylitetty: %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Tyhjennä teksti</string> + <string name="error_icon_content_description">Virhe</string> + <string name="exposed_dropdown_menu_content_description">Näytä avattava valikko</string> + <string name="icon_content_description">Valintaikkunan kuvake</string> + <string name="item_view_role_description">Välilehti</string> + <string name="material_clock_toggle_content_description">Valitse AP tai IP</string> + <string name="material_hour_24h_suffix">%1$s tuntia</string> + <string name="material_hour_selection">Valitse tunti</string> + <string name="material_hour_suffix">klo %1$s</string> + <string name="material_minute_selection">Valitse minuutit</string> + <string name="material_minute_suffix">%1$s minuuttia</string> + <string name="material_timepicker_am">ap</string> + <string name="material_timepicker_clock_mode_description">Vaihda ajan syöttämiseen kellotilassa.</string> + <string name="material_timepicker_hour">Tunnit</string> + <string name="material_timepicker_minute">Minuutti</string> + <string name="material_timepicker_pm">ip</string> + <string name="material_timepicker_select_time">Valitse aika</string> + <string name="material_timepicker_text_input_mode_description">Vaihda ajan syöttämiseen tekstitilassa.</string> + <string name="mtrl_badge_numberless_content_description">Uusi ilmoitus</string> + <string name="mtrl_chip_close_icon_content_description">Poista %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Yli %1$d uutta ilmoitusta</string> + <string name="mtrl_picker_a11y_next_month">Vaihda seuraavaan kuukauteen</string> + <string name="mtrl_picker_a11y_prev_month">Vaihda edelliseen kuukauteen</string> + <string name="mtrl_picker_announce_current_selection">Nykyinen valinta: %1$s</string> + <string name="mtrl_picker_cancel">Peru</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Valitse päivämäärä</string> + <string name="mtrl_picker_date_header_unselected">Valittu päivämäärä</string> + <string name="mtrl_picker_day_of_week_column_header">Päiväsarake: %1$s</string> + <string name="mtrl_picker_invalid_format">Virheellinen muoto</string> + <string name="mtrl_picker_invalid_format_example">Esimerkki: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Käytä muotoa %1$s</string> + <string name="mtrl_picker_invalid_range">Virheellinen alue</string> + <string name="mtrl_picker_navigate_to_year_description">Siirry vuoteen %1$s</string> + <string name="mtrl_picker_out_of_range">Aikavälin ulkop.: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Alkamispäivä – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – päättymispäivä</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Valitse jakso</string> + <string name="mtrl_picker_range_header_unselected">Alkamispäivä – päättymispäivä</string> + <string name="mtrl_picker_save">Tallenna</string> + <string name="mtrl_picker_text_input_date_hint">Päivämäärä</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Päättymispäivä</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Alkamispäivä</string> + <string name="mtrl_picker_text_input_day_abbr">p</string> + <string name="mtrl_picker_text_input_month_abbr">k</string> + <string name="mtrl_picker_text_input_year_abbr">v</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Vaihda syöttötavaksi kalenteri</string> + <string name="mtrl_picker_toggle_to_day_selection">Siirry päivän valintaan napauttamalla</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Valitse syöttötavaksi teksti</string> + <string name="mtrl_picker_toggle_to_year_selection">Siirry vuoden valintaan napauttamalla</string> + <string name="mtrl_timepicker_cancel">Peru</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Näytä salasana</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr-rCA/values-fr-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..6cb7811d2f011586a66ac6460096e2250175ef83 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nouvelle notification</item> + <item quantity="other">%d nouvelles notifications</item> + </plurals> + <string name="bottomsheet_action_collapse">Réduire la zone de contenu dans le bas de l\'écran</string> + <string name="bottomsheet_action_expand">Développer la zone de contenu dans le bas de l\'écran</string> + <string name="bottomsheet_action_expand_halfway">Développer à moitié</string> + <string name="bottomsheet_drag_handle_clicked">Poignée de déplacement touchée deux fois</string> + <string name="bottomsheet_drag_handle_content_description">Faire glisser la poignée</string> + <string name="character_counter_content_description">Caractères entrés : %1$d sur %2$d</string> + <string name="character_counter_overflowed_content_description">Limite de caractère dépassée : %1$d sur %2$d</string> + <string name="clear_text_end_icon_content_description">Effacer le texte</string> + <string name="error_icon_content_description">Erreur</string> + <string name="exposed_dropdown_menu_content_description">Afficher le menu déroulant</string> + <string name="icon_content_description">Icône de boîte de dialogue</string> + <string name="item_view_role_description">Onglet</string> + <string name="material_clock_toggle_content_description">Sélectionner AM ou PM</string> + <string name="material_hour_24h_suffix">%1$s heure(s)</string> + <string name="material_hour_selection">Sélectionner l\'heure</string> + <string name="material_hour_suffix">%1$s heures</string> + <string name="material_minute_selection">Sélectionnez les minutes</string> + <string name="material_minute_suffix">%1$s minutes</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Passer au mode Horloge pour entrer l\'heure.</string> + <string name="material_timepicker_hour">Heure</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Sélectionner l\'heure</string> + <string name="material_timepicker_text_input_mode_description">Passer au mode Entrée de texte pour entrer l\'heure.</string> + <string name="mtrl_badge_numberless_content_description">Nouvelle notification</string> + <string name="mtrl_chip_close_icon_content_description">Supprimer %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Plus de %1$d nouvelles notifications</string> + <string name="mtrl_picker_a11y_next_month">Passer au mois suivant</string> + <string name="mtrl_picker_a11y_prev_month">Passer au mois précédent</string> + <string name="mtrl_picker_announce_current_selection">Sélection actuelle : %1$s</string> + <string name="mtrl_picker_cancel">Annuler</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Sélectionnez la date</string> + <string name="mtrl_picker_date_header_unselected">Date sélectionnée</string> + <string name="mtrl_picker_day_of_week_column_header">Colonne des jours : %1$s</string> + <string name="mtrl_picker_invalid_format">Format incorrect</string> + <string name="mtrl_picker_invalid_format_example">Exemple : %1$s</string> + <string name="mtrl_picker_invalid_format_use">Utiliser : %1$s</string> + <string name="mtrl_picker_invalid_range">Plage incorrecte.</string> + <string name="mtrl_picker_navigate_to_year_description">Naviguer vers l\'année %1$s</string> + <string name="mtrl_picker_out_of_range">Hors de la plage : %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Du (date de début) au %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">Du %1$s au (date de fin)</string> + <string name="mtrl_picker_range_header_selected">Du %1$s au %2$s</string> + <string name="mtrl_picker_range_header_title">Sélectionnez la plage</string> + <string name="mtrl_picker_range_header_unselected">Du (date de début) au (date de fin)</string> + <string name="mtrl_picker_save">Enregistrer</string> + <string name="mtrl_picker_text_input_date_hint">Date</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Date de fin</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Date de début</string> + <string name="mtrl_picker_text_input_day_abbr">j</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Passer au mode d\'entrée Agenda</string> + <string name="mtrl_picker_toggle_to_day_selection">Touchez pour passer à la sélection de jour</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Passer au mode d\'entrée Texte</string> + <string name="mtrl_picker_toggle_to_year_selection">Touchez pour passer à la sélection d\'année</string> + <string name="mtrl_timepicker_cancel">Annuler</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Afficher le mot de passe</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr/values-fr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..6960a35346a066751e1b90d9bfb258792b3ee142 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-fr/values-fr.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nouvelle notification</item> + <item quantity="other">%d nouvelles notifications</item> + </plurals> + <string name="bottomsheet_action_collapse">Réduire la bottom sheet</string> + <string name="bottomsheet_action_expand">Développer la bottom sheet</string> + <string name="bottomsheet_action_expand_halfway">Développer en entier</string> + <string name="bottomsheet_drag_handle_clicked">A appuyé deux fois sur la poignée de déplacement</string> + <string name="bottomsheet_drag_handle_content_description">Poignée de déplacement</string> + <string name="character_counter_content_description">Caractères saisis %1$d sur %2$d</string> + <string name="character_counter_overflowed_content_description">Nombre maximal de caractères dépassé : %1$d sur %2$d</string> + <string name="clear_text_end_icon_content_description">Effacer le texte</string> + <string name="error_icon_content_description">Erreur</string> + <string name="exposed_dropdown_menu_content_description">Afficher le menu déroulant</string> + <string name="icon_content_description">Icône de la boîte de dialogue</string> + <string name="item_view_role_description">Tabulation</string> + <string name="material_clock_toggle_content_description">Sélectionner le format AM ou PM</string> + <string name="material_hour_24h_suffix">%1$s heures</string> + <string name="material_hour_selection">Sélectionnez une heure</string> + <string name="material_hour_suffix">%1$s h</string> + <string name="material_minute_selection">Sélectionner des minutes</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Passer en mode horloge pour la saisie de l\'heure.</string> + <string name="material_timepicker_hour">Heure</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Sélectionner l\'heure</string> + <string name="material_timepicker_text_input_mode_description">Passer en mode saisie de texte pour la saisie de l\'heure.</string> + <string name="mtrl_badge_numberless_content_description">Nouvelle notification</string> + <string name="mtrl_chip_close_icon_content_description">Supprimer %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Plus de %1$d nouvelles notifications</string> + <string name="mtrl_picker_a11y_next_month">Passer au mois suivant</string> + <string name="mtrl_picker_a11y_prev_month">Passer au mois précédent</string> + <string name="mtrl_picker_announce_current_selection">Sélection actuelle : %1$s</string> + <string name="mtrl_picker_cancel">Annuler</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Sélectionnez une date</string> + <string name="mtrl_picker_date_header_unselected">Date sélectionnée</string> + <string name="mtrl_picker_day_of_week_column_header">Colonne du jour de la semaine : %1$s</string> + <string name="mtrl_picker_invalid_format">Format incorrect.</string> + <string name="mtrl_picker_invalid_format_example">Exemple : %1$s</string> + <string name="mtrl_picker_invalid_format_use">Utiliser %1$s</string> + <string name="mtrl_picker_invalid_range">Plage non valide.</string> + <string name="mtrl_picker_navigate_to_year_description">Accéder à l\'année %1$s</string> + <string name="mtrl_picker_out_of_range">Hors limite : %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Date de début – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Date de fin</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Sélectionnez une période</string> + <string name="mtrl_picker_range_header_unselected">Date de début – Date de fin</string> + <string name="mtrl_picker_save">Enregistrer</string> + <string name="mtrl_picker_text_input_date_hint">Date</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Date de fin</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Date de début</string> + <string name="mtrl_picker_text_input_day_abbr">j</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Passer au mode de saisie Agenda</string> + <string name="mtrl_picker_toggle_to_day_selection">Appuyer pour sélectionner un jour</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Passer au mode de saisie Texte</string> + <string name="mtrl_picker_toggle_to_year_selection">Appuyer pour sélectionner une année</string> + <string name="mtrl_timepicker_cancel">Annuler</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Afficher le mot de passe</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gl/values-gl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..53224e792acf488b9e8ff1e733c402ec413655a0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gl/values-gl.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificación nova</item> + <item quantity="other">%d notificacións novas</item> + </plurals> + <string name="bottomsheet_action_collapse">Contrae o panel inferior</string> + <string name="bottomsheet_action_expand">Desprega o panel inferior</string> + <string name="bottomsheet_action_expand_halfway">Despregar ata a metade</string> + <string name="bottomsheet_drag_handle_clicked">Controlador de arrastre tocado dúas veces</string> + <string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string> + <string name="character_counter_content_description">IntroducÃronse %1$d caracteres de %2$d</string> + <string name="character_counter_overflowed_content_description">IntroducÃronse %1$d caracteres, pero o lÃmite é de %2$d</string> + <string name="clear_text_end_icon_content_description">Borra texto</string> + <string name="error_icon_content_description">Produciuse un erro</string> + <string name="exposed_dropdown_menu_content_description">Mostra o menú despregable</string> + <string name="icon_content_description">Icona de cadro de diálogo</string> + <string name="item_view_role_description">Pestana</string> + <string name="material_clock_toggle_content_description">Seleccionar a.m. ou p.m.</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Seleccionar hora</string> + <string name="material_hour_suffix">%1$s en punto</string> + <string name="material_minute_selection">Seleccionar minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">a.m.</string> + <string name="material_timepicker_clock_mode_description">Cambiar ao modo de reloxo para introducir a hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">p.m.</string> + <string name="material_timepicker_select_time">Seleccionar hora</string> + <string name="material_timepicker_text_input_mode_description">Cambia ao modo de introdución de texto para introducir a hora.</string> + <string name="mtrl_badge_numberless_content_description">Notificación nova</string> + <string name="mtrl_chip_close_icon_content_description">Quita %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Máis de %1$d notificacións novas</string> + <string name="mtrl_picker_a11y_next_month">Cambiar ao mes seguinte</string> + <string name="mtrl_picker_a11y_prev_month">Cambiar ao mes anterior</string> + <string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">Aceptar</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecciona unha data</string> + <string name="mtrl_picker_date_header_unselected">Data seleccionada</string> + <string name="mtrl_picker_day_of_week_column_header">Columna de dÃas: %1$s</string> + <string name="mtrl_picker_invalid_format">O formato non é válido.</string> + <string name="mtrl_picker_invalid_format_example">Exemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usa este formato: %1$s</string> + <string name="mtrl_picker_invalid_range">O intervalo de datas non é válido.</string> + <string name="mtrl_picker_navigate_to_year_description">Ir ao ano %1$s</string> + <string name="mtrl_picker_out_of_range">Só se admiten datas do intervalo: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data de inicio - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - data de finalización</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Selecciona un intervalo de datas</string> + <string name="mtrl_picker_range_header_unselected">Data de inicio - data de finalización</string> + <string name="mtrl_picker_save">Gardar</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data de finalización</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data de inicio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar ao modo de entrada de calendario</string> + <string name="mtrl_picker_toggle_to_day_selection">Tocar para cambiar a selección de dÃa</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Cambiar ao modo de introdución de texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Tocar para cambiar a selección de ano</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">Aceptar</string> + <string name="password_toggle_content_description">Mostra o contrasinal</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gu/values-gu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..3853b00eb4b8abb67969d29d2de3a35fb1bff1df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-gu/values-gu.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d નવà«àª‚ નોટિફિકેશન</item> + <item quantity="other">%d નવા નોટિફિકેશન</item> + </plurals> + <string name="bottomsheet_action_collapse">બોટમ શીટ નાની કરો</string> + <string name="bottomsheet_action_expand">બોટમ શીટ મોટી કરો</string> + <string name="bottomsheet_action_expand_halfway">અડધે સà«àª§à«€ મોટà«àª‚ કરો</string> + <string name="bottomsheet_drag_handle_clicked">ઑબà«àªœà«‡àª•à«àªŸ ખેંચવાના હૅનà«àª¡àª² પર બે વાર ટૅપ કરà«àª¯à«àª‚</string> + <string name="bottomsheet_drag_handle_content_description">ઑબà«àªœà«‡àª•à«àªŸ ખેંચવાનà«àª‚ હૅનà«àª¡àª²</string> + <string name="character_counter_content_description">%2$dમાંથી %1$d અકà«àª·àª°à«‹ દાખલ કરà«àª¯àª¾</string> + <string name="character_counter_overflowed_content_description">%2$dમાંથી %1$dની વરà«àª£ મરà«àª¯àª¾àª¦àª¾ ઓળંગાઈ ગઈ છે</string> + <string name="clear_text_end_icon_content_description">ટેકà«àª¸à«àªŸ સાફ કરો</string> + <string name="error_icon_content_description">àªà«‚લ</string> + <string name="exposed_dropdown_menu_content_description">ડà«àª°à«‰àªªàª¡àª¾àª‰àª¨ મેનૂ બતાવો</string> + <string name="icon_content_description">સંવાદનà«àª‚ આઇકન</string> + <string name="item_view_role_description">ટૅબ</string> + <string name="material_clock_toggle_content_description">AM અથવા PM પસંદ કરો</string> + <string name="material_hour_24h_suffix">%1$s કલાક</string> + <string name="material_hour_selection">સમય પસંદ કરો</string> + <string name="material_hour_suffix">%1$s વાગà«àª¯àª¾ છે</string> + <string name="material_minute_selection">મિનિટ પસંદ કરો</string> + <string name="material_minute_suffix">%1$s મિનિટ</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">સમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સà«àªµàª¿àªš કરો.</string> + <string name="material_timepicker_hour">કલાક</string> + <string name="material_timepicker_minute">મિનિટ</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">સમય પસંદ કરો</string> + <string name="material_timepicker_text_input_mode_description">સમય દાખલ કરવા માટે ટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડમાં સà«àªµàª¿àªš કરો.</string> + <string name="mtrl_badge_numberless_content_description">નવà«àª‚ નોટિફિકેશન</string> + <string name="mtrl_chip_close_icon_content_description">%1$s કાઢી નાખો</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$dથી વધૠનવા નોટિફિકેશન</string> + <string name="mtrl_picker_a11y_next_month">આગલા મહિના પર બદલો</string> + <string name="mtrl_picker_a11y_prev_month">પાછલા મહિના પર બદલો</string> + <string name="mtrl_picker_announce_current_selection">હાલની પસંદગી: %1$s</string> + <string name="mtrl_picker_cancel">રદ કરો</string> + <string name="mtrl_picker_confirm">ઓકે</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">તારીખ પસંદ કરો</string> + <string name="mtrl_picker_date_header_unselected">પસંદ કરેલી તારીખ</string> + <string name="mtrl_picker_day_of_week_column_header">દિવસોની કૉલમ: %1$s</string> + <string name="mtrl_picker_invalid_format">અમાનà«àª¯ ફોરà«àª®à«‡àªŸ.</string> + <string name="mtrl_picker_invalid_format_example">ઉદાહરણ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">આનો ઉપયોગ કરો: %1$s</string> + <string name="mtrl_picker_invalid_range">અમાનà«àª¯ શà«àª°à«‡àª£à«€.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$sના વરà«àª· પર નૅવિગેટ કરો</string> + <string name="mtrl_picker_out_of_range">આ શà«àª°à«‡àª£à«€àª¨à«€ બહાર છે: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">શરૂ કરવાની તારીખ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – સમાપà«àª¤àª¿àª¨à«€ તારીખ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">શà«àª°à«‡àª£à«€ પસંદ કરો</string> + <string name="mtrl_picker_range_header_unselected">શરૂ કરવાની તારીખ – સમાપà«àª¤àª¿àª¨à«€ તારીખ</string> + <string name="mtrl_picker_save">સાચવો</string> + <string name="mtrl_picker_text_input_date_hint">તારીખ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">સમાપà«àª¤àª¿àª¨à«€ તારીખ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">શરૂ કરવાની તારીખ</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">કૅલેનà«àª¡àª° ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરો</string> + <string name="mtrl_picker_toggle_to_day_selection">દિવસની પસંદગી પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરો</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરો</string> + <string name="mtrl_picker_toggle_to_year_selection">વરà«àª·àª¨à«€ પસંદગી પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરો</string> + <string name="mtrl_timepicker_cancel">રદ કરો</string> + <string name="mtrl_timepicker_confirm">ઓકે</string> + <string name="password_toggle_content_description">પાસવરà«àª¡ બતાવો</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h320dp-port-v13/values-h320dp-port-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h320dp-port-v13/values-h320dp-port-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..62716d45d8659d90480cf6ff9b616e74c4877aff --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h320dp-port-v13/values-h320dp-port-v13.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="material_timepicker_dialog_buttons_margin_top">8dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h360dp-land-v13/values-h360dp-land-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h360dp-land-v13/values-h360dp-land-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..4badce119b5a468adbdeb0a0b1823549b19e08b2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h360dp-land-v13/values-h360dp-land-v13.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="mtrl_calendar_bottom_padding">4dp</dimen> + <dimen name="mtrl_calendar_day_corner">18dp</dimen> + <dimen name="mtrl_calendar_day_height">40dp</dimen> + <dimen name="mtrl_calendar_day_horizontal_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_vertical_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_width">40dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">20dp</dimen> + <dimen name="mtrl_calendar_landscape_header_width">128dp</dimen> + <dimen name="mtrl_calendar_month_horizontal_padding">4dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h480dp-land-v13/values-h480dp-land-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h480dp-land-v13/values-h480dp-land-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..86eb4225011a799319c7e4c9c6d2d71c366c83ee --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h480dp-land-v13/values-h480dp-land-v13.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="mtrl_calendar_bottom_padding">0dp</dimen> + <dimen name="mtrl_calendar_day_corner">22dp</dimen> + <dimen name="mtrl_calendar_day_height">48dp</dimen> + <dimen name="mtrl_calendar_day_horizontal_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_vertical_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_width">48dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">20dp</dimen> + <dimen name="mtrl_calendar_landscape_header_width">168dp</dimen> + <dimen name="mtrl_calendar_month_horizontal_padding">0dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h550dp-port-v13/values-h550dp-port-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h550dp-port-v13/values-h550dp-port-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..9b3fbb821a010d8c06e1d3a4bcdcd59950370ac7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-h550dp-port-v13/values-h550dp-port-v13.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="material_timepicker_dialog_buttons_margin_top">24dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hi/values-hi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f287b40f40715571ab49a5e7f6830ce676d1dc1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hi/values-hi.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d नई सूचनाà¤à¤‚</item> + <item quantity="other">%d नई सूचनाà¤à¤‚</item> + </plurals> + <string name="bottomsheet_action_collapse">बॉटम शीट को छोटा करें</string> + <string name="bottomsheet_action_expand">बॉटम शीट को बड़ा करें</string> + <string name="bottomsheet_action_expand_halfway">पूरी तरह बड़ा करें</string> + <string name="bottomsheet_drag_handle_clicked">खींचकर छोड़ने वाले हैंडल पर दो बार टैप किया गया</string> + <string name="bottomsheet_drag_handle_content_description">खींचकर छोड़ने वाला हैंडल</string> + <string name="character_counter_content_description">%2$d वरà¥à¤£à¥‹à¤‚ में से %1$d वरà¥à¤£ दरà¥à¤œ किठगà¤</string> + <string name="character_counter_overflowed_content_description">अà¤à¥€ %1$d वरà¥à¤£ हैं जबकि %2$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नहीं होने चाहिà¤</string> + <string name="clear_text_end_icon_content_description">टेकà¥à¤¸à¥à¤Ÿ मिटाà¤à¤‚</string> + <string name="error_icon_content_description">गड़बड़ी</string> + <string name="exposed_dropdown_menu_content_description">डà¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनà¥à¤¯à¥‚ दिखाà¤à¤‚</string> + <string name="icon_content_description">डायलॉग का आइकॉन</string> + <string name="item_view_role_description">टैब</string> + <string name="material_clock_toggle_content_description">AM या PM चà¥à¤¨à¥‡à¤‚</string> + <string name="material_hour_24h_suffix">%1$s घंटे</string> + <string name="material_hour_selection">घंटा चà¥à¤¨à¥‡à¤‚</string> + <string name="material_hour_suffix">%1$s बजे</string> + <string name="material_minute_selection">मिनट चà¥à¤¨à¥‡à¤‚</string> + <string name="material_minute_suffix">%1$s मिनट</string> + <string name="material_timepicker_am">पूरà¥à¤µà¤¾à¤¹à¥à¤¨</string> + <string name="material_timepicker_clock_mode_description">समय इनपà¥à¤Ÿ के लिठघड़ी मोड पर जाà¤à¤‚.</string> + <string name="material_timepicker_hour">घंटा</string> + <string name="material_timepicker_minute">मिनट</string> + <string name="material_timepicker_pm">अपराहà¥à¤¨</string> + <string name="material_timepicker_select_time">समय चà¥à¤¨à¥‡à¤‚</string> + <string name="material_timepicker_text_input_mode_description">समय इनपà¥à¤Ÿ के लिठलेख इनपà¥à¤Ÿ मोड पर जाà¤à¤‚.</string> + <string name="mtrl_badge_numberless_content_description">नई सूचना</string> + <string name="mtrl_chip_close_icon_content_description">%1$s हटाà¤à¤‚</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नई सूचनाà¤à¤‚</string> + <string name="mtrl_picker_a11y_next_month">अगले महीने पर जाà¤à¤‚</string> + <string name="mtrl_picker_a11y_prev_month">पिछले महीने पर जाà¤à¤‚</string> + <string name="mtrl_picker_announce_current_selection">फ़िलहाल, यह चà¥à¤¨à¤¾ गया है: %1$s</string> + <string name="mtrl_picker_cancel">रदà¥à¤¦ करें</string> + <string name="mtrl_picker_confirm">ठीक है</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">तारीख चà¥à¤¨à¥‡à¤‚</string> + <string name="mtrl_picker_date_header_unselected">चà¥à¤¨à¥€ गई तारीख</string> + <string name="mtrl_picker_day_of_week_column_header">दिनों का कॉलम: %1$s</string> + <string name="mtrl_picker_invalid_format">गलत फ़ॉरà¥à¤®à¥ˆà¤Ÿ.</string> + <string name="mtrl_picker_invalid_format_example">उदाहरण: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s का इसà¥à¤¤à¥‡à¤®à¤¾à¤² करें</string> + <string name="mtrl_picker_invalid_range">तारीखों की अमानà¥à¤¯ सीमा.</string> + <string name="mtrl_picker_navigate_to_year_description">साल %1$s पर जाà¤à¤‚</string> + <string name="mtrl_picker_out_of_range">तारीख की मानà¥à¤¯ सीमा से बाहर: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">शà¥à¤°à¥‚ होने की तारीख – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – खतà¥à¤® होने की तारीख</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">रेंज चà¥à¤¨à¥‡à¤‚</string> + <string name="mtrl_picker_range_header_unselected">शà¥à¤°à¥‚ होने की तारीख – खतà¥à¤® होने की तारीख</string> + <string name="mtrl_picker_save">सेव करें</string> + <string name="mtrl_picker_text_input_date_hint">तारीख</string> + <string name="mtrl_picker_text_input_date_range_end_hint">खतà¥à¤® होने की तारीख</string> + <string name="mtrl_picker_text_input_date_range_start_hint">शà¥à¤°à¥‚ होने की तारीख</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">कैलेंडर के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करें</string> + <string name="mtrl_picker_toggle_to_day_selection">\'दिन चà¥à¤¨à¤¨à¤¾\' पर सà¥à¤µà¤¿à¤š करने के लिठटैप करें</string> + <string name="mtrl_picker_toggle_to_text_input_mode">टेकà¥à¤¸à¥à¤Ÿ के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करें</string> + <string name="mtrl_picker_toggle_to_year_selection">\'साल चà¥à¤¨à¤¨à¤¾\' पर सà¥à¤µà¤¿à¤š करने के लिठटैप करें</string> + <string name="mtrl_timepicker_cancel">रदà¥à¤¦ करें</string> + <string name="mtrl_timepicker_confirm">ठीक है</string> + <string name="password_toggle_content_description">पासवरà¥à¤¡ दिखाà¤à¤‚</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hr/values-hr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..814fb6f25262127d5f7d06e76bb5242c3bb202ad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hr/values-hr.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nova obavijest</item> + <item quantity="few">%d nove obavijesti</item> + <item quantity="other">%d novih obavijesti</item> + </plurals> + <string name="bottomsheet_action_collapse">Sažmite donju tablicu</string> + <string name="bottomsheet_action_expand">ProÅ¡irite donju tablicu</string> + <string name="bottomsheet_action_expand_halfway">ProÅ¡iri donju polovicu</string> + <string name="bottomsheet_drag_handle_clicked">Dvaput dodirnut marker za povlaÄenje</string> + <string name="bottomsheet_drag_handle_content_description">Marker za povlaÄenje</string> + <string name="character_counter_content_description">Uneseno znakova: %1$d od %2$d</string> + <string name="character_counter_overflowed_content_description">PremaÅ¡eno je ograniÄenje broja znakova: %1$d od %2$d</string> + <string name="clear_text_end_icon_content_description">Brisanje teksta</string> + <string name="error_icon_content_description">PogreÅ¡ka</string> + <string name="exposed_dropdown_menu_content_description">Prikaži padajući izbornik</string> + <string name="icon_content_description">Ikona dijaloga</string> + <string name="item_view_role_description">Kartica</string> + <string name="material_clock_toggle_content_description">Odaberite prijepodne ili poslijepodne</string> + <string name="material_hour_24h_suffix">%1$s h</string> + <string name="material_hour_selection">Odaberite sat</string> + <string name="material_hour_suffix">%1$s h</string> + <string name="material_minute_selection">Odaberite minute</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">PrijeÄ‘ite na naÄin rada sata da biste unijeli vrijeme.</string> + <string name="material_timepicker_hour">Sat</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Odabir vremena</string> + <string name="material_timepicker_text_input_mode_description">PrijeÄ‘ite na naÄin unosa teksta da biste unijeli vrijeme.</string> + <string name="mtrl_badge_numberless_content_description">Nova obavijest</string> + <string name="mtrl_chip_close_icon_content_description">Ukloni %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">ViÅ¡e od %1$d novih obavijesti</string> + <string name="mtrl_picker_a11y_next_month">Prijelaz na sljedeći mjesec</string> + <string name="mtrl_picker_a11y_prev_month">Pomicanje na prethodni mjesec</string> + <string name="mtrl_picker_announce_current_selection">TrenutaÄan odabir: %1$s</string> + <string name="mtrl_picker_cancel">Odustani</string> + <string name="mtrl_picker_confirm">U redu</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Odaberite datum</string> + <string name="mtrl_picker_date_header_unselected">Odabrani datum</string> + <string name="mtrl_picker_day_of_week_column_header">Stupac s danima: %1$s</string> + <string name="mtrl_picker_invalid_format">Nevažeći format.</string> + <string name="mtrl_picker_invalid_format_example">Primjer: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Koristi format: %1$s</string> + <string name="mtrl_picker_invalid_range">Raspon nije važeći.</string> + <string name="mtrl_picker_navigate_to_year_description">Prijelaz na godinu %1$s</string> + <string name="mtrl_picker_out_of_range">Izvan raspona: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Datum poÄetka – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – datum zavrÅ¡etka</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Odaberite raspon</string> + <string name="mtrl_picker_range_header_unselected">Datum poÄetka – datum zavrÅ¡etka</string> + <string name="mtrl_picker_save">Spremi</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Datum zavrÅ¡etka</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Datum poÄetka</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">g</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Prijelaz na naÄin unosa u Kalendaru</string> + <string name="mtrl_picker_toggle_to_day_selection">Dodirnite za prijelaz na odabir dana</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Prijelaz na naÄin unosa teksta</string> + <string name="mtrl_picker_toggle_to_year_selection">Dodirnite za prijelaz na odabir godine</string> + <string name="mtrl_timepicker_cancel">Odustani</string> + <string name="mtrl_timepicker_confirm">U redu</string> + <string name="password_toggle_content_description">Prikaži zaporku</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hu/values-hu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..0adf286d2cdb2d2696fd32f62f6e9dea8f60d262 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hu/values-hu.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d új értesÃtés</item> + <item quantity="other">%d új értesÃtés</item> + </plurals> + <string name="bottomsheet_action_collapse">Az alsó lap összecsukása</string> + <string name="bottomsheet_action_expand">Az alsó lap kibontása</string> + <string name="bottomsheet_action_expand_halfway">Kibontás félig</string> + <string name="bottomsheet_drag_handle_clicked">Duplán koppintott a csúszkára</string> + <string name="bottomsheet_drag_handle_content_description">Csúszka</string> + <string name="character_counter_content_description">Begépelt karakterszám: %2$d/%1$d</string> + <string name="character_counter_overflowed_content_description">Maximális karakterszám túllépve: %2$d/%1$d</string> + <string name="clear_text_end_icon_content_description">Szöveg törlése</string> + <string name="error_icon_content_description">Hiba</string> + <string name="exposed_dropdown_menu_content_description">LegördülÅ‘ menü megjelenÃtése</string> + <string name="icon_content_description">Párbeszédpanel ikonja</string> + <string name="item_view_role_description">Lap</string> + <string name="material_clock_toggle_content_description">Válassza ki, hogy délelÅ‘tt vagy délután</string> + <string name="material_hour_24h_suffix">%1$s óra</string> + <string name="material_hour_selection">Óra kiválasztása</string> + <string name="material_hour_suffix">%1$s óra</string> + <string name="material_minute_selection">Perc kiválasztása</string> + <string name="material_minute_suffix">%1$s perc</string> + <string name="material_timepicker_am">de.</string> + <string name="material_timepicker_clock_mode_description">IdÅ‘bevitelhez váltson óramódba.</string> + <string name="material_timepicker_hour">Óra</string> + <string name="material_timepicker_minute">Perc</string> + <string name="material_timepicker_pm">du.</string> + <string name="material_timepicker_select_time">IdÅ‘pont kiválasztása</string> + <string name="material_timepicker_text_input_mode_description">IdÅ‘bevitelhez váltson szövegbeviteli módba.</string> + <string name="mtrl_badge_numberless_content_description">Új értesÃtés</string> + <string name="mtrl_chip_close_icon_content_description">EltávolÃtás (%1$s)</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Több mint %1$d új értesÃtés</string> + <string name="mtrl_picker_a11y_next_month">Váltás a következÅ‘ hónapra</string> + <string name="mtrl_picker_a11y_prev_month">Váltás az elÅ‘zÅ‘ hónapra</string> + <string name="mtrl_picker_announce_current_selection">Jelenleg kiválasztva: %1$s</string> + <string name="mtrl_picker_cancel">Mégse</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Válasszon dátumot</string> + <string name="mtrl_picker_date_header_unselected">Kiválasztott dátum</string> + <string name="mtrl_picker_day_of_week_column_header">Napok oszlopa: %1$s</string> + <string name="mtrl_picker_invalid_format">Érvénytelen formátum.</string> + <string name="mtrl_picker_invalid_format_example">Példa: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Használja ezt: %1$s</string> + <string name="mtrl_picker_invalid_range">Érvénytelen tartomány.</string> + <string name="mtrl_picker_navigate_to_year_description">Ugrás ehhez az évhez: %1$s</string> + <string name="mtrl_picker_out_of_range">Tartományon kÃvül: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Kezdés dátuma – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Befejezés dátuma</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Válasszon dátumtartományt</string> + <string name="mtrl_picker_range_header_unselected">Kezdés dátuma – Befejezés dátuma</string> + <string name="mtrl_picker_save">Mentés</string> + <string name="mtrl_picker_text_input_date_hint">Dátum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Befejezés dátuma</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Kezdés dátuma</string> + <string name="mtrl_picker_text_input_day_abbr">N</string> + <string name="mtrl_picker_text_input_month_abbr">H</string> + <string name="mtrl_picker_text_input_year_abbr">É</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Váltás naptárbeviteli módra</string> + <string name="mtrl_picker_toggle_to_day_selection">Koppintson a nap kiválasztásához</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Váltás szövegbeviteli módra</string> + <string name="mtrl_picker_toggle_to_year_selection">Koppintson az év kiválasztásához</string> + <string name="mtrl_timepicker_cancel">Mégse</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Jelszó megjelenÃtése</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hy/values-hy.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..240d1a9a7afd9aca755739d89ccced83c88b6d53 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-hy/values-hy.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´</item> + <item quantity="other">%d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´</item> + </plurals> + <string name="bottomsheet_action_collapse">Ô¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨</string> + <string name="bottomsheet_action_expand">Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨</string> + <string name="bottomsheet_action_expand_halfway">Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¯Õ«Õ½Õ¸Õ¾ Õ¹Õ¡Öƒ</string> + <string name="bottomsheet_drag_handle_clicked">Ô¿Ö€Õ¯Õ¶Õ¡Õ¯Õ« Õ°ÕºÕ¸Ö‚Õ´ Õ¿Õ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹Õ«Õ¶</string> + <string name="bottomsheet_drag_handle_content_description">ÕÕ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹</string> + <string name="character_counter_content_description">Õ„Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¾Õ¡Õ® Õ¶Õ«Õ·Õ¥Ö€Õ %1$d/%2$d</string> + <string name="character_counter_overflowed_content_description">Õ†Õ«Õ·Õ¥Ö€Õ« Õ¡Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö‚ÕµÕ¶ Ö„Õ¡Õ¶Õ¡Õ¯Õ¨ Õ£Õ¥Ö€Õ¡Õ¦Õ¡Õ¶ÖÕ¾Õ¥Õ¬ Õ§ (%1$d/%2$d)</string> + <string name="clear_text_end_icon_content_description">Õ‹Õ¶Õ»Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ¨</string> + <string name="error_icon_content_description">ÕÕÕ¡Õ¬</string> + <string name="exposed_dropdown_menu_content_description">Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ«Õ»Õ¶Õ¸Õ² Õ¨Õ¶Õ¿Ö€Õ¡ÖÕ¡Õ¶Õ¯Õ¨</string> + <string name="icon_content_description">ÔµÖ€Õ¯ÕÕ¸Õ½Õ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ« ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¡Õ¯</string> + <string name="item_view_role_description">Õ†Õ¥Ö€Õ¤Õ«Ö€</string> + <string name="material_clock_toggle_content_description">Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ AM Õ¯Õ¡Õ´ PM</string> + <string name="material_hour_24h_suffix">%1$s ÕªÕ¡Õ´</string> + <string name="material_hour_selection">Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ ÕªÕ¡Õ´Õ¨</string> + <string name="material_hour_suffix">ÔºÕ¡Õ´Õ¨ %1$s Õ§</string> + <string name="material_minute_selection">Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Ö€Õ¸ÕºÕ¥Õ¶</string> + <string name="material_minute_suffix">%1$s Ö€Õ¸ÕºÕ¥</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">ÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ ÕªÕ¡Õ´Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ¼Õ¥ÕªÕ«Õ´Õ¨:</string> + <string name="material_timepicker_hour">ÔºÕ¡Õ´</string> + <string name="material_timepicker_minute">ÕÕ¸ÕºÕ¥</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">ÔºÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶</string> + <string name="material_timepicker_text_input_mode_description">ÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ¨:</string> + <string name="mtrl_badge_numberless_content_description">Õ†Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´</string> + <string name="mtrl_chip_close_icon_content_description">Õ€Õ¥Õ¼Õ¡ÖÕ¶Õ¥Õ¬ (%1$s)</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Ô±Õ¾Õ¥Õ¬Õ« Ö„Õ¡Õ¶ %1$d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´</string> + <string name="mtrl_picker_a11y_next_month">Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ°Õ¡Õ»Õ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½</string> + <string name="mtrl_picker_a11y_prev_month">Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¶Õ¡ÕÕ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½</string> + <string name="mtrl_picker_announce_current_selection">Õ†Õ¥Ö€Õ¯Õ¡ÕµÕ«Õ½ Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ %1$s</string> + <string name="mtrl_picker_cancel">Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬</string> + <string name="mtrl_picker_confirm">ÔµÕ²Õ¡Õ¾</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_date_header_unselected">Ô¸Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_day_of_week_column_header">Õ•Ö€Õ¥Ö€Õ« Õ½ÕµÕ¸Ö‚Õ¶Õ¡Õ¯Õ %1$s</string> + <string name="mtrl_picker_invalid_format">ÕÖ‡Õ¡Õ¹Õ¡ÖƒÕ¨ Õ½ÕÕ¡Õ¬ Õ§Ö‰</string> + <string name="mtrl_picker_invalid_format_example">Õ•Ö€Õ«Õ¶Õ¡Õ¯Õ %1$s</string> + <string name="mtrl_picker_invalid_format_use">Õ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Ö„Õ %1$s</string> + <string name="mtrl_picker_invalid_range">Ô¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¶ Õ¡Õ¶Õ¾Õ¡Õ¾Õ¥Ö€ Õ§:</string> + <string name="mtrl_picker_navigate_to_year_description">Ô±Õ¶ÖÕ¶Õ¥Õ¬ %1$s Õ©Õ¾Õ¡Õ¯Õ¡Õ¶</string> + <string name="mtrl_picker_out_of_range">Ô¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ«Ö Õ¤Õ¸Ö‚Ö€Õ½ Õ§Õ %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¨Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¨</string> + <string name="mtrl_picker_range_header_unselected">Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_save">ÕŠÕ¡Õ°Õ¥Õ¬</string> + <string name="mtrl_picker_text_input_date_hint">Ô±Õ´Õ½Õ¡Õ©Õ«Õ¾</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨</string> + <string name="mtrl_picker_text_input_day_abbr">Ö…</string> + <string name="mtrl_picker_text_input_month_abbr">Õ¡</string> + <string name="mtrl_picker_text_input_year_abbr">Õ¿</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Ô±Õ¶ÖÕ¶Õ¥Õ¬ Ö…Ö€Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´</string> + <string name="mtrl_picker_toggle_to_day_selection">Õ€ÕºÕ¥Ö„Õ Ö…Ö€Õ¾Õ¡ Õ¨Õ¶Õ¿Õ¸Ö‚Õ©ÕµÕ¡Õ¶Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ«Õ¶</string> + <string name="mtrl_picker_toggle_to_year_selection">Õ€ÕºÕ¥Ö„Õ Õ¿Õ¡Ö€Õ¥Õ©Õ¾Õ« Õ¨Õ¶Õ¿Õ¸Ö‚Õ©ÕµÕ¡Õ¶Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€</string> + <string name="mtrl_timepicker_cancel">Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬</string> + <string name="mtrl_timepicker_confirm">ÔµÕ²Õ¡Õ¾</string> + <string name="password_toggle_content_description">Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬ Õ£Õ¡Õ²Õ¿Õ¶Õ¡Õ¢Õ¡Õ¼Õ¨</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-in/values-in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..bea21f7c036f5851e4faa5a86d5dc03c16ff99bb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-in/values-in.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notifikasi baru</item> + <item quantity="other">%d notifikasi baru</item> + </plurals> + <string name="bottomsheet_action_collapse">Menciutkan sheet bawah</string> + <string name="bottomsheet_action_expand">Meluaskan sheet bawah</string> + <string name="bottomsheet_action_expand_halfway">Luaskan setengah</string> + <string name="bottomsheet_drag_handle_clicked">Handel geser diketuk dua kali</string> + <string name="bottomsheet_drag_handle_content_description">Handel geser</string> + <string name="character_counter_content_description">Karakter yang dimasukkan %1$d dari %2$d</string> + <string name="character_counter_overflowed_content_description">Melebihi batas karakter %1$d dari %2$d</string> + <string name="clear_text_end_icon_content_description">Menghapus teks</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Tampilkan menu dropdown</string> + <string name="icon_content_description">Ikon Dialog</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Pilih AM atau PM</string> + <string name="material_hour_24h_suffix">%1$s jam</string> + <string name="material_hour_selection">Pilih jam</string> + <string name="material_hour_suffix">Pukul %1$s</string> + <string name="material_minute_selection">Pilih menit</string> + <string name="material_minute_suffix">%1$s menit</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Beralih ke mode jam untuk masukan waktu.</string> + <string name="material_timepicker_hour">Jam</string> + <string name="material_timepicker_minute">Menit</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Pilih waktu</string> + <string name="material_timepicker_text_input_mode_description">Beralih ke mode masukan teks untuk masukan waktu.</string> + <string name="mtrl_badge_numberless_content_description">Notifikasi baru</string> + <string name="mtrl_chip_close_icon_content_description">Menghapus %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Lebih dari %1$d notifikasi baru</string> + <string name="mtrl_picker_a11y_next_month">Ubah ke bulan berikutnya</string> + <string name="mtrl_picker_a11y_prev_month">Ubah ke bulan sebelumnya</string> + <string name="mtrl_picker_announce_current_selection">Pilihan saat ini: %1$s</string> + <string name="mtrl_picker_cancel">Batal</string> + <string name="mtrl_picker_confirm">Oke</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Pilih Tanggal</string> + <string name="mtrl_picker_date_header_unselected">Tanggal yang dipilih</string> + <string name="mtrl_picker_day_of_week_column_header">Kolom hari: %1$s</string> + <string name="mtrl_picker_invalid_format">Format tidak valid.</string> + <string name="mtrl_picker_invalid_format_example">Contoh: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Gunakan: %1$s</string> + <string name="mtrl_picker_invalid_range">Rentang tidak valid.</string> + <string name="mtrl_picker_navigate_to_year_description">Buka tahun %1$s</string> + <string name="mtrl_picker_out_of_range">Di luar rentang: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Tanggal mulai – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Tanggal akhir</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Pilih Rentang</string> + <string name="mtrl_picker_range_header_unselected">Tanggal mulai – Tanggal akhir</string> + <string name="mtrl_picker_save">Simpan</string> + <string name="mtrl_picker_text_input_date_hint">Tanggal</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Tanggal akhir</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Tanggal mulai</string> + <string name="mtrl_picker_text_input_day_abbr">h</string> + <string name="mtrl_picker_text_input_month_abbr">b</string> + <string name="mtrl_picker_text_input_year_abbr">t</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Beralih ke mode masukan kalender</string> + <string name="mtrl_picker_toggle_to_day_selection">Ketuk untuk beralih ke memilih hari</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Beralih ke mode masukan teks</string> + <string name="mtrl_picker_toggle_to_year_selection">Ketuk untuk beralih ke memilih tahun</string> + <string name="mtrl_timepicker_cancel">Batal</string> + <string name="mtrl_timepicker_confirm">Oke</string> + <string name="password_toggle_content_description">Tampilkan sandi</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-is/values-is.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..41ee247351ac720a8fa8037e7e4e7df198a1908d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-is/values-is.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ný tilkynning</item> + <item quantity="other">%d nýjar tilkynningar</item> + </plurals> + <string name="bottomsheet_action_collapse">Minnka blað neðst</string> + <string name="bottomsheet_action_expand">Stækka blað neðst</string> + <string name="bottomsheet_action_expand_halfway">Stækka til hálfs</string> + <string name="bottomsheet_drag_handle_clicked">Ãtt tvisvar á dragkló</string> + <string name="bottomsheet_drag_handle_content_description">Dragkló</string> + <string name="character_counter_content_description">Innslegnir stafir %1$d af %2$d</string> + <string name="character_counter_overflowed_content_description">Yfir hámarksstafafjölda, %1$d af %2$d</string> + <string name="clear_text_end_icon_content_description">Hreinsa texta</string> + <string name="error_icon_content_description">Villa</string> + <string name="exposed_dropdown_menu_content_description">Sýna fellivalmynd</string> + <string name="icon_content_description">Gluggatákn</string> + <string name="item_view_role_description">Flipi</string> + <string name="material_clock_toggle_content_description">Velja f.h. eða e.h.</string> + <string name="material_hour_24h_suffix">%1$s klst.</string> + <string name="material_hour_selection">Velja tÃma</string> + <string name="material_hour_suffix">klukkan %1$s</string> + <string name="material_minute_selection">Veldu mÃnútur</string> + <string name="material_minute_suffix">%1$s mÃnútur</string> + <string name="material_timepicker_am">f.h.</string> + <string name="material_timepicker_clock_mode_description">Skipta yfir à klukkustillingu til að færa inn tÃma.</string> + <string name="material_timepicker_hour">Klukkustund</string> + <string name="material_timepicker_minute">MÃnúta</string> + <string name="material_timepicker_pm">e.h.</string> + <string name="material_timepicker_select_time">Veldu tÃma</string> + <string name="material_timepicker_text_input_mode_description">Skipta yfir à textastillingu til að færa inn tÃma.</string> + <string name="mtrl_badge_numberless_content_description">Ný tilkynning</string> + <string name="mtrl_chip_close_icon_content_description">Fjarlægja %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Yfir %1$d nýjar tilkynningar</string> + <string name="mtrl_picker_a11y_next_month">Breyta à næsta mánuð</string> + <string name="mtrl_picker_a11y_prev_month">Breyta à fyrri mánuð</string> + <string name="mtrl_picker_announce_current_selection">Núverandi val: %1$s</string> + <string name="mtrl_picker_cancel">Hætta við</string> + <string name="mtrl_picker_confirm">à lagi</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Veldu dagsetningu</string> + <string name="mtrl_picker_date_header_unselected">Valin dagsetning</string> + <string name="mtrl_picker_day_of_week_column_header">Dálkur með dögum: %1$s</string> + <string name="mtrl_picker_invalid_format">Ógilt snið.</string> + <string name="mtrl_picker_invalid_format_example">Dæmi: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Nota: %1$s</string> + <string name="mtrl_picker_invalid_range">Ógilt svið.</string> + <string name="mtrl_picker_navigate_to_year_description">Fara à árið %1$s</string> + <string name="mtrl_picker_out_of_range">Utan sviðs: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Upphafsdagur – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – lokadagur</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Veldu tÃmabil</string> + <string name="mtrl_picker_range_header_unselected">Upphafsdagur – lokadagur</string> + <string name="mtrl_picker_save">Vista</string> + <string name="mtrl_picker_text_input_date_hint">Dagsetning</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Lokadagur</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Upphafsdagur</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">á</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Skipta yfir à innfærsluaðferð fyrir dagatal</string> + <string name="mtrl_picker_toggle_to_day_selection">Ãttu til að skipta yfir à að velja dag</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Skipta yfir à innfærsluaðferð fyrir texta</string> + <string name="mtrl_picker_toggle_to_year_selection">Ãttu til að skipta yfir à að velja ár</string> + <string name="mtrl_timepicker_cancel">Hætta við</string> + <string name="mtrl_timepicker_confirm">à lagi</string> + <string name="password_toggle_content_description">Sýna aðgangsorð</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-it/values-it.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..1b793bee0f46af4710a7975a78c7bcde172653bb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-it/values-it.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nuova notifica</item> + <item quantity="other">%d nuove notifiche</item> + </plurals> + <string name="bottomsheet_action_collapse">Comprimi riquadro inferiore</string> + <string name="bottomsheet_action_expand">Espandi riquadro inferiore</string> + <string name="bottomsheet_action_expand_halfway">Espandi a metà </string> + <string name="bottomsheet_drag_handle_clicked">Doppio tocco su punto di trascinamento</string> + <string name="bottomsheet_drag_handle_content_description">Punto di trascinamento</string> + <string name="character_counter_content_description">%1$d caratteri inserirti su %2$d</string> + <string name="character_counter_overflowed_content_description">Sono presenti %2$d caratteri in più rispetto al limite di %1$d</string> + <string name="clear_text_end_icon_content_description">Cancella testo</string> + <string name="error_icon_content_description">Errore</string> + <string name="exposed_dropdown_menu_content_description">Mostra il menu a discesa</string> + <string name="icon_content_description">Icona della finestra di dialogo</string> + <string name="item_view_role_description">Scheda</string> + <string name="material_clock_toggle_content_description">Seleziona AM o PM</string> + <string name="material_hour_24h_suffix">%1$s ore</string> + <string name="material_hour_selection">Seleziona l\'ora</string> + <string name="material_hour_suffix">%1$s in punto</string> + <string name="material_minute_selection">Seleziona i minuti</string> + <string name="material_minute_suffix">%1$s minuti</string> + <string name="material_timepicker_am">am</string> + <string name="material_timepicker_clock_mode_description">Passa alla modalità orologio per inserire l\'ora.</string> + <string name="material_timepicker_hour">Ora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">pm</string> + <string name="material_timepicker_select_time">Seleziona l\'ora</string> + <string name="material_timepicker_text_input_mode_description">Passa alla modalità di immissione testo per inserire l\'ora.</string> + <string name="mtrl_badge_numberless_content_description">Nuova notifica</string> + <string name="mtrl_chip_close_icon_content_description">Rimuovi %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Più di %1$d nuove notifiche</string> + <string name="mtrl_picker_a11y_next_month">Passa al mese successivo</string> + <string name="mtrl_picker_a11y_prev_month">Passa al mese precedente</string> + <string name="mtrl_picker_announce_current_selection">Selezione attuale: %1$s</string> + <string name="mtrl_picker_cancel">Annulla</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Seleziona data</string> + <string name="mtrl_picker_date_header_unselected">Data selezionata</string> + <string name="mtrl_picker_day_of_week_column_header">Colonna dei giorni: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato non valido.</string> + <string name="mtrl_picker_invalid_format_example">Esempio: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usa: %1$s</string> + <string name="mtrl_picker_invalid_range">Intervallo non valido.</string> + <string name="mtrl_picker_navigate_to_year_description">Vai all\'anno %1$s</string> + <string name="mtrl_picker_out_of_range">Non compresa nell\'intervallo: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data di inizio - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - Data di fine</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Seleziona intervallo</string> + <string name="mtrl_picker_range_header_unselected">Data di inizio - Data di fine</string> + <string name="mtrl_picker_save">Salva</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data di fine</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data di inizio</string> + <string name="mtrl_picker_text_input_day_abbr">g</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Passa alla modalità di immissione Calendario</string> + <string name="mtrl_picker_toggle_to_day_selection">Tocca per passare alla selezione di un giorno</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Passa alla modalità di immissione Testo</string> + <string name="mtrl_picker_toggle_to_year_selection">Tocca per passare alla selezione di un anno</string> + <string name="mtrl_timepicker_cancel">Annulla</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Mostra password</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-iw/values-iw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb83c8f4ed5ea6c14dcb30cb5b60ebd895385ff4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-iw/values-iw.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">התר××” חדשה ×חת (%d)</item> + <item quantity="two">%d התר×ות חדשות</item> + <item quantity="many">%d התר×ות חדשות</item> + <item quantity="other">%d התר×ות חדשות</item> + </plurals> + <string name="bottomsheet_action_collapse">כיווץ הגיליון התחתון</string> + <string name="bottomsheet_action_expand">הרחבת הגיליון התחתון</string> + <string name="bottomsheet_action_expand_halfway">הרחבה עד ×”×מצע</string> + <string name="bottomsheet_drag_handle_clicked">בוצעה הקשה כפולה על × ×§×•×“×ª ×”××—×™×–×” לגרירה</string> + <string name="bottomsheet_drag_handle_content_description">× ×§×•×“×ª ××—×™×–×” לגרירה</string> + <string name="character_counter_content_description">×”×•×–× ×• %1$d ×ª×•×•×™× ×ž×ª×•×š %2$d</string> + <string name="character_counter_overflowed_content_description">מגבלת ×”×ª×•×•×™× ×—×•×¨×’×ª ב-%1$d מתוך %2$d</string> + <string name="clear_text_end_icon_content_description">מחיקת הטקסט</string> + <string name="error_icon_content_description">שגי××”</string> + <string name="exposed_dropdown_menu_content_description">הצגת התפריט ×”× ×¤×ª×—</string> + <string name="icon_content_description">סמל לתיבת דו-שיח</string> + <string name="item_view_role_description">מקש Tab</string> + <string name="material_clock_toggle_content_description">יש לבחור ב-AM ×ו ב-PM</string> + <string name="material_hour_24h_suffix">%1$s שעות</string> + <string name="material_hour_selection">בחר שעה</string> + <string name="material_hour_suffix">השעה %1$s</string> + <string name="material_minute_selection">בחר דקות</string> + <string name="material_minute_suffix">%1$s דקות</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">העבר למצב שעון לצורך ×”×–× ×ª השעה</string> + <string name="material_timepicker_hour">שעה</string> + <string name="material_timepicker_minute">דקה</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">בחר שעה</string> + <string name="material_timepicker_text_input_mode_description">העבר למצב קלט טקסט לצורך ×”×–× ×ª השעה</string> + <string name="mtrl_badge_numberless_content_description">התר××” חדשה</string> + <string name="mtrl_chip_close_icon_content_description">הסרה של %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">יותר מ-%1$d התר×ות חדשות</string> + <string name="mtrl_picker_a11y_next_month">מעבר לחודש הב×</string> + <string name="mtrl_picker_a11y_prev_month">מעבר לחודש הקוד×</string> + <string name="mtrl_picker_announce_current_selection">הבחירה ×”× ×•×›×—×™×ª: %1$s</string> + <string name="mtrl_picker_cancel">ביטול</string> + <string name="mtrl_picker_confirm">×ישור</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">יש לבחור ת×ריך</string> + <string name="mtrl_picker_date_header_unselected">הת×ריך ×”× ×‘×—×¨</string> + <string name="mtrl_picker_day_of_week_column_header">עמודה של ימי×: %1$s</string> + <string name="mtrl_picker_invalid_format">פורמט ×œ× ×—×•×§×™.</string> + <string name="mtrl_picker_invalid_format_example">דוגמה: %1$s</string> + <string name="mtrl_picker_invalid_format_use">יש להשתמש בפורמט: %1$s</string> + <string name="mtrl_picker_invalid_range">טווח ×œ× ×—×•×§×™.</string> + <string name="mtrl_picker_navigate_to_year_description">× ×™×•×•×˜ ×œ×©× ×ª %1$s</string> + <string name="mtrl_picker_out_of_range">מחוץ לטווח: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ת×ריך התחלה – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ת×ריך סיו×</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">יש לבחור טווח</string> + <string name="mtrl_picker_range_header_unselected">ת×ריך התחלה - ת×ריך סיו×</string> + <string name="mtrl_picker_save">שמירה</string> + <string name="mtrl_picker_text_input_date_hint">ת×ריך</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ת×ריך סיו×</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ת×ריך התחלה</string> + <string name="mtrl_picker_text_input_day_abbr">×™</string> + <string name="mtrl_picker_text_input_month_abbr">×—</string> + <string name="mtrl_picker_text_input_year_abbr">ש</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">החלפה לשיטת קלט של יומן</string> + <string name="mtrl_picker_toggle_to_day_selection">יש להקיש כדי להחליף לבחירת יו×</string> + <string name="mtrl_picker_toggle_to_text_input_mode">החלפה לשיטת קלט של טקסט</string> + <string name="mtrl_picker_toggle_to_year_selection">יש להקיש כדי להחליף לבחירת ×©× ×”</string> + <string name="mtrl_timepicker_cancel">ביטול</string> + <string name="mtrl_timepicker_confirm">×ישור</string> + <string name="password_toggle_content_description">הצגת סיסמה</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ja/values-ja.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..51f00a2c71cd01ee62ca63f90db3715dd85361e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ja/values-ja.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ä»¶ã®æ–°ã—ã„通知</item> + <item quantity="other">%d ä»¶ã®æ–°ã—ã„通知</item> + </plurals> + <string name="bottomsheet_action_collapse">ボトムシートを閉ã˜ã‚‹</string> + <string name="bottomsheet_action_expand">ボトムシートを開ã</string> + <string name="bottomsheet_action_expand_halfway">下åŠåˆ†ã‚’展開</string> + <string name="bottomsheet_drag_handle_clicked">ドラッグ ãƒãƒ³ãƒ‰ãƒ«ã‚’ダブルタップã—ã¾ã—ãŸ</string> + <string name="bottomsheet_drag_handle_content_description">ドラッグ ãƒãƒ³ãƒ‰ãƒ«</string> + <string name="character_counter_content_description">å…¥åŠ›æ¸ˆã¿æ–‡å—æ•°: %1$d/%2$d</string> + <string name="character_counter_overflowed_content_description">æ–‡å—æ•°åˆ¶é™ã‚’è¶…ãˆã¦ã„ã¾ã™ï¼ˆ%1$d/%2$d æ–‡å—)</string> + <string name="clear_text_end_icon_content_description">テã‚ストを消去</string> + <string name="error_icon_content_description">エラー</string> + <string name="exposed_dropdown_menu_content_description">プルダウン メニューを表示</string> + <string name="icon_content_description">ダイアãƒã‚° アイコン</string> + <string name="item_view_role_description">タブ</string> + <string name="material_clock_toggle_content_description">åˆå‰ã¾ãŸã¯åˆå¾Œã‚’é¸æŠž</string> + <string name="material_hour_24h_suffix">%1$s 時間</string> + <string name="material_hour_selection">æ™‚åˆ»ã‚’é¸æŠžã—ã¦ãã ã•ã„</string> + <string name="material_hour_suffix">%1$s時</string> + <string name="material_minute_selection">åˆ†ã‚’é¸æŠž</string> + <string name="material_minute_suffix">%1$s分</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">時刻を時計ã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚</string> + <string name="material_timepicker_hour">時間</string> + <string name="material_timepicker_minute">分</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">æ™‚é–“ã‚’é¸æŠž</string> + <string name="material_timepicker_text_input_mode_description">時刻をテã‚ストã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚</string> + <string name="mtrl_badge_numberless_content_description">æ–°ã—ã„通知</string> + <string name="mtrl_chip_close_icon_content_description">%1$s を削除ã—ã¾ã™</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d ä»¶ä»¥ä¸Šã®æ–°ã—ã„通知</string> + <string name="mtrl_picker_a11y_next_month">翌月ã«å¤‰æ›´</string> + <string name="mtrl_picker_a11y_prev_month">剿œˆã«å¤‰æ›´</string> + <string name="mtrl_picker_announce_current_selection">ç¾åœ¨ã®é¸æŠž: %1$s</string> + <string name="mtrl_picker_cancel">ã‚ャンセル</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">æ—¥ä»˜ã‚’é¸æŠžã—ã¦ãã ã•ã„</string> + <string name="mtrl_picker_date_header_unselected">é¸æŠžã—ãŸæ—¥ä»˜</string> + <string name="mtrl_picker_day_of_week_column_header">曜日ã®åˆ—: %1$s</string> + <string name="mtrl_picker_invalid_format">å½¢å¼ãŒç„¡åйã§ã™ã€‚</string> + <string name="mtrl_picker_invalid_format_example">例: %1$s</string> + <string name="mtrl_picker_invalid_format_use">使用: %1$s</string> + <string name="mtrl_picker_invalid_range">範囲ãŒç„¡åйã§ã™ã€‚</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s å¹´ã«ç§»å‹•</string> + <string name="mtrl_picker_out_of_range">範囲外: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">開始日~%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s~終了日</string> + <string name="mtrl_picker_range_header_selected">%1$s~%2$s</string> + <string name="mtrl_picker_range_header_title">æœŸé–“ã‚’é¸æŠžã—ã¦ãã ã•ã„</string> + <string name="mtrl_picker_range_header_unselected">開始日~終了日</string> + <string name="mtrl_picker_save">ä¿å˜</string> + <string name="mtrl_picker_text_input_date_hint">日付</string> + <string name="mtrl_picker_text_input_date_range_end_hint">終了日</string> + <string name="mtrl_picker_text_input_date_range_start_hint">é–‹å§‹æ—¥</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">カレンダー入力モードã«åˆ‡ã‚Šæ›¿ãˆ</string> + <string name="mtrl_picker_toggle_to_day_selection">タップã™ã‚‹ã¨ã€æ—¥ã®é¸æŠžã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™</string> + <string name="mtrl_picker_toggle_to_text_input_mode">テã‚スト入力モードã«åˆ‡ã‚Šæ›¿ãˆ</string> + <string name="mtrl_picker_toggle_to_year_selection">タップã™ã‚‹ã¨ã€å¹´ã®é¸æŠžã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™</string> + <string name="mtrl_timepicker_cancel">ã‚ャンセル</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">パスワードを表示</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ka/values-ka.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..54a4219ce987cb015972ae66045ac05607ebd2d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ka/values-ka.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ</item> + <item quantity="other">%d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ</item> + </plurals> + <string name="bottomsheet_action_collapse">ქვედრფურცლის ჩáƒáƒ™áƒ”ცვáƒ</string> + <string name="bottomsheet_action_expand">ქვედრფურცლის გáƒáƒ¨áƒšáƒ</string> + <string name="bottomsheet_action_expand_halfway">ნáƒáƒ®áƒ”ვრáƒáƒ›áƒ“ე გáƒáƒ¤áƒáƒ თáƒáƒ”ბáƒ</string> + <string name="bottomsheet_drag_handle_clicked">áƒáƒ მáƒáƒ’ი შეხებრჩáƒáƒ•ლების სáƒáƒ®áƒ”ლურზე</string> + <string name="bottomsheet_drag_handle_content_description">სáƒáƒ®áƒ”ლური ჩáƒáƒ•ლებისთვის</string> + <string name="character_counter_content_description">შეყვáƒáƒœáƒ˜áƒšáƒ˜áƒ %2$d-დáƒáƒœ %1$d სიმბáƒáƒšáƒ</string> + <string name="character_counter_overflowed_content_description">გáƒáƒ“áƒáƒáƒáƒ ბებულირსიმბáƒáƒšáƒáƒ—რლიმიტი (%2$d-დáƒáƒœ %1$d)</string> + <string name="clear_text_end_icon_content_description">ტექსტის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒ</string> + <string name="error_icon_content_description">შეცდáƒáƒ›áƒ</string> + <string name="exposed_dropdown_menu_content_description">ჩáƒáƒ›áƒáƒ¡áƒáƒ¨áƒšáƒ”ლი მენიუს ჩვენებáƒ</string> + <string name="icon_content_description">დიáƒáƒšáƒáƒ’ის ხáƒáƒ¢áƒ£áƒšáƒ</string> + <string name="item_view_role_description">ჩáƒáƒœáƒáƒ თი</string> + <string name="material_clock_toggle_content_description">áƒáƒ˜áƒ ჩიეთ AM áƒáƒœ PM</string> + <string name="material_hour_24h_suffix">%1$s სáƒáƒáƒ—ი</string> + <string name="material_hour_selection">áƒáƒ˜áƒ ჩიეთ სáƒáƒáƒ—ი</string> + <string name="material_hour_suffix">%1$s სáƒáƒáƒ—ი</string> + <string name="material_minute_selection">áƒáƒ˜áƒ ჩიეთ წუთები</string> + <string name="material_minute_suffix">%1$s წუთი</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">დრáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის სáƒáƒáƒ—ის რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.</string> + <string name="material_timepicker_hour">სáƒáƒáƒ—ი</string> + <string name="material_timepicker_minute">წუთი</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">áƒáƒ˜áƒ ჩიეთ დრáƒ</string> + <string name="material_timepicker_text_input_mode_description">დრáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.</string> + <string name="mtrl_badge_numberless_content_description">áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ</string> + <string name="mtrl_chip_close_icon_content_description">%1$s-ის áƒáƒ›áƒáƒ¨áƒšáƒ</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d-ზე მეტი áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ</string> + <string name="mtrl_picker_a11y_next_month">შემდეგ თვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ</string> + <string name="mtrl_picker_a11y_prev_month">წინრთვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ</string> + <string name="mtrl_picker_announce_current_selection">áƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი áƒáƒ ჩევáƒáƒœáƒ˜: %1$s</string> + <string name="mtrl_picker_cancel">გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ</string> + <string name="mtrl_picker_confirm">კáƒáƒ გი</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">áƒáƒ˜áƒ ჩიეთ თáƒáƒ იღი</string> + <string name="mtrl_picker_date_header_unselected">áƒáƒ ჩეული თáƒáƒ იღი</string> + <string name="mtrl_picker_day_of_week_column_header">დღეების სვეტი: %1$s</string> + <string name="mtrl_picker_invalid_format">áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი ფáƒáƒ მáƒáƒ¢áƒ˜.</string> + <string name="mtrl_picker_invalid_format_example">მáƒáƒ’áƒáƒšáƒ˜áƒ—ი: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s-ის გáƒáƒ›áƒáƒ§áƒ”ნებáƒ</string> + <string name="mtrl_picker_invalid_range">დიáƒáƒžáƒáƒ–áƒáƒœáƒ˜ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ იáƒ.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s წელზე ნáƒáƒ•იგáƒáƒªáƒ˜áƒ</string> + <string name="mtrl_picker_out_of_range">დიáƒáƒžáƒáƒ–áƒáƒœáƒ¡ მიღმáƒ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - დáƒáƒ¡áƒ ულების თáƒáƒ იღი</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">áƒáƒ˜áƒ ჩიეთ დიáƒáƒžáƒáƒ–áƒáƒœáƒ˜</string> + <string name="mtrl_picker_range_header_unselected">დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - დáƒáƒ¡áƒ ულების თáƒáƒ იღი</string> + <string name="mtrl_picker_save">შენáƒáƒ®áƒ•áƒ</string> + <string name="mtrl_picker_text_input_date_hint">თáƒáƒ იღი</string> + <string name="mtrl_picker_text_input_date_range_end_hint">დáƒáƒ¡áƒ ულების თáƒáƒ იღი</string> + <string name="mtrl_picker_text_input_date_range_start_hint">დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი</string> + <string name="mtrl_picker_text_input_day_abbr">დ</string> + <string name="mtrl_picker_text_input_month_abbr">წთ</string> + <string name="mtrl_picker_text_input_year_abbr">წ</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">კáƒáƒšáƒ”ნდáƒáƒ ში შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ</string> + <string name="mtrl_picker_toggle_to_day_selection">შეეხეთ დღის áƒáƒ ჩევáƒáƒ–ე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ</string> + <string name="mtrl_picker_toggle_to_year_selection">შეეხეთ წლის áƒáƒ ჩევáƒáƒ–ე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“</string> + <string name="mtrl_timepicker_cancel">გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ</string> + <string name="mtrl_timepicker_confirm">კáƒáƒ გი</string> + <string name="password_toggle_content_description">პáƒáƒ áƒáƒšáƒ˜áƒ¡ ჩვენებáƒ</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kk/values-kk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad2243b98f1cf40bc2da668910c11fa6b58be450 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kk/values-kk.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d жаңа хабарландыру</item> + <item quantity="other">%d жаңа хабарландыру</item> + </plurals> + <string name="bottomsheet_action_collapse">Төменгі парақшаны жию</string> + <string name="bottomsheet_action_expand">Төменгі парақшаны жаю</string> + <string name="bottomsheet_action_expand_halfway">Жартылай кеңейту</string> + <string name="bottomsheet_drag_handle_clicked">Сүйрейтін тетік екі рет түртілді.</string> + <string name="bottomsheet_drag_handle_content_description">Сүйрейтін тетік</string> + <string name="character_counter_content_description">%1$d/%2$d таңба енгізілді</string> + <string name="character_counter_overflowed_content_description">Таңба Ñаны шегінен аÑты: %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Мәтінді өшіру</string> + <string name="error_icon_content_description">Қате</string> + <string name="exposed_dropdown_menu_content_description">Ðшылмалы мәзірді көрÑету</string> + <string name="icon_content_description">Диалог белгішеÑÑ–</string> + <string name="item_view_role_description">Қойынды</string> + <string name="material_clock_toggle_content_description">\"AM\" немеÑе \"PM\" форматын таңдау</string> + <string name="material_hour_24h_suffix">Сағат: %1$s</string> + <string name="material_hour_selection">Сағатты таңдау</string> + <string name="material_hour_suffix">Сағат: %1$s</string> + <string name="material_minute_selection">Минут таңдау</string> + <string name="material_minute_suffix">%1$s минут</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Уақытты енгізу үшін Ñағат режиміне өтіңіз.</string> + <string name="material_timepicker_hour">Сағат</string> + <string name="material_timepicker_minute">Mинут</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Уақытты таңдау</string> + <string name="material_timepicker_text_input_mode_description">Уақытты енгізу үшін мәтін енгізу режиміне өтіңіз.</string> + <string name="mtrl_badge_numberless_content_description">Жаңа хабарландыру</string> + <string name="mtrl_chip_close_icon_content_description">%1$s мазмұнын өшіру</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d Ñанынан көп жаңа хабарландыру</string> + <string name="mtrl_picker_a11y_next_month">КелеÑÑ– айға өту</string> + <string name="mtrl_picker_a11y_prev_month">Ðлдыңғы айға өту</string> + <string name="mtrl_picker_announce_current_selection">Ðғымдағы таңдау: %1$s</string> + <string name="mtrl_picker_cancel">Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚Ñƒ</string> + <string name="mtrl_picker_confirm">Жарайды</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Күнді таңдау</string> + <string name="mtrl_picker_date_header_unselected">Таңдалған күн</string> + <string name="mtrl_picker_day_of_week_column_header">Күндер бағаны: %1$s</string> + <string name="mtrl_picker_invalid_format">Формат жарамÑыз.</string> + <string name="mtrl_picker_invalid_format_example">МыÑал: %1$s.</string> + <string name="mtrl_picker_invalid_format_use">Жарамды формат: %1$s.</string> + <string name="mtrl_picker_invalid_range">Ðуқым жарамÑыз.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s жылына жылжу</string> + <string name="mtrl_picker_out_of_range">Ðуқымнан тыc: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">БаÑталу күні – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – аÑқталу күні</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Ðралықты таңдау</string> + <string name="mtrl_picker_range_header_unselected">БаÑталу күні – аÑқталу күні</string> + <string name="mtrl_picker_save">Сақтау</string> + <string name="mtrl_picker_text_input_date_hint">Күні</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ÐÑқталу күні</string> + <string name="mtrl_picker_text_input_date_range_start_hint">БаÑталу күні</string> + <string name="mtrl_picker_text_input_day_abbr">к</string> + <string name="mtrl_picker_text_input_month_abbr">а</string> + <string name="mtrl_picker_text_input_year_abbr">ж</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Күнтізбенің енгізу режиміне ауыÑу</string> + <string name="mtrl_picker_toggle_to_day_selection">Күнді таңдауға ауыÑу үшін түртіңіз.</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Мәтін енгізу режиміне ауыÑу</string> + <string name="mtrl_picker_toggle_to_year_selection">Жылды таңдауға ауыÑу үшін түртіңіз.</string> + <string name="mtrl_timepicker_cancel">Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚Ñƒ</string> + <string name="mtrl_timepicker_confirm">Жарайды</string> + <string name="password_toggle_content_description">ÒšÒ±Ð¿Ð¸Ñ Ñөзді көрÑету</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-km/values-km.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..9270abbf756cbcb23b66ab034b6a0aced458859d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-km/values-km.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">ការជូនដំណឹងážáŸ’មី %d</item> + <item quantity="other">ការជូនដំណឹងážáŸ’មី %d</item> + </plurals> + <string name="bottomsheet_action_collapse">បង្រួមសន្លឹក​ážáž¶áž„ក្រោម</string> + <string name="bottomsheet_action_expand">ពង្រីកសន្លឹក​ážáž¶áž„ក្រោម</string> + <string name="bottomsheet_action_expand_halfway">ពង្រីក​ពាក់កណ្ដាល</string> + <string name="bottomsheet_drag_handle_clicked">បានប៉ះដង​អូស​ពីរដង</string> + <string name="bottomsheet_drag_handle_content_description">ដង​អូស</string> + <string name="character_counter_content_description">ážáž½â€‹áž¢áž€áŸ’សរ​បាន​បញ្ចូល​ %1$d នៃ %2$d</string> + <string name="character_counter_overflowed_content_description">ដែនកំណážáŸ‹ážáž½áž¢áž€áŸ’សរបានលើស %1$d នៃ %2$d</string> + <string name="clear_text_end_icon_content_description">សម្អាážáž¢áž€áŸ’សរ</string> + <string name="error_icon_content_description">បញ្ហា</string> + <string name="exposed_dropdown_menu_content_description">បង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះ</string> + <string name="icon_content_description">រូប​ប្រអប់បញ្ចូល</string> + <string name="item_view_role_description">ផ្ទាំង</string> + <string name="material_clock_toggle_content_description">ជ្រើសរើស AM ឬ PM</string> + <string name="material_hour_24h_suffix">%1$s ម៉ោង</string> + <string name="material_hour_selection">ជ្រើសរើសម៉ោង</string> + <string name="material_hour_suffix">ម៉ោង %1$s</string> + <string name="material_minute_selection">ជ្រើស​នាទី</string> + <string name="material_minute_suffix">%1$s នាទី</string> + <string name="material_timepicker_am">ព្រឹក</string> + <string name="material_timepicker_clock_mode_description">ប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។</string> + <string name="material_timepicker_hour">ម៉ោង</string> + <string name="material_timepicker_minute">នាទី​</string> + <string name="material_timepicker_pm">ល្ងាច</string> + <string name="material_timepicker_select_time">ជ្រើស​ម៉ោង</string> + <string name="material_timepicker_text_input_mode_description">ប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។</string> + <string name="mtrl_badge_numberless_content_description">ការជូនដំណឹងážáŸ’មី</string> + <string name="mtrl_chip_close_icon_content_description">លុប %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">ការជូនដំណឹង​ážáŸ’មីៗ​លើស %1$d ហើយ</string> + <string name="mtrl_picker_a11y_next_month">ប្ដូរ​ទៅ​ážáŸ‚បន្ទាប់</string> + <string name="mtrl_picker_a11y_prev_month">ប្ដូរ​ទៅ​ážáŸ‚មុន</string> + <string name="mtrl_picker_announce_current_selection">ការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s</string> + <string name="mtrl_picker_cancel">បោះ​បង់</string> + <string name="mtrl_picker_confirm">យល់ព្រម</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ជ្រើសរើស​កាល​បរិច្ឆáŸáž‘</string> + <string name="mtrl_picker_date_header_unselected">កាលបរិច្ឆáŸáž‘ដែលបាន​ជ្រើសរើស</string> + <string name="mtrl_picker_day_of_week_column_header">ជួរឈរ​នៃ​ážáŸ’ងៃ៖ %1$s</string> + <string name="mtrl_picker_invalid_format">ទម្រង់មិន​ážáŸ’រឹមážáŸ’រូវទáŸáŸ”</string> + <string name="mtrl_picker_invalid_format_example">ឧទាហរណáŸáŸ– %1$s</string> + <string name="mtrl_picker_invalid_format_use">ប្រើ៖ %1$s</string> + <string name="mtrl_picker_invalid_range">ជួរ​មិនážáŸ’រឹមážáŸ’រូវទáŸáŸ”</string> + <string name="mtrl_picker_navigate_to_year_description">ប្ដូរទៅ​ឆ្នាំ %1$s</string> + <string name="mtrl_picker_out_of_range">នៅក្រៅ​ជួរ៖ %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">កាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – កាលបរិច្ឆáŸáž‘​បញ្ចប់</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">ជ្រើស​រើស​ចន្លោះ</string> + <string name="mtrl_picker_range_header_unselected">កាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – កាលបរិច្ឆáŸáž‘​បញ្ចប់</string> + <string name="mtrl_picker_save">រក្សាទុក</string> + <string name="mtrl_picker_text_input_date_hint">កាលបរិច្ឆáŸáž‘</string> + <string name="mtrl_picker_text_input_date_range_end_hint">កាល​បរិច្ឆáŸáž‘​បញ្ចប់</string> + <string name="mtrl_picker_text_input_date_range_start_hint">កាល​បរិច្ឆáŸáž‘​ចាប់ផ្ដើម</string> + <string name="mtrl_picker_text_input_day_abbr">áž</string> + <string name="mtrl_picker_text_input_month_abbr">áž</string> + <string name="mtrl_picker_text_input_year_abbr">ឆ</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ប្ដូរទៅ​របៀប​បញ្ចូល​ប្រážáž·áž‘áž·áž“</string> + <string name="mtrl_picker_toggle_to_day_selection">ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសážáŸ’ងៃ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរ</string> + <string name="mtrl_picker_toggle_to_year_selection">ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសឆ្នាំ</string> + <string name="mtrl_timepicker_cancel">បោះបង់</string> + <string name="mtrl_timepicker_confirm">យល់ព្រម</string> + <string name="password_toggle_content_description">បង្ហាញពាក្យសម្ងាážáŸ‹</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kn/values-kn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..437dfd882f70c5dc39491ecb396dcea1f3f41ed1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-kn/values-kn.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³</item> + <item quantity="other">%d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³</item> + </plurals> + <string name="bottomsheet_action_collapse">ಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ಕà³à²—à³à²—ಿಸಿ</string> + <string name="bottomsheet_action_expand">ಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ವಿಸà³à²¤à²°à²¿à²¸à²¿</string> + <string name="bottomsheet_action_expand_halfway">ಅರà³à²§à²¦à²·à³à²Ÿà³ ವಿಸà³à²¤à²°à²¿à²¸à²¿</string> + <string name="bottomsheet_drag_handle_clicked">ಹà³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ ಎಂಬà³à²¦à²¨à³à²¨à³ ಡಬಲà³-ಟà³à²¯à²¾à²ªà³ ಮಾಡಲಾಗಿದೆ</string> + <string name="bottomsheet_drag_handle_content_description">ಹà³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ</string> + <string name="character_counter_content_description">%2$d ರಲà³à²²à²¿ %1$d ಅಕà³à²·à²°à²—ಳನà³à²¨à³ ನಮೂದಿಸಲಾಗಿದೆ</string> + <string name="character_counter_overflowed_content_description">ಅಕà³à²·à²° ಮಿತಿಯೠ%2$d ರಲà³à²²à²¿ %1$d ಮೀರಿದೆ</string> + <string name="clear_text_end_icon_content_description">ಪಠà³à²¯ ತೆರವà³à²—ೊಳಿಸಿ</string> + <string name="error_icon_content_description">ದೋಷ</string> + <string name="exposed_dropdown_menu_content_description">ಡà³à²°à²¾à²ªà³â€Œà²¡à³Œà²¨à³ ಮೆನೠತೋರಿಸಿ</string> + <string name="icon_content_description">ಡೈಲಾಗೠà²à²•ಾನà³</string> + <string name="item_view_role_description">ಟà³à²¯à²¾à²¬à³</string> + <string name="material_clock_toggle_content_description">ಬೆಳಿಗà³à²—ೆ ಅಥವಾ ಮಧà³à²¯à²¾à²¹à³à²¨ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="material_hour_24h_suffix">%1$s ಗಂಟೆಗಳà³</string> + <string name="material_hour_selection">ಸಮಯವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="material_hour_suffix">%1$s ಗಂಟೆ</string> + <string name="material_minute_selection">ನಿಮಿಷಗಳನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="material_minute_suffix">%1$s ನಿಮಿಷಗಳà³</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">ಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಗಡಿಯಾರದ ನಮೂನೆಗೆ ಬದಲಿಸಿ.</string> + <string name="material_timepicker_hour">ಗಂಟೆ</string> + <string name="material_timepicker_minute">ನಿಮಿಷ</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">ಸಮಯವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="material_timepicker_text_input_mode_description">ಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಪಠà³à²¯à²¦ ನಮೂನೆಗೆ ಬದಲಿಸಿ.</string> + <string name="mtrl_badge_numberless_content_description">ಹೊಸ ಅಧಿಸೂಚನೆ</string> + <string name="mtrl_chip_close_icon_content_description">%1$s ಅನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•ಿ</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d ಕà³à²•ಿಂತ ಹೆಚà³à²šà³ ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³</string> + <string name="mtrl_picker_a11y_next_month">ಮà³à²‚ದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ</string> + <string name="mtrl_picker_a11y_prev_month">ಹಿಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ</string> + <string name="mtrl_picker_announce_current_selection">ಪà³à²°à²¸à³à²¤à³à²¤ ಆಯà³à²•ೆ: %1$s</string> + <string name="mtrl_picker_cancel">ರದà³à²¦à³à²®à²¾à²¡à²¿</string> + <string name="mtrl_picker_confirm">ಸರಿ</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="mtrl_picker_date_header_unselected">ದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಲಾಗಿದೆ</string> + <string name="mtrl_picker_day_of_week_column_header">ದಿನಗಳ ಕಾಲಮà³: %1$s</string> + <string name="mtrl_picker_invalid_format">ಅಮಾನà³à²¯à²µà²¾à²¦ ಫಾರà³à²®à³à²¯à²¾à²Ÿà³.</string> + <string name="mtrl_picker_invalid_format_example">ಉದಾಹರಣೆ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ಇದನà³à²¨à³ ಬಳಸಿ: %1$s</string> + <string name="mtrl_picker_invalid_range">ಅಮಾನà³à²¯ ಶà³à²°à³‡à²£à²¿.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s ವರà³à²·à²•à³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ</string> + <string name="mtrl_picker_out_of_range">ವà³à²¯à²¾à²ªà³à²¤à²¿à²¯ ಹೊರಗಿದೆ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">ಶà³à²°à³‡à²£à²¿à²¯à²¨à³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ</string> + <string name="mtrl_picker_range_header_unselected">ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ</string> + <string name="mtrl_picker_save">ಉಳಿಸಿ</string> + <string name="mtrl_picker_text_input_date_hint">ದಿನಾಂಕ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ</string> + <string name="mtrl_picker_text_input_day_abbr">ದಿ</string> + <string name="mtrl_picker_text_input_month_abbr">ತಿ</string> + <string name="mtrl_picker_text_input_year_abbr">ವ</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ಕà³à²¯à²¾à²²à³†à²‚ಡರೠಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿ</string> + <string name="mtrl_picker_toggle_to_day_selection">ದಿನವನà³à²¨à³ ಆಯà³à²•ೆಗಾಗಿ ಬದಲಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ಪಠà³à²¯ ಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿ</string> + <string name="mtrl_picker_toggle_to_year_selection">ವರà³à²·à²µà²¨à³à²¨à³ ಆಯà³à²•ೆಗಾಗಿ ಬದಲಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿ</string> + <string name="mtrl_timepicker_cancel">ರದà³à²¦à³à²®à²¾à²¡à²¿</string> + <string name="mtrl_timepicker_confirm">ಸರಿ</string> + <string name="password_toggle_content_description">ಪಾಸà³â€Œà²µà²°à³à²¡à³ ತೋರಿಸಿ</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ko/values-ko.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..4690fe3e3af57bccf77c52950d89b87b338fc8a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ko/values-ko.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">새 알림 %dê°œ</item> + <item quantity="other">새 알림 %dê°œ</item> + </plurals> + <string name="bottomsheet_action_collapse">하단 시트 ì ‘ê¸°</string> + <string name="bottomsheet_action_expand">하단 시트 펼치기</string> + <string name="bottomsheet_action_expand_halfway">반만 펼치기</string> + <string name="bottomsheet_drag_handle_clicked">ë‘ ë²ˆ íƒí•œ 드래그 핸들</string> + <string name="bottomsheet_drag_handle_content_description">드래그 핸들</string> + <string name="character_counter_content_description">ìž…ë ¥ëœ ê¸€ìž %1$d/%2$d</string> + <string name="character_counter_overflowed_content_description">ê¸€ìž ìˆ˜ ì œí•œì´ ì´ˆê³¼ë˜ì—ˆìŠµë‹ˆë‹¤(%1$d/%2$d).</string> + <string name="clear_text_end_icon_content_description">í…스트 ì‚ì œ</string> + <string name="error_icon_content_description">오류</string> + <string name="exposed_dropdown_menu_content_description">드ë¡ë‹¤ìš´ 메뉴 표시</string> + <string name="icon_content_description">대화ìƒìž ì•„ì´ì½˜</string> + <string name="item_view_role_description">íƒ</string> + <string name="material_clock_toggle_content_description">ì˜¤ì „ ë˜ëŠ” 오후를 ì„ íƒí•˜ì„¸ìš”.</string> + <string name="material_hour_24h_suffix">%1$s시간</string> + <string name="material_hour_selection">시간 ì„ íƒ</string> + <string name="material_hour_suffix">%1$s시 ì •ê°</string> + <string name="material_minute_selection">ë¶„ ì„ íƒ</string> + <string name="material_minute_suffix">%1$së¶„</string> + <string name="material_timepicker_am">ì˜¤ì „</string> + <string name="material_timepicker_clock_mode_description">시간 ìž…ë ¥ì„ ìœ„í•´ 시계 모드로 ì „í™˜í•©ë‹ˆë‹¤.</string> + <string name="material_timepicker_hour">시간</string> + <string name="material_timepicker_minute">ë¶„</string> + <string name="material_timepicker_pm">오후</string> + <string name="material_timepicker_select_time">시간 ì„ íƒ</string> + <string name="material_timepicker_text_input_mode_description">시간 ìž…ë ¥ì„ ìœ„í•´ í…스트 ìž…ë ¥ 모드로 ì „í™˜í•©ë‹ˆë‹¤.</string> + <string name="mtrl_badge_numberless_content_description">새 알림</string> + <string name="mtrl_chip_close_icon_content_description">%1$s ì‚ì œ</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">새 알림 %1$dê°œ 초과</string> + <string name="mtrl_picker_a11y_next_month">ë‹¤ìŒ ë‹¬ë¡œ 변경</string> + <string name="mtrl_picker_a11y_prev_month">ì´ì „ 달로 변경</string> + <string name="mtrl_picker_announce_current_selection">현재 %1$s ì„ íƒë¨</string> + <string name="mtrl_picker_cancel">취소</string> + <string name="mtrl_picker_confirm">확ì¸</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ë‚ ì§œ ì„ íƒ</string> + <string name="mtrl_picker_date_header_unselected">ì„ íƒí•œ ë‚ ì§œ</string> + <string name="mtrl_picker_day_of_week_column_header">ìš”ì¼ ì—´: %1$s</string> + <string name="mtrl_picker_invalid_format">형ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.</string> + <string name="mtrl_picker_invalid_format_example">예: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s 사용</string> + <string name="mtrl_picker_invalid_range">ë‚ ì§œ 범위가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s년으로 ì´ë™</string> + <string name="mtrl_picker_out_of_range">%1$sì€(는) 범위를 벗어난 ë‚ ì§œìž…ë‹ˆë‹¤.</string> + <string name="mtrl_picker_range_header_only_end_selected">시작ì¼~%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s~종료ì¼</string> + <string name="mtrl_picker_range_header_selected">%1$s~%2$s</string> + <string name="mtrl_picker_range_header_title">기간 ì„ íƒ</string> + <string name="mtrl_picker_range_header_unselected">시작ì¼~종료ì¼</string> + <string name="mtrl_picker_save">ì €ìž¥</string> + <string name="mtrl_picker_text_input_date_hint">ë‚ ì§œ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">종료ì¼</string> + <string name="mtrl_picker_text_input_date_range_start_hint">시작ì¼</string> + <string name="mtrl_picker_text_input_day_abbr">ì¼</string> + <string name="mtrl_picker_text_input_month_abbr">ì›”</string> + <string name="mtrl_picker_text_input_year_abbr">ë…„</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ìº˜ë¦°ë” ìž…ë ¥ 모드로 ì „í™˜</string> + <string name="mtrl_picker_toggle_to_day_selection">íƒí•˜ì—¬ ìš”ì¼ ì„ íƒìœ¼ë¡œ ì „í™˜</string> + <string name="mtrl_picker_toggle_to_text_input_mode">í…스트 ìž…ë ¥ 모드로 ì „í™˜</string> + <string name="mtrl_picker_toggle_to_year_selection">íƒí•˜ì—¬ ì—°ë„ ì„ íƒìœ¼ë¡œ ì „í™˜</string> + <string name="mtrl_timepicker_cancel">취소</string> + <string name="mtrl_timepicker_confirm">확ì¸</string> + <string name="password_toggle_content_description">비밀번호 표시</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ky/values-ky.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..235280c151d653e0a6fc61fc4f63339791ffee51 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ky/values-ky.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d жаңы билдирме</item> + <item quantity="other">%d жаңы билдирме</item> + </plurals> + <string name="bottomsheet_action_collapse">Ылдыйкы Ñкранды жыйыштыруу</string> + <string name="bottomsheet_action_expand">Ылдыйкы Ñкранды жайып көрÑөтүү</string> + <string name="bottomsheet_action_expand_halfway">Жарымын жайып көрÑөтүү</string> + <string name="bottomsheet_drag_handle_clicked">Ðки жолу таптап, тизменин керектүү жерине Ñүйрөп баруу</string> + <string name="bottomsheet_drag_handle_content_description">Тизменин керектүү жерине Ñүйрөп баруу</string> + <string name="character_counter_content_description">%2$d ичинен %1$d Ñимвол киргизилди</string> + <string name="character_counter_overflowed_content_description">Символдордун Ñаны коюлган %2$d чегинен %1$d Ñимволго ашып кетти</string> + <string name="clear_text_end_icon_content_description">ТекÑтти тазалоо</string> + <string name="error_icon_content_description">Ката</string> + <string name="exposed_dropdown_menu_content_description">Түрүлмө менюну көрÑөтүү</string> + <string name="icon_content_description">Диалог ÑүрөтчөÑÒ¯</string> + <string name="item_view_role_description">Өтмөк</string> + <string name="material_clock_toggle_content_description">Тандоо: AM же PM</string> + <string name="material_hour_24h_suffix">%1$s Ñаат</string> + <string name="material_hour_selection">Саат тандоо</string> + <string name="material_hour_suffix">Саат %1$s</string> + <string name="material_minute_selection">Мүнөттөрдү тандаңыз</string> + <string name="material_minute_suffix">%1$s мүнөт</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Убакытты дубал Ñаатынын режиминде киргизиңиз.</string> + <string name="material_timepicker_hour">Саат</string> + <string name="material_timepicker_minute">Мүнөт</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Убакыт тандоо</string> + <string name="material_timepicker_text_input_mode_description">Убакытты текÑÑ‚ киргизүү режиминде киргизиңиз.</string> + <string name="mtrl_badge_numberless_content_description">Жаңы билдирме</string> + <string name="mtrl_chip_close_icon_content_description">Мазмунду алып Ñалуу (%1$s)</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d ашуун жаңы билдирме</string> + <string name="mtrl_picker_a11y_next_month">Кийинки айга өзгөртүү</string> + <string name="mtrl_picker_a11y_prev_month">Мурунку айга өзгөртүү</string> + <string name="mtrl_picker_announce_current_selection">Учурдагы тандоо: %1$s</string> + <string name="mtrl_picker_cancel">Жокко чыгаруу</string> + <string name="mtrl_picker_confirm">Жарайт</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Күн тандоо</string> + <string name="mtrl_picker_date_header_unselected">Тандалган күн</string> + <string name="mtrl_picker_day_of_week_column_header">Күндөр тилкеÑи: %1$s</string> + <string name="mtrl_picker_invalid_format">ЖаракÑыз формат.</string> + <string name="mtrl_picker_invalid_format_example">МиÑалы: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s формтын колднуңуз</string> + <string name="mtrl_picker_invalid_range">ЖаракÑыз диапазон.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s-жылга өтүү</string> + <string name="mtrl_picker_out_of_range">Диапазондон тышкары: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Баштоо күнү – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ÐÑктоо күнү</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Даталар диапазонун тандоо</string> + <string name="mtrl_picker_range_header_unselected">Баштоо күнү – ÐÑктоо күнү</string> + <string name="mtrl_picker_save">Сактоо</string> + <string name="mtrl_picker_text_input_date_hint">Күн</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Качан аÑктайт</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Баштоо күнү</string> + <string name="mtrl_picker_text_input_day_abbr">к</string> + <string name="mtrl_picker_text_input_month_abbr">а</string> + <string name="mtrl_picker_text_input_year_abbr">ж</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Жылнаамага иш-чара киргизүү режимине которулуу</string> + <string name="mtrl_picker_toggle_to_day_selection">Күн тандоо үчүн таптап коюңуз</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ТекÑÑ‚ киргизүү режимине которулуу</string> + <string name="mtrl_picker_toggle_to_year_selection">Жыл тандоо үчүн таптап коюңуз</string> + <string name="mtrl_timepicker_cancel">Жокко чыгаруу</string> + <string name="mtrl_timepicker_confirm">Жарайт</string> + <string name="password_toggle_content_description">СырÑөздү көрÑөтүү</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-land/values-land.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-land/values-land.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ca4641d7b8df87a6f70b6398ad50c128d7ef5bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-land/values-land.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="material_time_picker_minimum_screen_height">450dp</dimen> + <dimen name="material_time_picker_minimum_screen_width">600dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_bottom">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_end">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_start">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_top">24dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">20dp</dimen> + <dimen name="mtrl_calendar_header_content_padding">4dp</dimen> + <dimen name="mtrl_calendar_header_height_fullscreen">96dp</dimen> + <dimen name="mtrl_calendar_header_toggle_margin_bottom">0dp</dimen> + <dimen name="mtrl_calendar_header_toggle_margin_top">0dp</dimen> + <dimen name="mtrl_calendar_landscape_header_width">104dp</dimen> + <dimen name="mtrl_calendar_selection_baseline_to_top_fullscreen">68dp</dimen> + <dimen name="mtrl_calendar_selection_text_baseline_to_bottom_fullscreen">28dp</dimen> + <dimen name="mtrl_calendar_selection_text_baseline_to_top">64dp</dimen> + <dimen name="mtrl_calendar_text_input_padding_top">32dp</dimen> + <dimen name="mtrl_calendar_title_baseline_to_top">24dp</dimen> + <dimen name="mtrl_calendar_title_baseline_to_top_fullscreen">32dp</dimen> + <integer name="mtrl_calendar_header_orientation">0</integer> + <integer name="mtrl_calendar_selection_text_lines">6</integer> + <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout"> + <item name="tabGravity">center</item> + <item name="tabMode">fixed</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection" parent="Widget.AppCompat.TextView"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_gravity">top|start</item> + <item name="android:textAppearance">?attr/textAppearanceHeadline6</item> + <item name="android:textColor">?attr/colorOnPrimary</item> + <item name="android:maxLines">@integer/mtrl_calendar_selection_text_lines</item> + <item name="android:ellipsize">end</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen"> + <item name="android:textAppearance">?attr/textAppearanceHeadline6</item> + <item name="android:maxLines">1</item> + <item name="autoSizeMaxTextSize">20sp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton"> + <item name="android:layout_gravity">bottom|start</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-large-v4/values-large-v4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..e74395ea38ed07a9c82e4cdfeafb212536f2f2e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-large-v4/values-large-v4.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Dialog.FixedSize"/> + <style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.Dialog.FixedSize"/> + <style name="Theme.Material3.Dark.DialogWhenLarge" parent="Base.Theme.Material3.Dark.Dialog"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Theme.Material3.Light.DialogWhenLarge" parent="Base.Theme.Material3.Light.Dialog"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ldrtl-v17/values-ldrtl-v17.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ldrtl-v17/values-ldrtl-v17.xml new file mode 100644 index 0000000000000000000000000000000000000000..0096540f4a4005bb13c91c7e7d338c0a19f9af19 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ldrtl-v17/values-ldrtl-v17.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="material_ic_keyboard_arrow_next_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_left_black_24dp</item> + <item name="material_ic_keyboard_arrow_previous_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_right_black_24dp</item> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lo/values-lo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lo/values-lo.xml new file mode 100644 index 0000000000000000000000000000000000000000..79743377aad67599a223948cd1e13719077f37c4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lo/values-lo.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ</item> + <item quantity="other">%d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ</item> + </plurals> + <string name="bottomsheet_action_collapse">ຫàºà»à»‰àºŠàºµàº”ລຸ່ມສຸດລົງ</string> + <string name="bottomsheet_action_expand">ຂະຫàºàº²àºàºŠàºµàº”ລຸ່ມສຸດ</string> + <string name="bottomsheet_action_expand_halfway">ຂະຫàºàº²àºàºàºàºà»€àº„ິ່ງໜຶ່ງ</string> + <string name="bottomsheet_drag_handle_clicked">à»àº•ະບ່àºàº™àºˆàº±àºšàº¥àº²àºàºªàºàº‡à»€àº—ື່àºà»àº¥à»‰àº§</string> + <string name="bottomsheet_drag_handle_content_description">ບ່àºàº™àºˆàº±àºšàº¥àº²àº</string> + <string name="character_counter_content_description">ຕົວàºàº±àºàºªàºàº™àº—ີ່ປ້àºàº™à»€àº‚ົ້າ %1$d ຕົວຈາàºàº—ັງà»àº»àº” %2$d ຕົວ</string> + <string name="character_counter_overflowed_content_description">ຂີດຈຳàºàº±àº”ຕົວàºàº±àºàºªàºàº™à»€àºàºµàº™ %1$d ຈາàºàº—ັງà»àº»àº” %2$d</string> + <string name="clear_text_end_icon_content_description">ລຶບລ້າງຂà»à»‰àº„ວາມ</string> + <string name="error_icon_content_description">ຜິດພາດ</string> + <string name="exposed_dropdown_menu_content_description">ສະà»àº”ງເມນູເລື່àºàº™àº¥àº»àº‡</string> + <string name="icon_content_description">ໄàºàº„àºàº™àºà»ˆàºàº‡à»‚ຕ້ຕàºàºš</string> + <string name="item_view_role_description">à»àº–ບ</string> + <string name="material_clock_toggle_content_description">ເລືàºàºàº•àºàº™à»€àºŠàº»à»‰àº² ຫຼື ຕàºàº™à»àº¥àº‡</string> + <string name="material_hour_24h_suffix">%1$s ຊົ່ວໂມງ</string> + <string name="material_hour_selection">ເລືàºàºàºŠàº»à»ˆàº§à»‚ມງ</string> + <string name="material_hour_suffix">%1$s ໂມງ</string> + <string name="material_minute_selection">ເລືàºàºàº™àº²â€‹àº—ີ</string> + <string name="material_minute_suffix">%1$s ນາທີ</string> + <string name="material_timepicker_am">ໂມງເຊົ້າ</string> + <string name="material_timepicker_clock_mode_description">ສະຫຼັບໄປໃຊ້ໂà»àº”ໂມງສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².</string> + <string name="material_timepicker_hour">ຊົ່ວໂມງ</string> + <string name="material_timepicker_minute">ນາທີ</string> + <string name="material_timepicker_pm">ໂມງà»àº¥àº‡</string> + <string name="material_timepicker_select_time">ເລືàºàºà»€àº§â€‹àº¥àº²</string> + <string name="material_timepicker_text_input_mode_description">ສະຫຼັບໄປໃຊ້ໂà»àº”ປ້àºàº™àº‚à»à»‰àº„ວາມສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².</string> + <string name="mtrl_badge_numberless_content_description">àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ</string> + <string name="mtrl_chip_close_icon_content_description">ລຶບ %1$s àºàºàº</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆàº«àº¼àº²àºàºàº§à»ˆàº² %1$d ລາàºàºàº²àº™</string> + <string name="mtrl_picker_a11y_next_month">ປ່ຽນເປັນເດືàºàº™àº•à»à»ˆà»„ປ</string> + <string name="mtrl_picker_a11y_prev_month">ປ່ຽນເປັນເດືàºàº™àºœà»ˆàº²àº™àº¡àº²</string> + <string name="mtrl_picker_announce_current_selection">àºàº²àº™à»€àº¥àº·àºàºàº›àº±àº”ຈຸບັນ: %1$s</string> + <string name="mtrl_picker_cancel">àºàº»àºà»€àº¥àºµàº</string> + <string name="mtrl_picker_confirm">ຕົàºàº¥àº»àº‡</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ເລືàºàºàº§àº±àº™àº—ີ</string> + <string name="mtrl_picker_date_header_unselected">ເລືàºàºàº§àº±àº™àº—ີ</string> + <string name="mtrl_picker_day_of_week_column_header">ຖັນມື້: %1$s</string> + <string name="mtrl_picker_invalid_format">ຮູບà»àºšàºšàºšà»à»ˆàº–ືàºàº•້àºàº‡.</string> + <string name="mtrl_picker_invalid_format_example">ຕົວຢ່າງ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ໃຊ້: %1$s</string> + <string name="mtrl_picker_invalid_range">ໄລàºàº°àºšà»à»ˆàº–ືàºàº•້àºàº‡.</string> + <string name="mtrl_picker_navigate_to_year_description">ເລື່àºàº™à»„ປປີ %1$s</string> + <string name="mtrl_picker_out_of_range">ຢູ່ນàºàºàºŠà»ˆàº§àº‡àº§àº±àº™àº—ີ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ວັນທີເລີ່ມຕົ້ນ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ວັນທີສິ້ນສຸດ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">ເລືàºàºàºŠà»ˆàº§àº‡</string> + <string name="mtrl_picker_range_header_unselected">ວັນທີເລີ່ມຕົ້ນ – ວັນທີສິ້ນສຸດ</string> + <string name="mtrl_picker_save">ບັນທຶàº</string> + <string name="mtrl_picker_text_input_date_hint">ວັນທີ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ວັນທີສິ້ນສຸດ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ວັນທີເລີ່ມ</string> + <string name="mtrl_picker_text_input_day_abbr">ວ</string> + <string name="mtrl_picker_text_input_month_abbr">ດ</string> + <string name="mtrl_picker_text_input_year_abbr">ປ</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº›àº°àº•ິທິນ</string> + <string name="mtrl_picker_toggle_to_day_selection">à»àº•ະເພື່àºàº›à»ˆàº½àº™à»€àº›àº±àº™àºàº²àº™à»€àº¥àº·àºàºàº¡àº·à»‰</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº‚à»à»‰àº„ວາມ</string> + <string name="mtrl_picker_toggle_to_year_selection">à»àº•ະເພື່àºàº›à»ˆàº½àº™à»€àº›àº±àº™àºàº²àº™à»€àº¥àº·àºàºàº›àºµ</string> + <string name="mtrl_timepicker_cancel">àºàº»àºà»€àº¥àºµàº</string> + <string name="mtrl_timepicker_confirm">ຕົàºàº¥àº»àº‡</string> + <string name="password_toggle_content_description">ສະà»àº”ງລະຫັດຜ່ານ</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lt/values-lt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lt/values-lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c30fae471f6e742e36d822ea1baf1e064984727 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lt/values-lt.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d naujas praneÅ¡imas</item> + <item quantity="few">%d nauji praneÅ¡imai</item> + <item quantity="many">%d naujo praneÅ¡imo</item> + <item quantity="other">%d naujų praneÅ¡imų</item> + </plurals> + <string name="bottomsheet_action_collapse">Sutraukti apatinį lapÄ…</string> + <string name="bottomsheet_action_expand">IÅ¡skleisti apatinį lapÄ…</string> + <string name="bottomsheet_action_expand_halfway">IÅ¡skleisti iki pusÄ—s</string> + <string name="bottomsheet_drag_handle_clicked">Vilkimo rankenÄ—lÄ— dukart paliesta</string> + <string name="bottomsheet_drag_handle_content_description">Vilkimo rankenÄ—lÄ—</string> + <string name="character_counter_content_description">Ä®vesta simbolių: %1$d iÅ¡ %2$d</string> + <string name="character_counter_overflowed_content_description">VirÅ¡ytas simbolių skaiÄius: %1$d iÅ¡ %2$d</string> + <string name="clear_text_end_icon_content_description">IÅ¡valyti tekstÄ…</string> + <string name="error_icon_content_description">Klaida</string> + <string name="exposed_dropdown_menu_content_description">Rodyti iÅ¡skleidžiamÄ…jį meniu</string> + <string name="icon_content_description">Dialogo lango piktograma</string> + <string name="item_view_role_description">Skirtukas</string> + <string name="material_clock_toggle_content_description">Pasirinkite „iki pietų“ arba „po pietų“</string> + <string name="material_hour_24h_suffix">%1$s val.</string> + <string name="material_hour_selection">Pasirinkite valandÄ…</string> + <string name="material_hour_suffix">%1$s val.</string> + <string name="material_minute_selection">Pasirinkite minutes</string> + <string name="material_minute_suffix">%1$s min.</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Laiko įvestį pateikti perjungus į laikrodžio režimÄ….</string> + <string name="material_timepicker_hour">Valanda</string> + <string name="material_timepicker_minute">MinutÄ—</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Pasirinkite laikÄ…</string> + <string name="material_timepicker_text_input_mode_description">Laiko įvestį pateikti perjungus į teksto įvesties režimÄ….</string> + <string name="mtrl_badge_numberless_content_description">Naujas praneÅ¡imas</string> + <string name="mtrl_chip_close_icon_content_description">PaÅ¡alinti %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Naujų praneÅ¡imų: daugiau nei %1$d</string> + <string name="mtrl_picker_a11y_next_month">Pakeisti į kitÄ… mÄ—nesį</string> + <string name="mtrl_picker_a11y_prev_month">Pakeisti į ankstesnį mÄ—nesį</string> + <string name="mtrl_picker_announce_current_selection">Dabartinis pasirinkimas: %1$s</string> + <string name="mtrl_picker_cancel">AtÅ¡aukti</string> + <string name="mtrl_picker_confirm">Gerai</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Pasirinkite datÄ…</string> + <string name="mtrl_picker_date_header_unselected">Pasirinkta data</string> + <string name="mtrl_picker_day_of_week_column_header">Dienų stulpelis: %1$s</string> + <string name="mtrl_picker_invalid_format">Netinkamas formatas.</string> + <string name="mtrl_picker_invalid_format_example">Pavyzdys: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Naudoti: %1$s</string> + <string name="mtrl_picker_invalid_range">Netinkamas diapazonas.</string> + <string name="mtrl_picker_navigate_to_year_description">Eiti į %1$s metus</string> + <string name="mtrl_picker_out_of_range">Nepatenka į diapazonÄ…: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Pradžios data–%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s–pabaigos data</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Pasirinkite diapazonÄ…</string> + <string name="mtrl_picker_range_header_unselected">Pradžios data–pabaigos data</string> + <string name="mtrl_picker_save">IÅ¡saugoti</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Pabaigos data</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Pradžios data</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Perjungti į kalendoriaus įvesties režimÄ…</string> + <string name="mtrl_picker_toggle_to_day_selection">Palieskite, kad perjungtumÄ—te į dienos pasirinkimÄ…</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Perjungti į teksto įvesties režimÄ…</string> + <string name="mtrl_picker_toggle_to_year_selection">Palieskite, kad perjungtumÄ—te į metų pasirinkimÄ…</string> + <string name="mtrl_timepicker_cancel">AtÅ¡aukti</string> + <string name="mtrl_timepicker_confirm">Gerai</string> + <string name="password_toggle_content_description">Rodyti slaptažodį</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lv/values-lv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lv/values-lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..e7fbe15ec8bb08deab50fb9925f739317b582385 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-lv/values-lv.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="zero">%d jaunu paziņojumu</item> + <item quantity="one">%d jauns paziņojums</item> + <item quantity="other">%d jauni paziņojumi</item> + </plurals> + <string name="bottomsheet_action_collapse">Sakļaut ekrÄna apakÅ¡daļas lapu</string> + <string name="bottomsheet_action_expand">IzvÄ“rst ekrÄna apakÅ¡daļas lapu</string> + <string name="bottomsheet_action_expand_halfway">IzvÄ“rst lÄ«dz pusei</string> + <string name="bottomsheet_drag_handle_clicked">Tika veikts dubultskÄriens uz vilkÅ¡anas tura</string> + <string name="bottomsheet_drag_handle_content_description">VilkÅ¡anas turis</string> + <string name="character_counter_content_description">IevadÄ«tÄs rakstzÄ«mes: %1$d no %2$d</string> + <string name="character_counter_overflowed_content_description">PÄrsniegts rakstzÄ«mju skaita ierobežojums (%1$d no %2$d)</string> + <string name="clear_text_end_icon_content_description">NotÄ«rÄ«t tekstu</string> + <string name="error_icon_content_description">Kļūda</string> + <string name="exposed_dropdown_menu_content_description">RÄdÄ«t nolaižamo izvÄ“lni</string> + <string name="icon_content_description">Dialoglodziņa ikona</string> + <string name="item_view_role_description">Cilne</string> + <string name="material_clock_toggle_content_description">Atlasiet “AM†(priekÅ¡pusdienÄ) vai “PM†(pÄ“cpusdienÄ).</string> + <string name="material_hour_24h_suffix">%1$s stundas</string> + <string name="material_hour_selection">Atlasiet stundu</string> + <string name="material_hour_suffix">plkst. %1$s</string> + <string name="material_minute_selection">Atlasiet minÅ«tes.</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Lai ievadÄ«tu laiku, ieslÄ“dziet pulksteņa režīmu.</string> + <string name="material_timepicker_hour">Stunda</string> + <string name="material_timepicker_minute">MinÅ«te</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Laika atlasīšana</string> + <string name="material_timepicker_text_input_mode_description">Lai ievadÄ«tu laiku, ieslÄ“dziet teksta ievades režīmu.</string> + <string name="mtrl_badge_numberless_content_description">Jauns paziņojums</string> + <string name="mtrl_chip_close_icon_content_description">Noņemt: %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">VairÄk nekÄ %1$d jauni paziņojumi</string> + <string name="mtrl_picker_a11y_next_month">PÄriet uz nÄkamo mÄ“nesi</string> + <string name="mtrl_picker_a11y_prev_month">PÄriet uz iepriekšējo mÄ“nesi</string> + <string name="mtrl_picker_announce_current_selection">PaÅ¡reizÄ“jÄ atlase: %1$s</string> + <string name="mtrl_picker_cancel">Atcelt</string> + <string name="mtrl_picker_confirm">Labi</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Atlasiet datumu</string> + <string name="mtrl_picker_date_header_unselected">AtlasÄ«tais datums</string> + <string name="mtrl_picker_day_of_week_column_header">Dienu sleja: %1$s</string> + <string name="mtrl_picker_invalid_format">NederÄ«gs formÄts.</string> + <string name="mtrl_picker_invalid_format_example">PiemÄ“rs: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Izmantojiet: %1$s</string> + <string name="mtrl_picker_invalid_range">NederÄ«gs diapazons.</string> + <string name="mtrl_picker_navigate_to_year_description">PÄriet uz Å¡o gadu: %1$s</string> + <string name="mtrl_picker_out_of_range">Ä€rpus diapazona: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">SÄkuma datums–%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s–beigu datums</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Atlasiet diapazonu</string> + <string name="mtrl_picker_range_header_unselected">SÄkuma datums–beigu datums</string> + <string name="mtrl_picker_save">SaglabÄt</string> + <string name="mtrl_picker_text_input_date_hint">Datums</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Beigu datums</string> + <string name="mtrl_picker_text_input_date_range_start_hint">SÄkuma datums</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">g</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">PÄrslÄ“gties uz kalendÄra ievades režīmu</string> + <string name="mtrl_picker_toggle_to_day_selection">Pieskarties, lai pÄrslÄ“gtos uz dienas atlasīšanu</string> + <string name="mtrl_picker_toggle_to_text_input_mode">PÄrslÄ“gties uz teksta ievades režīmu</string> + <string name="mtrl_picker_toggle_to_year_selection">Pieskarties, lai pÄrslÄ“gtos uz gada atlasīšanu</string> + <string name="mtrl_timepicker_cancel">Atcelt</string> + <string name="mtrl_timepicker_confirm">Labi</string> + <string name="password_toggle_content_description">RÄdÄ«t paroli</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mk/values-mk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mk/values-mk.xml new file mode 100644 index 0000000000000000000000000000000000000000..cd04c264a870891d4b5c47d41050e3127770b5cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mk/values-mk.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ново извеÑтување</item> + <item quantity="other">%d нови извеÑтувања</item> + </plurals> + <string name="bottomsheet_action_collapse">Соберете го долниот лиÑÑ‚</string> + <string name="bottomsheet_action_expand">Проширете го долниот лиÑÑ‚</string> + <string name="bottomsheet_action_expand_halfway">Прошири до половина</string> + <string name="bottomsheet_drag_handle_clicked">Рачката за влечење е допрена двапати</string> + <string name="bottomsheet_drag_handle_content_description">Рачка за влечење</string> + <string name="character_counter_content_description">ВнеÑени Ñе %1$d од %2$d знаци</string> + <string name="character_counter_overflowed_content_description">Ограничувањето на знаците надмина %1$d од %2$d</string> + <string name="clear_text_end_icon_content_description">Избриши го текÑтот</string> + <string name="error_icon_content_description">Грешка</string> + <string name="exposed_dropdown_menu_content_description">Прикажи паѓачко мени</string> + <string name="icon_content_description">Икона за дијалог</string> + <string name="item_view_role_description">Картичка</string> + <string name="material_clock_toggle_content_description">Изберете претпладне или попладне</string> + <string name="material_hour_24h_suffix">%1$s чаÑа</string> + <string name="material_hour_selection">Изберете чаÑ</string> + <string name="material_hour_suffix">%1$s чаÑот</string> + <string name="material_minute_selection">Избери минути</string> + <string name="material_minute_suffix">%1$s минути</string> + <string name="material_timepicker_am">пр.</string> + <string name="material_timepicker_clock_mode_description">Префрлете Ñе на режимот за чаÑовник за да внеÑете време.</string> + <string name="material_timepicker_hour">ЧаÑ</string> + <string name="material_timepicker_minute">Минута</string> + <string name="material_timepicker_pm">по.</string> + <string name="material_timepicker_select_time">Изберете време</string> + <string name="material_timepicker_text_input_mode_description">Префрлете Ñе на режимот за внеÑување текÑÑ‚ за да внеÑете време.</string> + <string name="mtrl_badge_numberless_content_description">Ðово извеÑтување</string> + <string name="mtrl_chip_close_icon_content_description">ОтÑтрани %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Ðад %1$d нови извеÑтувања</string> + <string name="mtrl_picker_a11y_next_month">Промени на Ñледниот меÑец</string> + <string name="mtrl_picker_a11y_prev_month">Промени на претходниот меÑец</string> + <string name="mtrl_picker_announce_current_selection">Тековен избор: %1$s</string> + <string name="mtrl_picker_cancel">Откажи</string> + <string name="mtrl_picker_confirm">Во ред</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Изберете датум</string> + <string name="mtrl_picker_date_header_unselected">Избран датум</string> + <string name="mtrl_picker_day_of_week_column_header">Колона Ñо денови: %1$s</string> + <string name="mtrl_picker_invalid_format">Ðеважечки формат.</string> + <string name="mtrl_picker_invalid_format_example">Пример: %1$s</string> + <string name="mtrl_picker_invalid_format_use">КориÑтете: %1$s</string> + <string name="mtrl_picker_invalid_range">Погрешен опÑег.</string> + <string name="mtrl_picker_navigate_to_year_description">Оди на %1$s година</string> + <string name="mtrl_picker_out_of_range">Ðадвор од опÑег: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Почетен датум - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s - краен датум</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Изберете опÑег</string> + <string name="mtrl_picker_range_header_unselected">Почетен датум - краен датум</string> + <string name="mtrl_picker_save">Зачувај</string> + <string name="mtrl_picker_text_input_date_hint">Датум</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Краен датум</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Почетен датум</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">г</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Префрли на режим за внеÑување во календарот</string> + <string name="mtrl_picker_toggle_to_day_selection">Допрете за да Ñе префрлите на избирање ден</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Префрли на режим за внеÑување текÑÑ‚</string> + <string name="mtrl_picker_toggle_to_year_selection">Допрете за да Ñе префрлите на избирање година</string> + <string name="mtrl_timepicker_cancel">Откажи</string> + <string name="mtrl_timepicker_confirm">Во ред</string> + <string name="password_toggle_content_description">Прикажи ја лозинката</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ml/values-ml.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ml/values-ml.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad56c22e159e1765d12dc2b686d36f42cdfc7651 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ml/values-ml.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ</item> + <item quantity="other">%d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾ</item> + </plurals> + <string name="bottomsheet_action_collapse">ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ à´šàµà´°àµà´•àµà´•àµà´•</string> + <string name="bottomsheet_action_expand">ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ വികസിപàµà´ªà´¿à´•àµà´•àµà´•</string> + <string name="bottomsheet_action_expand_halfway">à´®àµà´´àµà´µà´¨à´¾à´¯à´¿ വികസിപàµà´ªà´¿à´•àµà´•àµà´•</string> + <string name="bottomsheet_drag_handle_clicked">വലിചàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ ഡബിൾ ടാപàµà´ªàµ ചെയàµà´¤àµ</string> + <string name="bottomsheet_drag_handle_content_description">വലിചàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ</string> + <string name="character_counter_content_description">%2$d-ൽ %1$d à´ªàµà´°à´¤àµ€à´•à´™àµà´™àµ¾ നൽകി</string> + <string name="character_counter_overflowed_content_description">à´…à´•àµà´·à´° പരിധി, %2$d-ൽ %1$d കവിഞàµà´žàµ</string> + <string name="clear_text_end_icon_content_description">ടെകàµâ€Œà´¸àµâ€Œà´±àµà´±àµ മായàµâ€Œà´•àµà´•àµà´•</string> + <string name="error_icon_content_description">പിശകàµ</string> + <string name="exposed_dropdown_menu_content_description">à´¡àµà´°àµ‹à´ªàµà´ªàµâ€Œ ഡൗൺ മെനൠകാണികàµà´•àµà´•</string> + <string name="icon_content_description">ഡയലോഗൠà´à´•àµà´•ൺ</string> + <string name="item_view_role_description">ടാബàµ</string> + <string name="material_clock_toggle_content_description">AM à´…à´²àµà´²àµ†à´™àµà´•ിൽ PM തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="material_hour_24h_suffix">%1$s മണി</string> + <string name="material_hour_selection">മണികàµà´•ൂർ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="material_hour_suffix">%1$s മണി</string> + <string name="material_minute_selection">മിനിറàµà´±àµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="material_minute_suffix">%1$s മിനിറàµà´±àµ</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">‌സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ à´•àµà´²àµ‹à´•àµà´•ൠമോഡിലേകàµà´•ൠ‌മാറàµà´•.</string> + <string name="material_timepicker_hour">മണികàµà´•ൂരàµâ€</string> + <string name="material_timepicker_minute">മിനിറàµà´±àµ</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">സമയം തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="material_timepicker_text_input_mode_description">സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ ടെകàµà´¸àµà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ ‌മോ‌ഡിലേകàµà´•ൠ‌മാറàµà´•.</string> + <string name="mtrl_badge_numberless_content_description">à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ</string> + <string name="mtrl_chip_close_icon_content_description">%1$s നീകàµà´•à´‚ ചെയàµà´¯àµà´•</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d-ലധികം à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾ</string> + <string name="mtrl_picker_a11y_next_month">à´…à´Ÿàµà´¤àµà´¤ മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•</string> + <string name="mtrl_picker_a11y_prev_month">à´®àµà´®àµà´ªà´¤àµà´¤àµ† മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•</string> + <string name="mtrl_picker_announce_current_selection">നിലവിൽ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¤àµ: %1$s</string> + <string name="mtrl_picker_cancel">റദàµà´¦à´¾à´•àµà´•àµà´•</string> + <string name="mtrl_picker_confirm">à´¶à´°à´¿</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">തീയതി തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="mtrl_picker_date_header_unselected">തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ തീയതി</string> + <string name="mtrl_picker_day_of_week_column_header">ദിവസതàµà´¤à´¿à´¨àµà´±àµ† കോളം: %1$s</string> + <string name="mtrl_picker_invalid_format">അസാധàµà´µà´¾à´¯ ഫോർമാറàµà´±àµ.</string> + <string name="mtrl_picker_invalid_format_example">ഉദാഹരണം: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s ഉപയോഗികàµà´•àµà´•</string> + <string name="mtrl_picker_invalid_range">അസാധàµà´µà´¾à´¯ à´¶àµà´°àµ‡à´£à´¿.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s വർഷതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠനാവിഗേറàµà´±àµ ചെയàµà´¯àµà´•</string> + <string name="mtrl_picker_out_of_range">à´¶àµà´°àµ‡à´£à´¿à´•àµà´•ൠപàµà´±à´¤àµà´¤à´¾à´£àµ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – അവസാനികàµà´•àµà´¨àµà´¨ തീയതി</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">à´¶àµà´°àµ‡à´£à´¿ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•</string> + <string name="mtrl_picker_range_header_unselected">ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – അവസാനികàµà´•àµà´¨àµà´¨ തീയതി</string> + <string name="mtrl_picker_save">സംരകàµà´·à´¿à´•àµà´•àµà´•</string> + <string name="mtrl_picker_text_input_date_hint">തീയതി</string> + <string name="mtrl_picker_text_input_date_range_end_hint">അവസാനികàµà´•àµà´¨àµà´¨ തീയതി</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">കലണàµà´Ÿàµ¼ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•</string> + <string name="mtrl_picker_toggle_to_day_selection">ദിവസം തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´¨àµà´¨à´¤à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ടെകàµâ€Œà´¸àµâ€Œà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•</string> + <string name="mtrl_picker_toggle_to_year_selection">വർഷം തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´¨àµà´¨à´¤à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•</string> + <string name="mtrl_timepicker_cancel">റദàµà´¦à´¾à´•àµà´•àµà´•</string> + <string name="mtrl_timepicker_confirm">à´¶à´°à´¿</string> + <string name="password_toggle_content_description">പാസàµâ€Œà´µàµ‡à´¡àµ കാണികàµà´•àµà´•</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mn/values-mn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mn/values-mn.xml new file mode 100644 index 0000000000000000000000000000000000000000..835b4b1e74856592919249b83a960ad7670eb9be --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mn/values-mn.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл</item> + <item quantity="other">%d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл</item> + </plurals> + <string name="bottomsheet_action_collapse">Доод Ñ…Ò¯ÑнÑгтийг хураах</string> + <string name="bottomsheet_action_expand">Доод Ñ…Ò¯ÑнÑгтийг дÑлгÑÑ…</string> + <string name="bottomsheet_action_expand_halfway">Ð¥Ð°Ð³Ð°Ñ Ð´ÑлгÑÐ½Ñ Ò¯Ò¯</string> + <string name="bottomsheet_drag_handle_clicked">ЧирÑÑ… бариулыг хоёр товших</string> + <string name="bottomsheet_drag_handle_content_description">ЧирÑÑ… бариул</string> + <string name="character_counter_content_description">%2$d-н %1$d Ñ‚ÑмдÑгтийг оруулÑан</string> + <string name="character_counter_overflowed_content_description">ТÑмдÑгтийн Ñ…Ñзгаар %2$d-н %1$d-Ñ Ñ…ÑÑ‚ÑÑ€ÑÑн</string> + <string name="clear_text_end_icon_content_description">ТекÑтийг арилгах</string> + <string name="error_icon_content_description">Ðлдаа</string> + <string name="exposed_dropdown_menu_content_description">Доош унадаг цÑÑийг харуулах</string> + <string name="icon_content_description">Харилцах цонхны Ð´Ò¯Ñ€Ñ Ñ‚ÑмдÑг</string> + <string name="item_view_role_description">Таб</string> + <string name="material_clock_toggle_content_description">Ò®Ó¨ ÑÑвÑл ҮХ Ñонгоно уу</string> + <string name="material_hour_24h_suffix">%1$s цаг</string> + <string name="material_hour_selection">Цаг Ñонгох</string> + <string name="material_hour_suffix">%1$s цаг</string> + <string name="material_minute_selection">Минут Ñонгоно уу</string> + <string name="material_minute_suffix">%1$s минут</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Цагийг оруулахын тулд цагийн горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.</string> + <string name="material_timepicker_hour">Цаг</string> + <string name="material_timepicker_minute">Минут</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Цаг Ñонгох</string> + <string name="material_timepicker_text_input_mode_description">Цагийг оруулахын тулд текÑÑ‚ оруулах горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.</string> + <string name="mtrl_badge_numberless_content_description">Ð¨Ð¸Ð½Ñ Ð¼ÑдÑгдÑл</string> + <string name="mtrl_chip_close_icon_content_description">%1$s-г уÑтгах</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d-Ñ Ð¾Ð»Ð¾Ð½ ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл</string> + <string name="mtrl_picker_a11y_next_month">Дараагийн Ñар луу өөрчлөх</string> + <string name="mtrl_picker_a11y_prev_month">Өмнөх Ñар луу өөрчлөх</string> + <string name="mtrl_picker_announce_current_selection">Одоогийн Ñонголт: %1$s</string> + <string name="mtrl_picker_cancel">Цуцлах</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Огноо Ñонгох</string> + <string name="mtrl_picker_date_header_unselected">СонгоÑон огноо</string> + <string name="mtrl_picker_day_of_week_column_header">Өдрийн багана: %1$s</string> + <string name="mtrl_picker_invalid_format">Буруу формат байна.</string> + <string name="mtrl_picker_invalid_format_example">ЖишÑÑ Ð½ÑŒ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Ðшиглах формат: %1$s</string> + <string name="mtrl_picker_invalid_range">Огнооны Ñ…Ñзгаар буруу байна.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s он руу шилжих</string> + <string name="mtrl_picker_out_of_range">Ð¥ÑÐ·Ð³Ð°Ð°Ñ€Ð°Ð°Ñ Ñ…ÑÑ‚ÑÑ€ÑÑн: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ÐхлÑÑ… огноо – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ДууÑах огноо</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Муж Ñонгох</string> + <string name="mtrl_picker_range_header_unselected">ÐхлÑÑ… огноо – ДууÑах огноо</string> + <string name="mtrl_picker_save">Хадгалах</string> + <string name="mtrl_picker_text_input_date_hint">Огноо</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ДууÑах огноо</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ÐхлÑÑ… огноо</string> + <string name="mtrl_picker_text_input_day_abbr">Ó©</string> + <string name="mtrl_picker_text_input_month_abbr">Ñ</string> + <string name="mtrl_picker_text_input_year_abbr">ж</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Календарийн орох горим руу ÑÑлгÑÑ…</string> + <string name="mtrl_picker_toggle_to_day_selection">Өдөр Ñонгох руу ÑÑлгÑхийн тулд товшино уу</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ТекÑтийн орох горим руу ÑÑлгÑÑ…</string> + <string name="mtrl_picker_toggle_to_year_selection">Он Ñонгох руу ÑÑлгÑхийн тулд товшино уу</string> + <string name="mtrl_timepicker_cancel">Цуцлах</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Ðууц үгийг харуулах</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mr/values-mr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mr/values-mr.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbd4bc419b39dc9e93a1c9bb7d473bbd0d52e719 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-mr/values-mr.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d नवीन सूचना</item> + <item quantity="other">%d नवीन सूचना</item> + </plurals> + <string name="bottomsheet_action_collapse">तळाशी असलेली शीट कोलॅपà¥à¤¸ करा</string> + <string name="bottomsheet_action_expand">तळाशी असलेलà¥à¤¯à¤¾ शीटचा विसà¥à¤¤à¤¾à¤° करा</string> + <string name="bottomsheet_action_expand_halfway">पूरà¥à¤£à¤ªà¤£à¥‡ विसà¥à¤¤à¥ƒà¤¤ करा</string> + <string name="bottomsheet_drag_handle_clicked">डà¥à¤°à¥…ग हॅंडलवर दोनदा टॅप केले आहे</string> + <string name="bottomsheet_drag_handle_content_description">डà¥à¤°à¥…ग हॅंडल</string> + <string name="character_counter_content_description">%2$d पैकी %1$d वरà¥à¤£ à¤à¤‚टर केले आहे</string> + <string name="character_counter_overflowed_content_description">%2$d पैकी %1$d वरà¥à¤£à¤®à¤°à¥à¤¯à¤¾à¤¦à¤¾ ओलांडली आहे</string> + <string name="clear_text_end_icon_content_description">मजकूर साफ करा</string> + <string name="error_icon_content_description">à¤à¤°à¤°</string> + <string name="exposed_dropdown_menu_content_description">डà¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनू दाखवा</string> + <string name="icon_content_description">डायलॉग आयकन</string> + <string name="item_view_role_description">टॅब</string> + <string name="material_clock_toggle_content_description">AM किंवा PM निवडा</string> + <string name="material_hour_24h_suffix">%1$s तास</string> + <string name="material_hour_selection">वेळ निवडा</string> + <string name="material_hour_suffix">%1$s वाजता</string> + <string name="material_minute_selection">मिनिटे निवडा</string> + <string name="material_minute_suffix">%1$s मिनिटे</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">वेळेचà¥à¤¯à¤¾ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी घडà¥à¤¯à¤¾à¤³ मोडवर सà¥à¤µà¤¿à¤š करा.</string> + <string name="material_timepicker_hour">तास</string> + <string name="material_timepicker_minute">मिनिट</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">वेळ निवडा</string> + <string name="material_timepicker_text_input_mode_description">वेळ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी मजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा.</string> + <string name="mtrl_badge_numberless_content_description">नवीन सूचना</string> + <string name="mtrl_chip_close_icon_content_description">काढून टाका %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d पेकà¥à¤·à¤¾ अधिक नवीन सूचना</string> + <string name="mtrl_picker_a11y_next_month">पà¥à¤¢à¥€à¤² महिनà¥à¤¯à¤¾à¤µà¤° बदला</string> + <string name="mtrl_picker_a11y_prev_month">मागील महिनà¥à¤¯à¤¾à¤µà¤° बदला</string> + <string name="mtrl_picker_announce_current_selection">सधà¥à¤¯à¤¾à¤šà¥€ निवड: %1$s</string> + <string name="mtrl_picker_cancel">रदà¥à¤¦ करा</string> + <string name="mtrl_picker_confirm">ओके</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">तारीख निवडा</string> + <string name="mtrl_picker_date_header_unselected">निवडलेली तारीख</string> + <string name="mtrl_picker_day_of_week_column_header">दिवसांचा सà¥à¤¤à¤‚à¤: %1$s</string> + <string name="mtrl_picker_invalid_format">चà¥à¤•ीचा फॉरमॅट.</string> + <string name="mtrl_picker_invalid_format_example">उदाहरण: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s: वापरा</string> + <string name="mtrl_picker_invalid_range">चà¥à¤•ीची शà¥à¤°à¥‡à¤£à¥€.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s वरà¥à¤·à¤¾à¤µà¤° नेवà¥à¤¹à¤¿à¤—ेट करा</string> + <string name="mtrl_picker_out_of_range">रेंजचà¥à¤¯à¤¾ बाहेर: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – संपणà¥à¤¯à¤¾à¤šà¥€ तारीख</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">रेंज निवडा</string> + <string name="mtrl_picker_range_header_unselected">सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – संपणà¥à¤¯à¤¾à¤šà¥€ तारीख</string> + <string name="mtrl_picker_save">सेवà¥à¤¹ करा</string> + <string name="mtrl_picker_text_input_date_hint">तारीख</string> + <string name="mtrl_picker_text_input_date_range_end_hint">संपणà¥à¤¯à¤¾à¤šà¥€ तारीख</string> + <string name="mtrl_picker_text_input_date_range_start_hint">सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख</string> + <string name="mtrl_picker_text_input_day_abbr">दि</string> + <string name="mtrl_picker_text_input_month_abbr">म</string> + <string name="mtrl_picker_text_input_year_abbr">व</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">कॅलेंडर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा</string> + <string name="mtrl_picker_toggle_to_day_selection">दिवस निवडणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी सà¥à¤µà¤¿à¤š करा वर टॅप करा</string> + <string name="mtrl_picker_toggle_to_text_input_mode">मजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा</string> + <string name="mtrl_picker_toggle_to_year_selection">वरà¥à¤· निवडणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी सà¥à¤µà¤¿à¤š करा वर टॅप करा</string> + <string name="mtrl_timepicker_cancel">रदà¥à¤¦ करा</string> + <string name="mtrl_timepicker_confirm">ओके</string> + <string name="password_toggle_content_description">पासवरà¥à¤¡ दाखवा</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ms/values-ms.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ms/values-ms.xml new file mode 100644 index 0000000000000000000000000000000000000000..a471a72eb0d043c252707c391198d77cfb2acf52 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ms/values-ms.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d pemberitahuan baharu</item> + <item quantity="other">%d pemberitahuan baharu</item> + </plurals> + <string name="bottomsheet_action_collapse">Kuncupkan helaian bawah</string> + <string name="bottomsheet_action_expand">Kembangkan helaian bawah</string> + <string name="bottomsheet_action_expand_halfway">Kembangkan helaian bawah</string> + <string name="bottomsheet_drag_handle_clicked">Pemegang seret diketik dua kali</string> + <string name="bottomsheet_drag_handle_content_description">Pemegang seret</string> + <string name="character_counter_content_description">Aksara dimasukkan %1$d daripada %2$d</string> + <string name="character_counter_overflowed_content_description">Melebihi had aksara %1$d daripada %2$d</string> + <string name="clear_text_end_icon_content_description">Kosongkan teks</string> + <string name="error_icon_content_description">Ralat</string> + <string name="exposed_dropdown_menu_content_description">Tunjukkan menu lungsur</string> + <string name="icon_content_description">Ikon Dialog</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Pilih AM atau PM</string> + <string name="material_hour_24h_suffix">%1$s jam</string> + <string name="material_hour_selection">Pilih jam</string> + <string name="material_hour_suffix">Pukul %1$s</string> + <string name="material_minute_selection">Pilih minit</string> + <string name="material_minute_suffix">%1$s minit</string> + <string name="material_timepicker_am">PG</string> + <string name="material_timepicker_clock_mode_description">Beralih ke mod jam untuk input masa.</string> + <string name="material_timepicker_hour">Jam</string> + <string name="material_timepicker_minute">Minit</string> + <string name="material_timepicker_pm">P/M</string> + <string name="material_timepicker_select_time">Pilih masa</string> + <string name="material_timepicker_text_input_mode_description">Beralih ke mod input teks untuk input masa.</string> + <string name="mtrl_badge_numberless_content_description">Pemberitahuan baharu</string> + <string name="mtrl_chip_close_icon_content_description">Alih keluar %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Lebih daripada %1$d pemberitahuan baharu</string> + <string name="mtrl_picker_a11y_next_month">Tukar kepada bulan seterusnya</string> + <string name="mtrl_picker_a11y_prev_month">Tukar kepada bulan sebelumnya</string> + <string name="mtrl_picker_announce_current_selection">Pilihan semasa: %1$s</string> + <string name="mtrl_picker_cancel">Batal</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Pilih Tarikh</string> + <string name="mtrl_picker_date_header_unselected">Tarikh dipilih</string> + <string name="mtrl_picker_day_of_week_column_header">Lajur hari: %1$s</string> + <string name="mtrl_picker_invalid_format">Format tidak sah.</string> + <string name="mtrl_picker_invalid_format_example">Contoh: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Gunakan: %1$s</string> + <string name="mtrl_picker_invalid_range">Julat tidak sah.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigasi ke tahun %1$s</string> + <string name="mtrl_picker_out_of_range">Di luar julat: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Tarikh mula – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Tarikh tamat</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Pilih Julat</string> + <string name="mtrl_picker_range_header_unselected">Tarikh mula – Tarikh tamat</string> + <string name="mtrl_picker_save">Simpan</string> + <string name="mtrl_picker_text_input_date_hint">Tarikh</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Tarikh tamat</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Tarikh mula</string> + <string name="mtrl_picker_text_input_day_abbr">h</string> + <string name="mtrl_picker_text_input_month_abbr">b</string> + <string name="mtrl_picker_text_input_year_abbr">t</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Beralih kepada mod input kalendar</string> + <string name="mtrl_picker_toggle_to_day_selection">Ketik untuk beralih kepada pemilihan hari</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Beralih kepada mod input teks</string> + <string name="mtrl_picker_toggle_to_year_selection">Ketik untuk beralih kepada pemilihan tahun</string> + <string name="mtrl_timepicker_cancel">Batal</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Tunjukkan kata laluan</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-my/values-my.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-my/values-my.xml new file mode 100644 index 0000000000000000000000000000000000000000..67f335a385fac2f9bc0281cf27c2fea96324b944 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-my/values-my.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯</item> + <item quantity="other">အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯</item> + </plurals> + <string name="bottomsheet_action_collapse">အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ ပá€á€á€ºá€”á€á€¯á€„်သည်</string> + <string name="bottomsheet_action_expand">အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ á€á€»á€²á€·á€”á€á€¯á€„်သည်</string> + <string name="bottomsheet_action_expand_halfway">á€á€…်á€á€€á€ºá€á€»á€²á€·á€›á€”်</string> + <string name="bottomsheet_drag_handle_clicked">ဖá€á€†á€½á€²á€¡á€‘á€á€”်း နှစ်á€á€»á€€á€ºá€á€á€¯á€·á€‘ားသည်</string> + <string name="bottomsheet_drag_handle_content_description">ဖá€á€†á€½á€²á€¡á€‘á€á€”်း</string> + <string name="character_counter_content_description">စာလုံးရေ %2$d á€á€½á€„် %1$d ထည့်သွင်းထားသည်</string> + <string name="character_counter_overflowed_content_description">စာလုံးရေအကန့်အသá€á€º %2$d လုံးá€á€½á€„် %1$d လုံးကျော်နေသည်</string> + <string name="clear_text_end_icon_content_description">စာသား ဖယ်ရှားရန်</string> + <string name="error_icon_content_description">အမှား</string> + <string name="exposed_dropdown_menu_content_description">ဆွဲá€á€»á€™á€®á€”ူးကá€á€¯ ပြရန်</string> + <string name="icon_content_description">ဒá€á€¯á€„်ယာလော့á€á€º သင်္ကေá€</string> + <string name="item_view_role_description">á€á€˜á€º</string> + <string name="material_clock_toggle_content_description">AM (သá€á€¯á€·) PM ရွေးရန်</string> + <string name="material_hour_24h_suffix">%1$s နာရီ</string> + <string name="material_hour_selection">နာရီ ရွေးရန်</string> + <string name="material_hour_suffix">%1$s နာရီ</string> + <string name="material_minute_selection">မá€á€”စ်များ ရွေးပါ</string> + <string name="material_minute_suffix">%1$s မá€á€”စ်</string> + <string name="material_timepicker_am">နံနက်</string> + <string name="material_timepicker_clock_mode_description">အá€á€»á€á€”်ထည့်သွင်းမှုအá€á€½á€€á€º နာရီမုဒ်သá€á€¯á€· ပြောင်းပါá‹</string> + <string name="material_timepicker_hour">နာရီ</string> + <string name="material_timepicker_minute">မá€á€”စ်</string> + <string name="material_timepicker_pm">ညနေ</string> + <string name="material_timepicker_select_time">အá€á€»á€á€”်ရွေးပါ</string> + <string name="material_timepicker_text_input_mode_description">အá€á€»á€á€”်ထည့်သွင်းရန် စာသားထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းပါá‹</string> + <string name="mtrl_badge_numberless_content_description">အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…်</string> + <string name="mtrl_chip_close_icon_content_description">%1$s ကá€á€¯ ဖယ်ရှားရန်</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %1$d á€á€¯ အထက်</string> + <string name="mtrl_picker_a11y_next_month">နောက်လသá€á€¯á€· ပြောင်းရန်</string> + <string name="mtrl_picker_a11y_prev_month">ယá€á€„်လသá€á€¯á€· ပြောင်းရန်</string> + <string name="mtrl_picker_announce_current_selection">လက်ရှဠရွေးá€á€»á€šá€ºá€™á€¾á€¯- %1$s</string> + <string name="mtrl_picker_cancel">ပယ်ဖျက်ရန်</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ရက်စွဲ ရွေးပါ</string> + <string name="mtrl_picker_date_header_unselected">ရွေးထားသည့် ရက်စွဲ</string> + <string name="mtrl_picker_day_of_week_column_header">ရက်ကော်လံ- %1$s</string> + <string name="mtrl_picker_invalid_format">ဖော်မက် မမှန်ကန်ပါá‹</string> + <string name="mtrl_picker_invalid_format_example">ဥပမာ− %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s သုံးရန်</string> + <string name="mtrl_picker_invalid_range">ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ မမှန်ပါá‹</string> + <string name="mtrl_picker_navigate_to_year_description">နှစ် %1$s သá€á€¯á€· လမ်းညွှန်ရန်</string> + <string name="mtrl_picker_out_of_range">ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ ပြင်ပ− %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">စá€á€„်ရက် – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ပြီးဆုံးရက်</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">အပá€á€¯á€„်းအá€á€¼á€¬á€¸ ရွေးပါ</string> + <string name="mtrl_picker_range_header_unselected">စá€á€„်ရက် – ပြီးဆုံးရက်</string> + <string name="mtrl_picker_save">သá€á€™á€ºá€¸á€›á€”်</string> + <string name="mtrl_picker_text_input_date_hint">ရက်စွဲ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ပြီးဆုံးရက်</string> + <string name="mtrl_picker_text_input_date_range_start_hint">စá€á€„်ရက်</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ပြက္á€á€’á€á€”် ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်</string> + <string name="mtrl_picker_toggle_to_day_selection">ရက်ရွေးá€á€»á€šá€ºá€á€¼á€„်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€•ါ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">စာသား ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်</string> + <string name="mtrl_picker_toggle_to_year_selection">နှစ်ရွေးá€á€»á€šá€ºá€á€¼á€„်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€•ါ</string> + <string name="mtrl_timepicker_cancel">မလုပ်á€á€±á€¬á€·</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">စကားá€á€¾á€€á€ºá€€á€á€¯ ပြရန်</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nb/values-nb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nb/values-nb.xml new file mode 100644 index 0000000000000000000000000000000000000000..190c3127c143455cc5b8cc8896f988312167de67 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nb/values-nb.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nytt varsel</item> + <item quantity="other">%d nye varsler</item> + </plurals> + <string name="bottomsheet_action_collapse">Skjul feltet nederst</string> + <string name="bottomsheet_action_expand">Vis feltet nederst</string> + <string name="bottomsheet_action_expand_halfway">Vis halve feltet nederst</string> + <string name="bottomsheet_drag_handle_clicked">Dobbelttrykket pÃ¥ hÃ¥ndtaket</string> + <string name="bottomsheet_drag_handle_content_description">HÃ¥ndtak</string> + <string name="character_counter_content_description">%1$d av %2$d tegn er skrevet inn</string> + <string name="character_counter_overflowed_content_description">Tegngrensen er overskredet – %1$d av %2$d</string> + <string name="clear_text_end_icon_content_description">Fjern teksten</string> + <string name="error_icon_content_description">Feil</string> + <string name="exposed_dropdown_menu_content_description">Vis rullegardinmenyen</string> + <string name="icon_content_description">Dialogboksikon</string> + <string name="item_view_role_description">Fane</string> + <string name="material_clock_toggle_content_description">Velg AM eller PM</string> + <string name="material_hour_24h_suffix">%1$s timer</string> + <string name="material_hour_selection">Velg time</string> + <string name="material_hour_suffix">%1$s null-null</string> + <string name="material_minute_selection">Angi minutter</string> + <string name="material_minute_suffix">%1$s minutter</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Bytt til klokkemodus for tidsinndata.</string> + <string name="material_timepicker_hour">Time</string> + <string name="material_timepicker_minute">Minutt</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Velg tidspunkt</string> + <string name="material_timepicker_text_input_mode_description">Bytt til tekstinndatamodus for tidsinndata.</string> + <string name="mtrl_badge_numberless_content_description">Nytt varsel</string> + <string name="mtrl_chip_close_icon_content_description">Fjern %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Flere enn %1$d nye varsler</string> + <string name="mtrl_picker_a11y_next_month">Endre til neste mÃ¥ned</string> + <string name="mtrl_picker_a11y_prev_month">Endre til forrige mÃ¥ned</string> + <string name="mtrl_picker_announce_current_selection">Gjeldende valg: %1$s</string> + <string name="mtrl_picker_cancel">Avbryt</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Velg dato</string> + <string name="mtrl_picker_date_header_unselected">Valgt dato</string> + <string name="mtrl_picker_day_of_week_column_header">Kolonne for dager: %1$s</string> + <string name="mtrl_picker_invalid_format">Ugyldig format.</string> + <string name="mtrl_picker_invalid_format_example">Eksempel: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Bruk: %1$s</string> + <string name="mtrl_picker_invalid_range">Ugyldig omrÃ¥de.</string> + <string name="mtrl_picker_navigate_to_year_description">Naviger til Ã¥r %1$s</string> + <string name="mtrl_picker_out_of_range">Utenfor rekkevidde: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Startdato – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – sluttdato</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Velg periode</string> + <string name="mtrl_picker_range_header_unselected">Startdato–sluttdato</string> + <string name="mtrl_picker_save">Lagre</string> + <string name="mtrl_picker_text_input_date_hint">Dato</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Sluttdato</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Startdato</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">Ã¥</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Bytt til kalenderinndatamodus</string> + <string name="mtrl_picker_toggle_to_day_selection">Trykk for Ã¥ bytte til Ã¥ velge dag</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Bytt til tekstinndatamodus</string> + <string name="mtrl_picker_toggle_to_year_selection">Trykk for Ã¥ bytte til Ã¥ velge Ã¥r</string> + <string name="mtrl_timepicker_cancel">Avbryt</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Vis passordet</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ne/values-ne.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ne/values-ne.xml new file mode 100644 index 0000000000000000000000000000000000000000..aef5d428ed39ff8fcd28960c28336259c3fb3b4d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ne/values-ne.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d नयाठसूचना</item> + <item quantity="other">%d नयाठसूचनाहरू</item> + </plurals> + <string name="bottomsheet_action_collapse">पà¥à¤›à¤¾à¤°à¤•ो पाना कोलà¥à¤¯à¤¾à¤ªà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="bottomsheet_action_expand">पà¥à¤›à¤¾à¤°à¤•ो पाना à¤à¤•à¥à¤¸à¥à¤ªà¤¾à¤¨à¥à¤¡ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="bottomsheet_action_expand_halfway">आधा ठà¥à¤²à¥‹ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="bottomsheet_drag_handle_clicked">डà¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²à¤®à¤¾ डबल टà¥à¤¯à¤¾à¤ª गरियो</string> + <string name="bottomsheet_drag_handle_content_description">डà¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²</string> + <string name="character_counter_content_description">%2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿ गरियो</string> + <string name="character_counter_overflowed_content_description">%2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ सीमा नाघà¥à¤¯à¥‹</string> + <string name="clear_text_end_icon_content_description">पाठखाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="error_icon_content_description">तà¥à¤°à¥à¤Ÿà¤¿</string> + <string name="exposed_dropdown_menu_content_description">डà¥à¤°à¤ªà¤¡à¤¾à¤‰à¤¨ मेनॠदेखाउनà¥à¤¹à¥‹à¤¸à¥</string> + <string name="icon_content_description">संवादको आइकन</string> + <string name="item_view_role_description">टà¥à¤¯à¤¾à¤¬</string> + <string name="material_clock_toggle_content_description">पूरà¥à¤µà¤¾à¤¹à¥à¤¨ वा अपराहà¥à¤¨ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="material_hour_24h_suffix">%1$s घणà¥à¤Ÿà¤¾</string> + <string name="material_hour_selection">घनà¥à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="material_hour_suffix">%1$s बजे</string> + <string name="material_minute_selection">मिनेट चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="material_minute_suffix">%1$s मिनेट</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">समय इनपà¥à¤Ÿ गरà¥à¤¨ घडी मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤</string> + <string name="material_timepicker_hour">घनà¥à¤Ÿà¤¾:</string> + <string name="material_timepicker_minute">मिनेट</string> + <string name="material_timepicker_pm">अपराहà¥à¤¨</string> + <string name="material_timepicker_select_time">समय चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="material_timepicker_text_input_mode_description">समय इनपà¥à¤Ÿ गरà¥à¤¨ पाठइनपà¥à¤Ÿ मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤</string> + <string name="mtrl_badge_numberless_content_description">नयाठसूचना</string> + <string name="mtrl_chip_close_icon_content_description">%1$s हटाउनà¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d à¤à¤¨à¥à¤¦à¤¾ बढी नयाठसूचनाहरू</string> + <string name="mtrl_picker_a11y_next_month">अरà¥à¤•ो महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_a11y_prev_month">अघिलà¥à¤²à¥‹ महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_announce_current_selection">हालको चयन: %1$s</string> + <string name="mtrl_picker_cancel">रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_confirm">ठिक छ</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">मिति चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_date_header_unselected">चयन गरिà¤à¤•ो मिति</string> + <string name="mtrl_picker_day_of_week_column_header">दिनहरूको सà¥à¤¤à¤®à¥à¤: %1$s</string> + <string name="mtrl_picker_invalid_format">अमानà¥à¤¯ ढाà¤à¤šà¤¾à¥¤</string> + <string name="mtrl_picker_invalid_format_example">उदाहरण: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$s पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_invalid_range">अमानà¥à¤¯ दायरा।</string> + <string name="mtrl_picker_navigate_to_year_description">वरà¥à¤· %1$s मा जानà¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_out_of_range">दायराà¤à¤¨à¥à¤¦à¤¾ बाहिर छ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">दायरा चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_range_header_unselected">सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति</string> + <string name="mtrl_picker_save">सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ गरà¥à¤¨à¥</string> + <string name="mtrl_picker_text_input_date_hint">मिति</string> + <string name="mtrl_picker_text_input_date_range_end_hint">अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति</string> + <string name="mtrl_picker_text_input_date_range_start_hint">सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">मिनेट</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Calendar को इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_toggle_to_day_selection">कà¥à¤¨à¥ˆ दिन चयन गरà¥à¤¨à¥‡ विकलà¥à¤ª पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_toggle_to_text_input_mode">पाठको इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_picker_toggle_to_year_selection">कà¥à¤¨à¥ˆ वरà¥à¤· चयन गरà¥à¤¨à¥‡ विकलà¥à¤ª पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_timepicker_cancel">रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥</string> + <string name="mtrl_timepicker_confirm">ठिक छ</string> + <string name="password_toggle_content_description">पासवरà¥à¤¡ देखाउनà¥à¤¹à¥‹à¤¸à¥</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-night-v8/values-night-v8.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-night-v8/values-night-v8.xml new file mode 100644 index 0000000000000000000000000000000000000000..562bec97887f15159d01f5381bf57ed765e56acb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-night-v8/values-night-v8.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Theme.Material3.DayNight" parent="Theme.Material3.Dark"/> + <style name="Theme.Material3.DayNight.BottomSheetDialog" parent="Theme.Material3.Dark.BottomSheetDialog"/> + <style name="Theme.Material3.DayNight.Dialog" parent="Theme.Material3.Dark.Dialog"/> + <style name="Theme.Material3.DayNight.Dialog.Alert" parent="Theme.Material3.Dark.Dialog.Alert"/> + <style name="Theme.Material3.DayNight.Dialog.MinWidth" parent="Theme.Material3.Dark.Dialog.MinWidth"/> + <style name="Theme.Material3.DayNight.DialogWhenLarge" parent="Theme.Material3.Dark.DialogWhenLarge"/> + <style name="Theme.Material3.DayNight.NoActionBar" parent="Theme.Material3.Dark.NoActionBar"/> + <style name="Theme.Material3.DayNight.SideSheetDialog" parent="Theme.Material3.Dark.SideSheetDialog"/> + <style name="Theme.Material3.DynamicColors.DayNight" parent="Theme.Material3.DynamicColors.Dark"/> + <style name="Theme.MaterialComponents.DayNight" parent="Theme.MaterialComponents"/> + <style name="Theme.MaterialComponents.DayNight.BottomSheetDialog" parent="Theme.MaterialComponents.BottomSheetDialog"/> + <style name="Theme.MaterialComponents.DayNight.Bridge" parent="Theme.MaterialComponents.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.DarkActionBar" parent="Theme.MaterialComponents"/> + <style name="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge" parent="Theme.MaterialComponents.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog" parent="Theme.MaterialComponents.Dialog"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Alert" parent="Theme.MaterialComponents.Dialog.Alert"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge" parent="Theme.MaterialComponents.Dialog.Alert.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Bridge" parent="Theme.MaterialComponents.Dialog.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize" parent="Theme.MaterialComponents.Dialog.FixedSize"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge" parent="Theme.MaterialComponents.Dialog.FixedSize.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth" parent="Theme.MaterialComponents.Dialog.MinWidth"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge" parent="Theme.MaterialComponents.Dialog.MinWidth.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.DialogWhenLarge" parent="Theme.MaterialComponents.DialogWhenLarge"/> + <style name="Theme.MaterialComponents.DayNight.NoActionBar" parent="Theme.MaterialComponents.NoActionBar"/> + <style name="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" parent="Theme.MaterialComponents.NoActionBar.Bridge"/> + <style name="ThemeOverlay.Material3.DynamicColors.DayNight" parent="ThemeOverlay.Material3.DynamicColors.Dark"/> + <style name="Widget.MaterialComponents.ActionBar.PrimarySurface" parent="Widget.MaterialComponents.ActionBar.Surface"/> + <style name="Widget.MaterialComponents.AppBarLayout.PrimarySurface" parent="Widget.MaterialComponents.AppBarLayout.Surface"/> + <style name="Widget.MaterialComponents.BottomAppBar.PrimarySurface" parent="Widget.MaterialComponents.BottomAppBar"/> + <style name="Widget.MaterialComponents.BottomNavigationView.PrimarySurface" parent="Widget.MaterialComponents.BottomNavigationView"/> + <style name="Widget.MaterialComponents.NavigationRailView.PrimarySurface" parent="Widget.MaterialComponents.NavigationRailView"/> + <style name="Widget.MaterialComponents.TabLayout.PrimarySurface" parent="Widget.MaterialComponents.TabLayout"/> + <style name="Widget.MaterialComponents.Toolbar.PrimarySurface" parent="Widget.MaterialComponents.Toolbar.Surface"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nl/values-nl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nl/values-nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..edef40327afbdfb462e5b93efb74d06dbc8e6ffb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-nl/values-nl.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nieuwe melding</item> + <item quantity="other">%d nieuwe meldingen</item> + </plurals> + <string name="bottomsheet_action_collapse">Het blad onderaan samenvouwen</string> + <string name="bottomsheet_action_expand">Het blad onderaan uitvouwen</string> + <string name="bottomsheet_action_expand_halfway">Half uitvouwen</string> + <string name="bottomsheet_drag_handle_clicked">Dubbelgetikt op handgreep voor slepen</string> + <string name="bottomsheet_drag_handle_content_description">Handgreep voor slepen</string> + <string name="character_counter_content_description">%1$d van %2$d tekens opgegeven</string> + <string name="character_counter_overflowed_content_description">Tekenlimiet heeft %1$d van %2$d overschreden</string> + <string name="clear_text_end_icon_content_description">Tekst wissen</string> + <string name="error_icon_content_description">Fout</string> + <string name="exposed_dropdown_menu_content_description">Dropdownmenu tonen</string> + <string name="icon_content_description">Icoon voor dialoogvenster</string> + <string name="item_view_role_description">Tabblad</string> + <string name="material_clock_toggle_content_description">Selecteer a.m. of p.m.</string> + <string name="material_hour_24h_suffix">%1$s uur</string> + <string name="material_hour_selection">Selecteer uur</string> + <string name="material_hour_suffix">%1$s uur</string> + <string name="material_minute_selection">Minuten selecteren</string> + <string name="material_minute_suffix">%1$s minuten</string> + <string name="material_timepicker_am">a.m.</string> + <string name="material_timepicker_clock_mode_description">Schakel naar de klokmodus om de tijd in te voeren.</string> + <string name="material_timepicker_hour">Uur</string> + <string name="material_timepicker_minute">Minuut</string> + <string name="material_timepicker_pm">p.m.</string> + <string name="material_timepicker_select_time">Tijd selecteren</string> + <string name="material_timepicker_text_input_mode_description">Schakel naar de tekstinvoermodus om de tijd in te voeren.</string> + <string name="mtrl_badge_numberless_content_description">Nieuwe melding</string> + <string name="mtrl_chip_close_icon_content_description">%1$s verwijderen</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Meer dan %1$d nieuwe meldingen</string> + <string name="mtrl_picker_a11y_next_month">Naar volgende maand gaan</string> + <string name="mtrl_picker_a11y_prev_month">Naar vorige maand gaan</string> + <string name="mtrl_picker_announce_current_selection">Huidige selectie: %1$s</string> + <string name="mtrl_picker_cancel">Annuleren</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecteer een datum</string> + <string name="mtrl_picker_date_header_unselected">Geselecteerde datum</string> + <string name="mtrl_picker_day_of_week_column_header">Kolom met dagen: %1$s</string> + <string name="mtrl_picker_invalid_format">Ongeldige indeling.</string> + <string name="mtrl_picker_invalid_format_example">Voorbeeld: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Gebruik: %1$s</string> + <string name="mtrl_picker_invalid_range">Ongeldig bereik.</string> + <string name="mtrl_picker_navigate_to_year_description">Naar jaar %1$s navigeren</string> + <string name="mtrl_picker_out_of_range">Valt buiten bereik: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Startdatum - %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – einddatum</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Selecteer een periode</string> + <string name="mtrl_picker_range_header_unselected">Startdatum - einddatum</string> + <string name="mtrl_picker_save">Opslaan</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Einddatum</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Startdatum</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">j</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Overschakelen naar agenda-invoermodus</string> + <string name="mtrl_picker_toggle_to_day_selection">Tik om naar dagselectie te schakelen</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Overschakelen naar tekstinvoermodus</string> + <string name="mtrl_picker_toggle_to_year_selection">Tik om naar jaarselectie te schakelen</string> + <string name="mtrl_timepicker_cancel">Annuleren</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Wachtwoord tonen</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-or/values-or.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-or/values-or.xml new file mode 100644 index 0000000000000000000000000000000000000000..85c5e6fd09011252705188cc64d4ef9fc3d7f95b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-or/values-or.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d new notification</item> + <item quantity="other">%d new notifications</item> + </plurals> + <string name="bottomsheet_action_collapse">Collapse the bottom sheet</string> + <string name="bottomsheet_action_expand">Expand the bottom sheet</string> + <string name="bottomsheet_action_expand_halfway">Expand halfway</string> + <string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string> + <string name="bottomsheet_drag_handle_content_description">Drag handle</string> + <string name="character_counter_content_description">%2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତି</string> + <string name="character_counter_overflowed_content_description">%2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତି</string> + <string name="clear_text_end_icon_content_description">Clear text</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Show dropdown menu</string> + <string name="icon_content_description">Dialog Icon</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Select AM or PM</string> + <string name="material_hour_24h_suffix">%1$s hours</string> + <string name="material_hour_selection">Select hour</string> + <string name="material_hour_suffix">%1$s o\'clock</string> + <string name="material_minute_selection">ମିନିଟà†ଚàŸà¬¨ କରନàତà</string> + <string name="material_minute_suffix">%1$s minutes</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">à¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଘଣàଟା ମà‹à¬¡à‌କà ବଦଳାନàତà।</string> + <string name="material_timepicker_hour">Hour</string> + <string name="material_timepicker_minute">Minute</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Select time</string> + <string name="material_timepicker_text_input_mode_description">à¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଟà‡à¬•àସଟà†ଇନପàଟà‌କà ବଦଳାନàତà।</string> + <string name="mtrl_badge_numberless_content_description">New notification</string> + <string name="mtrl_chip_close_icon_content_description">%1$s କାàିଦିଅନàତà</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">More than %1$d new notifications</string> + <string name="mtrl_picker_a11y_next_month">Change to next month</string> + <string name="mtrl_picker_a11y_prev_month">Change to previous month</string> + <string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string> + <string name="mtrl_picker_cancel">Cancel</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Select Date</string> + <string name="mtrl_picker_date_header_unselected">Selected date</string> + <string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string> + <string name="mtrl_picker_invalid_format">Invalid format.</string> + <string name="mtrl_picker_invalid_format_example">Example: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Use: %1$s</string> + <string name="mtrl_picker_invalid_range">Invalid range.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$s</string> + <string name="mtrl_picker_out_of_range">Out of range: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Start date – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – End date</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Select Range</string> + <string name="mtrl_picker_range_header_unselected">Start date – End date</string> + <string name="mtrl_picker_save">Save</string> + <string name="mtrl_picker_text_input_date_hint">Date</string> + <string name="mtrl_picker_text_input_date_range_end_hint">End date</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Start date</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string> + <string name="mtrl_picker_toggle_to_day_selection">Tap to switch to selecting a day</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string> + <string name="mtrl_picker_toggle_to_year_selection">Tap to switch to selecting a year</string> + <string name="mtrl_timepicker_cancel">Cancel</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">ପାସàâ€à±à¬¾à¬°àଡ ଦà‡à¬–ାନàତà</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pa/values-pa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pa/values-pa.xml new file mode 100644 index 0000000000000000000000000000000000000000..2cdebb01582da40686cf2b137d5ffef43ce3c66e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pa/values-pa.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ਨਵੀਂ ਸੂਚਨਾ</item> + <item quantity="other">%d ਨਵੀਆਂ ਸੂਚਨਾਵਾਂ</item> + </plurals> + <string name="bottomsheet_action_collapse">ਹੇਠਲੀ ਸ਼ੀਟ ਨੂੰ ਸਮੇਟੋ</string> + <string name="bottomsheet_action_expand">ਹੇਠਲੀ ਸ਼ੀਟ ਦਾ ਵਿਸਤਾਰ ਕਰੋ</string> + <string name="bottomsheet_action_expand_halfway">ਅੱਧ ਤੱਕ ਵਿਸਤਾਰ ਕਰੋ</string> + <string name="bottomsheet_drag_handle_clicked">ਘਸੀਟਣ ਵਾਲੇ ਹੈਂਡਲ \'ਤੇ ਡਬਲ-ਟੈਪ ਕੀਤਾ ਗਿਆ</string> + <string name="bottomsheet_drag_handle_content_description">ਘਸੀਟਣ ਵਾਲਾ ਹੈਂਡਲ</string> + <string name="character_counter_content_description">%2$d ਵਿੱਚੋਂ %1$d ਅੱਖਰ-ਚਿੰਨà©à¨¹ ਦਾਖਲ ਕੀਤੇ ਗà¨</string> + <string name="character_counter_overflowed_content_description">ਅੱਖਰ-ਚਿੰਨà©à¨¹ ਸੀਮਾ %2$d ਤੋਂ %1$d ਵਧੀ</string> + <string name="clear_text_end_icon_content_description">ਲਿਖਤ ਕਲੀਅਰ ਕਰੋ</string> + <string name="error_icon_content_description">ਗੜਬੜ</string> + <string name="exposed_dropdown_menu_content_description">ਡà©à¨°à©Œà¨ª-ਡਾਊਨ ਮੀਨੂ ਦਿਖਾਓ</string> + <string name="icon_content_description">ਵਿੰਡੋ ਦਾ ਪà©à¨°à¨¤à©€à¨•</string> + <string name="item_view_role_description">ਟੈਬ</string> + <string name="material_clock_toggle_content_description">AM ਜਾਂ PM ਚà©à¨£à©‹</string> + <string name="material_hour_24h_suffix">%1$s ਘੰਟੇ</string> + <string name="material_hour_selection">ਸਮਾਂ ਚà©à¨£à©‹</string> + <string name="material_hour_suffix">%1$s ਵਜੇ</string> + <string name="material_minute_selection">ਮਿੰਟ ਚà©à¨£à©‹</string> + <string name="material_minute_suffix">%1$s ਮਿੰਟ</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">ਸਮਾਂ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਘੜੀ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।</string> + <string name="material_timepicker_hour">ਘੰਟਾ</string> + <string name="material_timepicker_minute">ਮਿੰਟ</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">ਸਮਾਂ ਚà©à¨£à©‹</string> + <string name="material_timepicker_text_input_mode_description">ਸਮਾਂ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।</string> + <string name="mtrl_badge_numberless_content_description">ਨਵੀਂ ਸੂਚਨਾ</string> + <string name="mtrl_chip_close_icon_content_description">%1$s ਹਟਾਓ</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d ਤੋਂ ਵੱਧ ਨਵੀਆਂ ਸੂਚਨਾਵਾਂ</string> + <string name="mtrl_picker_a11y_next_month">ਅਗਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓ</string> + <string name="mtrl_picker_a11y_prev_month">ਪਿਛਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓ</string> + <string name="mtrl_picker_announce_current_selection">ਮੌਜੂਦਾ ਚੋਣ: %1$s</string> + <string name="mtrl_picker_cancel">ਰੱਦ ਕਰੋ</string> + <string name="mtrl_picker_confirm">ਠੀਕ ਹੈ</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">ਤਾਰੀਖ ਚà©à¨£à©‹</string> + <string name="mtrl_picker_date_header_unselected">ਚà©à¨£à©€ ਗਈ ਤਾਰੀਖ</string> + <string name="mtrl_picker_day_of_week_column_header">ਦਿਨਾਂ ਦਾ ਕਾਲਮ: %1$s</string> + <string name="mtrl_picker_invalid_format">ਅਵੈਧ ਫਾਰਮੈਟ।</string> + <string name="mtrl_picker_invalid_format_example">ਉਦਾਹਰਨ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ਵਰਤੋ: %1$s</string> + <string name="mtrl_picker_invalid_range">ਅਵੈਧ ਰੇਂਜ।</string> + <string name="mtrl_picker_navigate_to_year_description">ਸਾਲ %1$s \'ਤੇ ਨੈਵੀਗੇਟ ਕਰੋ</string> + <string name="mtrl_picker_out_of_range">ਰੇਂਜ ਤੋਂ ਬਾਹਰ: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ਸ਼à©à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ਸਮਾਪਤੀ ਤਾਰੀਖ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">ਰੇਂਜ ਚà©à¨£à©‹</string> + <string name="mtrl_picker_range_header_unselected">ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – ਸਮਾਪਤੀ ਤਾਰੀਖ</string> + <string name="mtrl_picker_save">ਰੱਖਿਅਤ ਕਰੋ</string> + <string name="mtrl_picker_text_input_date_hint">ਤਾਰੀਖ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ਸਮਾਪਤੀ ਤਾਰੀਖ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ਕੈਲੰਡਰ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓ</string> + <string name="mtrl_picker_toggle_to_day_selection">ਦਿਨ ਦੀ ਚੋਣ \'ਤੇ ਜਾਣ ਲਈ ਟੈਪ ਕਰੋ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓ</string> + <string name="mtrl_picker_toggle_to_year_selection">ਸਾਲ ਦੀ ਚੋਣ \'ਤੇ ਜਾਣ ਲਈ ਟੈਪ ਕਰੋ</string> + <string name="mtrl_timepicker_cancel">ਰੱਦ ਕਰੋ</string> + <string name="mtrl_timepicker_confirm">ਠੀਕ ਹੈ</string> + <string name="password_toggle_content_description">ਪਾਸਵਰਡ ਦਿਖਾਓ</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pl/values-pl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pl/values-pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..58631a132b7ceeafcf94a0c3df952ddde3e2c612 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pl/values-pl.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nowe powiadomienie</item> + <item quantity="few">%d nowe powiadomienia</item> + <item quantity="many">%d nowych powiadomieÅ„</item> + <item quantity="other">%d nowego powiadomienia</item> + </plurals> + <string name="bottomsheet_action_collapse">ZwiÅ„ planszÄ™ dolnÄ…</string> + <string name="bottomsheet_action_expand">RozwiÅ„ planszÄ™ dolnÄ…</string> + <string name="bottomsheet_action_expand_halfway">RozwiÅ„ do poÅ‚owy</string> + <string name="bottomsheet_drag_handle_clicked">Dwukrotnie klikniÄ™to uchwyt do przeciÄ…gania</string> + <string name="bottomsheet_drag_handle_content_description">Uchwyt do przeciÄ…gania</string> + <string name="character_counter_content_description">%1$d z %2$d znaków</string> + <string name="character_counter_overflowed_content_description">Przekroczono limit znaków (%1$d z %2$d)</string> + <string name="clear_text_end_icon_content_description">Wyczyść tekst</string> + <string name="error_icon_content_description">Błąd</string> + <string name="exposed_dropdown_menu_content_description">Pokaż menu</string> + <string name="icon_content_description">Ikona okna</string> + <string name="item_view_role_description">Karta</string> + <string name="material_clock_toggle_content_description">Wybierz: przed poÅ‚udniem czy po poÅ‚udniu</string> + <string name="material_hour_24h_suffix">%1$s godz.</string> + <string name="material_hour_selection">Wybierz godzinÄ™</string> + <string name="material_hour_suffix">%1$s</string> + <string name="material_minute_selection">Wybierz minuty</string> + <string name="material_minute_suffix">%1$s minut</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Aby wprowadzić czas, włącz tryb zegara.</string> + <string name="material_timepicker_hour">Godzina</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">OkreÅ›l czas</string> + <string name="material_timepicker_text_input_mode_description">Aby wprowadzić czas, włącz tryb wprowadzania tekstu.</string> + <string name="mtrl_badge_numberless_content_description">Nowe powiadomienie</string> + <string name="mtrl_chip_close_icon_content_description">UsuÅ„: (%1$s)</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Liczba nowych powiadomieÅ„ przekracza %1$d</string> + <string name="mtrl_picker_a11y_next_month">ZmieÅ„ na nastÄ™pny miesiÄ…c</string> + <string name="mtrl_picker_a11y_prev_month">ZmieÅ„ na poprzedni miesiÄ…c</string> + <string name="mtrl_picker_announce_current_selection">Bieżący wybór: %1$s</string> + <string name="mtrl_picker_cancel">Anuluj</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Wybierz datÄ™</string> + <string name="mtrl_picker_date_header_unselected">Wybrana data</string> + <string name="mtrl_picker_day_of_week_column_header">Kolumna z dniami: %1$s</string> + <string name="mtrl_picker_invalid_format">NieprawidÅ‚owy format.</string> + <string name="mtrl_picker_invalid_format_example">PrzykÅ‚ad: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Użyj formatu: %1$s</string> + <string name="mtrl_picker_invalid_range">NieprawidÅ‚owy zakres.</string> + <string name="mtrl_picker_navigate_to_year_description">Przejdź do roku %1$s</string> + <string name="mtrl_picker_out_of_range">Poza zakresem: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data rozpoczÄ™cia – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – data zakoÅ„czenia</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Wybierz zakres</string> + <string name="mtrl_picker_range_header_unselected">Data rozpoczÄ™cia – data zakoÅ„czenia</string> + <string name="mtrl_picker_save">Zapisz</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data zakoÅ„czenia</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data rozpoczÄ™cia</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">r</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Włącz kalendarzowy tryb wprowadzania</string> + <string name="mtrl_picker_toggle_to_day_selection">Kliknij, by wybrać dzieÅ„</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Włącz tekstowy tryb wprowadzania</string> + <string name="mtrl_picker_toggle_to_year_selection">Kliknij, by wybrać rok</string> + <string name="mtrl_timepicker_cancel">Anuluj</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Pokaż hasÅ‚o</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rBR/values-pt-rBR.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rBR/values-pt-rBR.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b738878996877770ff4772b42bf11b0d8c35a0a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rBR/values-pt-rBR.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nova notificação</item> + <item quantity="other">%d novas notificações</item> + </plurals> + <string name="bottomsheet_action_collapse">Fechar a página inferior</string> + <string name="bottomsheet_action_expand">Abrir a página inferior</string> + <string name="bottomsheet_action_expand_halfway">Expandir até a metade</string> + <string name="bottomsheet_drag_handle_clicked">Alça de arrastar tocada duas vezes</string> + <string name="bottomsheet_drag_handle_content_description">Alça de arrastar</string> + <string name="character_counter_content_description">Caracteres inseridos: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">Limite de %2$d caracteres excedido em %1$d</string> + <string name="clear_text_end_icon_content_description">Limpar texto</string> + <string name="error_icon_content_description">Erro</string> + <string name="exposed_dropdown_menu_content_description">Mostrar menu suspenso</string> + <string name="icon_content_description">Ãcone de caixa de diálogo</string> + <string name="item_view_role_description">Guia</string> + <string name="material_clock_toggle_content_description">Selecionar AM ou PM</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Selecionar horário</string> + <string name="material_hour_suffix">%1$s em ponto</string> + <string name="material_minute_selection">Selecione os minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Alterne para o modo de relógio para informar o horário.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Selecionar horário</string> + <string name="material_timepicker_text_input_mode_description">Alterne para o modo de entrada de texto para informar o horário.</string> + <string name="mtrl_badge_numberless_content_description">Nova notificação</string> + <string name="mtrl_chip_close_icon_content_description">Remover %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Mais de %1$d novas notificações</string> + <string name="mtrl_picker_a11y_next_month">Alterar para o próximo mês</string> + <string name="mtrl_picker_a11y_prev_month">Alterar para o mês anterior</string> + <string name="mtrl_picker_announce_current_selection">Seleção atual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecionar data</string> + <string name="mtrl_picker_date_header_unselected">Data selecionada</string> + <string name="mtrl_picker_day_of_week_column_header">Coluna de dias: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato inválido.</string> + <string name="mtrl_picker_invalid_format_example">Exemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Usar %1$s</string> + <string name="mtrl_picker_invalid_range">Intervalo inválido.</string> + <string name="mtrl_picker_navigate_to_year_description">Ir para o ano %1$s</string> + <string name="mtrl_picker_out_of_range">Fora do intervalo: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data de inÃcio – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Data de término</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Selecionar intervalo</string> + <string name="mtrl_picker_range_header_unselected">Data de inÃcio – Data de término</string> + <string name="mtrl_picker_save">Salvar</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data de término</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data de inÃcio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Alternar para o modo de entrada da agenda</string> + <string name="mtrl_picker_toggle_to_day_selection">Toque para alternar para a seleção de um dia</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Alternar para o modo de entrada de texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Toque para alternar para a seleção de um ano</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Exibir senha</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rPT/values-pt-rPT.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fd88b284548409fc749b49b32f1a966340aece8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nova notificação</item> + <item quantity="other">%d novas notificações</item> + </plurals> + <string name="bottomsheet_action_collapse">Reduza a secção inferior</string> + <string name="bottomsheet_action_expand">Expanda a secção inferior</string> + <string name="bottomsheet_action_expand_halfway">Expandir até metade</string> + <string name="bottomsheet_drag_handle_clicked">Dois toques no indicador para arrastar</string> + <string name="bottomsheet_drag_handle_content_description">Indicador para arrastar</string> + <string name="character_counter_content_description">Carateres introduzidos: %1$d de %2$d</string> + <string name="character_counter_overflowed_content_description">Limite de carateres excedido: %1$d de %2$d</string> + <string name="clear_text_end_icon_content_description">Limpar texto</string> + <string name="error_icon_content_description">Erro</string> + <string name="exposed_dropdown_menu_content_description">Mostrar menu pendente</string> + <string name="icon_content_description">Ãcone de caixa de diálogo</string> + <string name="item_view_role_description">Separador</string> + <string name="material_clock_toggle_content_description">Selecionar AM ou PM</string> + <string name="material_hour_24h_suffix">%1$s horas</string> + <string name="material_hour_selection">Selecionar hora</string> + <string name="material_hour_suffix">%1$s hora(s)</string> + <string name="material_minute_selection">Selecionar minutos</string> + <string name="material_minute_suffix">%1$s minutos</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Mude para o modo de relógio para a introdução da hora.</string> + <string name="material_timepicker_hour">Hora</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Selecionar hora</string> + <string name="material_timepicker_text_input_mode_description">Mude para o modo de introdução de texto para a introdução da hora.</string> + <string name="mtrl_badge_numberless_content_description">Nova notificação</string> + <string name="mtrl_chip_close_icon_content_description">Remover %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Mais de %1$d notificações novas</string> + <string name="mtrl_picker_a11y_next_month">Mudar para o mês seguinte</string> + <string name="mtrl_picker_a11y_prev_month">Mudar para o mês anterior</string> + <string name="mtrl_picker_announce_current_selection">Seleção atual: %1$s</string> + <string name="mtrl_picker_cancel">Cancelar</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Selecione a data</string> + <string name="mtrl_picker_date_header_unselected">Data selecionada</string> + <string name="mtrl_picker_day_of_week_column_header">Coluna de dias: %1$s</string> + <string name="mtrl_picker_invalid_format">Formato inválido.</string> + <string name="mtrl_picker_invalid_format_example">Exemplo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Utilize: %1$s</string> + <string name="mtrl_picker_invalid_range">Intervalo inválido.</string> + <string name="mtrl_picker_navigate_to_year_description">Navegue para o ano %1$s</string> + <string name="mtrl_picker_out_of_range">Fora do intervalo: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data de inÃcio – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Data de conclusão</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Selecione o intervalo</string> + <string name="mtrl_picker_range_header_unselected">Data de inÃcio – Data de conclusão</string> + <string name="mtrl_picker_save">Guardar</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data de conclusão</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data de inÃcio</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Mudar para o modo de introdução de calendário</string> + <string name="mtrl_picker_toggle_to_day_selection">Toque para mudar para a seleção do dia</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Mudar para o modo de introdução de texto</string> + <string name="mtrl_picker_toggle_to_year_selection">Toque para mudar para a seleção do ano</string> + <string name="mtrl_timepicker_cancel">Cancelar</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Mostrar palavra-passe</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ro/values-ro.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ro/values-ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f34ebb214cd023a07f0b30fd6e5349f9e27958d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ro/values-ro.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d notificare nouă</item> + <item quantity="few">%d notificări noi</item> + <item quantity="other">%d de notificări noi</item> + </plurals> + <string name="bottomsheet_action_collapse">RestrângeÈ›i foaia din partea de jos</string> + <string name="bottomsheet_action_expand">ExtindeÈ›i foaia din partea de jos</string> + <string name="bottomsheet_action_expand_halfway">Extinde pe ecran complet</string> + <string name="bottomsheet_drag_handle_clicked">Ghidaj de tragere atins de două ori</string> + <string name="bottomsheet_drag_handle_content_description">Ghidaj de tragere</string> + <string name="character_counter_content_description">Caractere introduse: %1$d din %2$d</string> + <string name="character_counter_overflowed_content_description">Limita de caractere a depășit %1$d din %2$d</string> + <string name="clear_text_end_icon_content_description">ȘtergeÈ›i textul</string> + <string name="error_icon_content_description">Eroare</string> + <string name="exposed_dropdown_menu_content_description">AfiÈ™aÈ›i meniul drop-down</string> + <string name="icon_content_description">Pictogramă de dialog</string> + <string name="item_view_role_description">Filă</string> + <string name="material_clock_toggle_content_description">SelectaÈ›i ora</string> + <string name="material_hour_24h_suffix">%1$s ore</string> + <string name="material_hour_selection">SelectaÈ›i ora</string> + <string name="material_hour_suffix">Ora %1$s</string> + <string name="material_minute_selection">SelectaÈ›i minutele</string> + <string name="material_minute_suffix">%1$s minute</string> + <string name="material_timepicker_am">a.m.</string> + <string name="material_timepicker_clock_mode_description">Pentru a introduce ora, comutaÈ›i la modul ceas.</string> + <string name="material_timepicker_hour">Ora</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">p.m.</string> + <string name="material_timepicker_select_time">SelectaÈ›i ora</string> + <string name="material_timepicker_text_input_mode_description">Pentru a introduce ora, comutaÈ›i la modul de introducere a textului.</string> + <string name="mtrl_badge_numberless_content_description">Notificare nouă</string> + <string name="mtrl_chip_close_icon_content_description">EliminaÈ›i %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Peste %1$d notificări noi</string> + <string name="mtrl_picker_a11y_next_month">TreceÈ›i la luna următoare</string> + <string name="mtrl_picker_a11y_prev_month">TreceÈ›i la luna anterioară</string> + <string name="mtrl_picker_announce_current_selection">SelecÈ›ia actuală: %1$s</string> + <string name="mtrl_picker_cancel">AnulaÈ›i</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">SelectaÈ›i data</string> + <string name="mtrl_picker_date_header_unselected">Data selectată</string> + <string name="mtrl_picker_day_of_week_column_header">Coloana cu zile: %1$s</string> + <string name="mtrl_picker_invalid_format">Format nevalid.</string> + <string name="mtrl_picker_invalid_format_example">Exemplu: %1$s</string> + <string name="mtrl_picker_invalid_format_use">FolosiÈ›i: %1$s</string> + <string name="mtrl_picker_invalid_range">Interval nevalid.</string> + <string name="mtrl_picker_navigate_to_year_description">NavigaÈ›i la anul %1$s</string> + <string name="mtrl_picker_out_of_range">Fără acoperire: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data de începere – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – data de încheiere</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">SelectaÈ›i intervalul</string> + <string name="mtrl_picker_range_header_unselected">Data de începere – data de încheiere</string> + <string name="mtrl_picker_save">SalvaÈ›i</string> + <string name="mtrl_picker_text_input_date_hint">Dată</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data de încheiere</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data de începere</string> + <string name="mtrl_picker_text_input_day_abbr">z</string> + <string name="mtrl_picker_text_input_month_abbr">l</string> + <string name="mtrl_picker_text_input_year_abbr">a</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">ComutaÈ›i la modul introducere în calendar</string> + <string name="mtrl_picker_toggle_to_day_selection">AtingeÈ›i pentru a comuta la selectarea unei zile</string> + <string name="mtrl_picker_toggle_to_text_input_mode">ComutaÈ›i la modul de introducere a textului</string> + <string name="mtrl_picker_toggle_to_year_selection">AtingeÈ›i pentru a comuta la selectarea unui an</string> + <string name="mtrl_timepicker_cancel">AnulaÈ›i</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">AfiÈ™aÈ›i parola</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ru/values-ru.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ru/values-ru.xml new file mode 100644 index 0000000000000000000000000000000000000000..eced0d5bf4f0cfb54ff0ed58a11e6a9a7790677f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ru/values-ru.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d новое уведомление</item> + <item quantity="few">%d новых уведомлениÑ</item> + <item quantity="many">%d новых уведомлений</item> + <item quantity="other">%d нового уведомлениÑ</item> + </plurals> + <string name="bottomsheet_action_collapse">Свернуть нижний Ñкран</string> + <string name="bottomsheet_action_expand">Развернуть нижний Ñкран</string> + <string name="bottomsheet_action_expand_halfway">Развернуть наполовину</string> + <string name="bottomsheet_drag_handle_clicked">Двойное нажатие на маркер перемещениÑ</string> + <string name="bottomsheet_drag_handle_content_description">Маркер перемещениÑ</string> + <string name="character_counter_content_description">Введено Ñимволов: %1$d из %2$d</string> + <string name="character_counter_overflowed_content_description">Превышено ограничение на количеÑтво Ñимволов (%1$d из %2$d)</string> + <string name="clear_text_end_icon_content_description">ОчиÑтить текÑтовое поле</string> + <string name="error_icon_content_description">Ошибка</string> + <string name="exposed_dropdown_menu_content_description">Показать раÑкрывающееÑÑ Ð¼ÐµÐ½ÑŽ</string> + <string name="icon_content_description">Значок диалогового окна</string> + <string name="item_view_role_description">Вкладка</string> + <string name="material_clock_toggle_content_description">Выберите AM (до полуднÑ) или PM (поÑле полуднÑ)</string> + <string name="material_hour_24h_suffix">%1$s ч.</string> + <string name="material_hour_selection">Выберите чаÑ</string> + <string name="material_hour_suffix">%1$s ч.</string> + <string name="material_minute_selection">Выберите минуты</string> + <string name="material_minute_suffix">%1$s мин.</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Чтобы ввеÑти времÑ, перейдите в режим чаÑов.</string> + <string name="material_timepicker_hour">ЧаÑ</string> + <string name="material_timepicker_minute">Минуты</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Выбор времени</string> + <string name="material_timepicker_text_input_mode_description">Чтобы ввеÑти времÑ, перейдите в режим ввода текÑта.</string> + <string name="mtrl_badge_numberless_content_description">Ðовое уведомление</string> + <string name="mtrl_chip_close_icon_content_description">Удалить \"%1$s\"</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Ðовых уведомлений больше %1$d</string> + <string name="mtrl_picker_a11y_next_month">Перейти к Ñледующему меÑÑцу</string> + <string name="mtrl_picker_a11y_prev_month">Перейти к предыдущему меÑÑцу</string> + <string name="mtrl_picker_announce_current_selection">Выбранный Ñлемент: %1$s</string> + <string name="mtrl_picker_cancel">Отмена</string> + <string name="mtrl_picker_confirm">ОК</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Выберите дату</string> + <string name="mtrl_picker_date_header_unselected">Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°</string> + <string name="mtrl_picker_day_of_week_column_header">Столбец Ñо днÑми недели: %1$s</string> + <string name="mtrl_picker_invalid_format">ÐедейÑтвительный формат.</string> + <string name="mtrl_picker_invalid_format_example">Пример: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ИÑпользуйте: %1$s</string> + <string name="mtrl_picker_invalid_range">ÐедопуÑтимый диапазон.</string> + <string name="mtrl_picker_navigate_to_year_description">Перейти к %1$s году</string> + <string name="mtrl_picker_out_of_range">Вне диапазона: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Дата начала – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – дата окончаниÑ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Выберите диапазон дат</string> + <string name="mtrl_picker_range_header_unselected">Дата начала – дата окончаниÑ</string> + <string name="mtrl_picker_save">Сохранить</string> + <string name="mtrl_picker_text_input_date_hint">Дата</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Дата окончаниÑ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Дата начала</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">г</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Перейти в режим выбора дней</string> + <string name="mtrl_picker_toggle_to_day_selection">Ðажмите, чтобы перейти к выбору днÑ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Перейти в режим ввода текÑта</string> + <string name="mtrl_picker_toggle_to_year_selection">Ðажмите, чтобы перейти к выбору года</string> + <string name="mtrl_timepicker_cancel">Отмена</string> + <string name="mtrl_timepicker_confirm">ОК</string> + <string name="password_toggle_content_description">Показать пароль</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-si/values-si.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-si/values-si.xml new file mode 100644 index 0000000000000000000000000000000000000000..397cc0077aa43f4113e9ada843d26315042cd47a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-si/values-si.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">නව දà·à¶±à·”ම්දීම් %dà¶šà·Š</item> + <item quantity="other">නව දà·à¶±à·”ම්දීම් %dà¶šà·Š</item> + </plurals> + <string name="bottomsheet_action_collapse">පහළම à¶´à¶à·Šâ€à¶»à¶º හකුළන්න</string> + <string name="bottomsheet_action_expand">පහළම à¶´à¶à·Šâ€à¶»à¶º දිග හරින්න</string> + <string name="bottomsheet_action_expand_halfway">à¶…à¶©à¶šà·Š දිග හරින්න</string> + <string name="bottomsheet_drag_handle_clicked">ඇදීම් à·„à·à¶¬à¶½à¶º දෙවරක් à¶à¶§à·Šà¶§à·” à¶šà¶» ඇà¶</string> + <string name="bottomsheet_drag_handle_content_description">à·„à·à¶¬à¶½à¶º අදින්න</string> + <string name="character_counter_content_description">අනුලකුණු %2$dන් %1$dà¶šà·Š ඇà¶à·”à·…à·” කෙරිණි</string> + <string name="character_counter_overflowed_content_description">අනුලකුණු සීමà·à·€ %2$dකින් %1$d ඉක්ම විය</string> + <string name="clear_text_end_icon_content_description">පෙළ හිස් කරන්න</string> + <string name="error_icon_content_description">දà·à·‚ය</string> + <string name="exposed_dropdown_menu_content_description">à¶´à¶à¶± මෙනුව පෙන්වන්න</string> + <string name="icon_content_description">සංවà·à¶¯ නිරූපකය</string> + <string name="item_view_role_description">à¶§à·à¶¶à¶º</string> + <string name="material_clock_toggle_content_description">පෙරවරු හ෠පස්වරු à¶à·à¶»à¶±à·Šà¶±</string> + <string name="material_hour_24h_suffix">à¶´à·à¶º %1$sà¶šà·Š</string> + <string name="material_hour_selection">à¶´à·à¶º à¶à·à¶»à¶±à·Šà¶±</string> + <string name="material_hour_suffix">%1$sයි</string> + <string name="material_minute_selection">මිනිà¶à·Šà¶à·” à¶à·à¶»à¶±à·Šà¶±</string> + <string name="material_minute_suffix">මිනිà¶à·Šà¶à·” %1$sයි</string> + <string name="material_timepicker_am">පෙව</string> + <string name="material_timepicker_clock_mode_description">වේල෠ආදà·à¶±à¶º සඳහ෠ඔරලà·à·ƒà·” à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.</string> + <string name="material_timepicker_hour">à¶´à·à¶º</string> + <string name="material_timepicker_minute">මිනිà¶à·Šà¶à·”</string> + <string name="material_timepicker_pm">à¶´à·€</string> + <string name="material_timepicker_select_time">වේලà·à·€ à¶à·à¶»à¶±à·Šà¶±</string> + <string name="material_timepicker_text_input_mode_description">වේල෠ආදà·à¶±à¶º සඳහ෠ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.</string> + <string name="mtrl_badge_numberless_content_description">නව දà·à¶±à·”ම්දීම</string> + <string name="mtrl_chip_close_icon_content_description">%1$s ඉවà¶à·Š කරන්න</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">නව දà·à¶±à·”ම්දීම් %1$dà¶šà¶§ වඩà·</string> + <string name="mtrl_picker_a11y_next_month">ලබන මà·à·ƒà¶ºà¶§ වෙනස් කරන්න</string> + <string name="mtrl_picker_a11y_prev_month">කලින් මà·à·ƒà¶ºà¶§ වෙනස් කරන්න</string> + <string name="mtrl_picker_announce_current_selection">à·€à¶à·Šà¶¸à¶±à·Š à¶à·šà¶»à·“ම: %1$s</string> + <string name="mtrl_picker_cancel">අවලංගු කරන්න</string> + <string name="mtrl_picker_confirm">හරි</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">දිනය à¶à·à¶»à¶±à·Šà¶±</string> + <string name="mtrl_picker_date_header_unselected">à¶à·šà¶»à·– දිනය</string> + <string name="mtrl_picker_day_of_week_column_header">දින à¶à·“රුව: %1$s</string> + <string name="mtrl_picker_invalid_format">අවලංගු ආකෘà¶à·’යකි.</string> + <string name="mtrl_picker_invalid_format_example">උදà·à·„රණය: %1$s</string> + <string name="mtrl_picker_invalid_format_use">à¶·à·à·€à·’à¶à¶º: %1$s</string> + <string name="mtrl_picker_invalid_range">අවලංගු à¶´à¶»à·à·ƒà¶ºà¶šà·’.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s වසරට සංචà·à¶½à¶±à¶º කරන්න</string> + <string name="mtrl_picker_out_of_range">à¶´à¶»à·à·ƒà¶ºà·™à¶±à·Š à¶´à·’à¶§à¶: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ආරම්භක දිනය – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – නිම෠වන දිනය</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">à¶´à¶»à·à·ƒà¶º à¶à·à¶»à¶±à·Šà¶±</string> + <string name="mtrl_picker_range_header_unselected">ආරම්භක දිනය – නිම෠වන දිනය</string> + <string name="mtrl_picker_save">සුරකින්න</string> + <string name="mtrl_picker_text_input_date_hint">දිනය</string> + <string name="mtrl_picker_text_input_date_range_end_hint">නිම෠වන දිනය</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ආරම්භක දිනය</string> + <string name="mtrl_picker_text_input_day_abbr">ද</string> + <string name="mtrl_picker_text_input_month_abbr">ම</string> + <string name="mtrl_picker_text_input_year_abbr">à·€</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">දින දර්à·à¶± ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්න</string> + <string name="mtrl_picker_toggle_to_day_selection">දිනයක් à¶à·šà¶»à·“මට මà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්න</string> + <string name="mtrl_picker_toggle_to_text_input_mode">පෙළ ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්න</string> + <string name="mtrl_picker_toggle_to_year_selection">වසරක් à¶à·šà¶»à·“මට මà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්න</string> + <string name="mtrl_timepicker_cancel">අවලංගු කරන්න</string> + <string name="mtrl_timepicker_confirm">හරි</string> + <string name="password_toggle_content_description">මුරපදය පෙන්වන්න</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sk/values-sk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sk/values-sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..719cd6ae9d039c525c11f54249739c3bfbbae4ce --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sk/values-sk.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d nové upozornenie</item> + <item quantity="few">%d nové upozornenia</item> + <item quantity="many">%d new notifications</item> + <item quantity="other">%d nových upozornenÃ</item> + </plurals> + <string name="bottomsheet_action_collapse">ZbaliÅ¥ dolný hárok</string> + <string name="bottomsheet_action_expand">RozbaliÅ¥ dolný hárok</string> + <string name="bottomsheet_action_expand_halfway">RozbaliÅ¥ napoly</string> + <string name="bottomsheet_drag_handle_clicked">Dvojité klepnutie na presúvadlo</string> + <string name="bottomsheet_drag_handle_content_description">Presúvadlo</string> + <string name="character_counter_content_description">Zadané znaky: %1$d z %2$d</string> + <string name="character_counter_overflowed_content_description">Bol prekroÄený povolený poÄet znakov (%1$d z %2$d)</string> + <string name="clear_text_end_icon_content_description">VymazaÅ¥ text</string> + <string name="error_icon_content_description">Chyba</string> + <string name="exposed_dropdown_menu_content_description">ZobraziÅ¥ rozbaľovaciu ponuku</string> + <string name="icon_content_description">Ikona dialógového okna</string> + <string name="item_view_role_description">Tabulátor</string> + <string name="material_clock_toggle_content_description">Vyberte AM alebo PM</string> + <string name="material_hour_24h_suffix">%1$s hodÃn</string> + <string name="material_hour_selection">VybraÅ¥ hodinu</string> + <string name="material_hour_suffix">%1$s</string> + <string name="material_minute_selection">Vyberte minúty</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Ak chcete zadaÅ¥ Äas, prepnite na režim hodÃn.</string> + <string name="material_timepicker_hour">Hodina</string> + <string name="material_timepicker_minute">Minúta</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Vyberte Äas</string> + <string name="material_timepicker_text_input_mode_description">Ak chcete zadaÅ¥ Äas, prepnite na textový režim vstupu</string> + <string name="mtrl_badge_numberless_content_description">Nové upozornenie</string> + <string name="mtrl_chip_close_icon_content_description">OdstrániÅ¥ položku %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Viac než %1$d nových upozornenÃ</string> + <string name="mtrl_picker_a11y_next_month">ÄŽalšà mesiac</string> + <string name="mtrl_picker_a11y_prev_month">Predchádzajúci mesiac</string> + <string name="mtrl_picker_announce_current_selection">Aktuálny výber: %1$s</string> + <string name="mtrl_picker_cancel">ZruÅ¡iÅ¥</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Vyberte dátum</string> + <string name="mtrl_picker_date_header_unselected">Vybraný dátum</string> + <string name="mtrl_picker_day_of_week_column_header">Stĺpec dnÃ: %1$s</string> + <string name="mtrl_picker_invalid_format">Neplatný formát.</string> + <string name="mtrl_picker_invalid_format_example">PrÃklad: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Použite: %1$s</string> + <string name="mtrl_picker_invalid_range">Neplatný rozsah.</string> + <string name="mtrl_picker_navigate_to_year_description">PrejsÅ¥ na rok %1$s</string> + <string name="mtrl_picker_out_of_range">Mimo rozsahu: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Dátum zaÄatia – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – dátum ukonÄenia</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Vyberte rozsah</string> + <string name="mtrl_picker_range_header_unselected">Dátum zaÄatia – dátum ukonÄenia</string> + <string name="mtrl_picker_save">UložiÅ¥</string> + <string name="mtrl_picker_text_input_date_hint">Dátum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Dátum ukonÄenia</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Dátum zaÄatia</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">r</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Prepnúť na kalendárový režim vstupu</string> + <string name="mtrl_picker_toggle_to_day_selection">KlepnutÃm prepnete na výber dňa</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Prepnúť na textový režim vstupu</string> + <string name="mtrl_picker_toggle_to_year_selection">KlepnutÃm prepnete na výber roka</string> + <string name="mtrl_timepicker_cancel">ZruÅ¡iÅ¥</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">ZobraziÅ¥ heslo</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sl/values-sl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sl/values-sl.xml new file mode 100644 index 0000000000000000000000000000000000000000..cea042edd9d626797f05d683e3fc72843daccc6e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sl/values-sl.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d novo obvestilo</item> + <item quantity="two">%d novi obvestili</item> + <item quantity="few">%d nova obvestila</item> + <item quantity="other">%d novih obvestil</item> + </plurals> + <string name="bottomsheet_action_collapse">Strnitev razdelka na dnu zaslona</string> + <string name="bottomsheet_action_expand">RazÅ¡iritev razdelka na dnu zaslona</string> + <string name="bottomsheet_action_expand_halfway">RazÅ¡irjanje na pol viÅ¡ine</string> + <string name="bottomsheet_drag_handle_clicked">Dvakrat dotaknjena roÄica za vleÄenje</string> + <string name="bottomsheet_drag_handle_content_description">RoÄica za vleÄenje</string> + <string name="character_counter_content_description">Å tevilo vnesenih znakov je %1$d od %2$d</string> + <string name="character_counter_overflowed_content_description">Omejitev Å¡tevila znakov je presegla %1$d od %2$d</string> + <string name="clear_text_end_icon_content_description">Izbris besedila</string> + <string name="error_icon_content_description">Napaka</string> + <string name="exposed_dropdown_menu_content_description">Prikaz spustnega menija</string> + <string name="icon_content_description">Ikona pogovornega okna</string> + <string name="item_view_role_description">Zavihek</string> + <string name="material_clock_toggle_content_description">Izberite dopoldanski ali popoldanski Äas.</string> + <string name="material_hour_24h_suffix">%1$s h</string> + <string name="material_hour_selection">Izberite uro</string> + <string name="material_hour_suffix">%1$s</string> + <string name="material_minute_selection">Izberite minute</string> + <string name="material_minute_suffix">%1$s min</string> + <string name="material_timepicker_am">dop.</string> + <string name="material_timepicker_clock_mode_description">Preklopite na naÄin ure, da vnesete Äas.</string> + <string name="material_timepicker_hour">Ura</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">pop.</string> + <string name="material_timepicker_select_time">Izberite uro</string> + <string name="material_timepicker_text_input_mode_description">Preklopite na naÄin za vnaÅ¡anje besedila, da vnesete Äas.</string> + <string name="mtrl_badge_numberless_content_description">Novo obvestilo</string> + <string name="mtrl_chip_close_icon_content_description">Odstranite %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">VeÄ kot toliko novih obvestil: %1$d</string> + <string name="mtrl_picker_a11y_next_month">Spremeni na naslednji mesec</string> + <string name="mtrl_picker_a11y_prev_month">Spremeni na prejÅ¡nji mesec</string> + <string name="mtrl_picker_announce_current_selection">Trenutna izbira: %1$s</string> + <string name="mtrl_picker_cancel">PrekliÄi</string> + <string name="mtrl_picker_confirm">V redu</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Izberite datum</string> + <string name="mtrl_picker_date_header_unselected">Izbrani datum</string> + <string name="mtrl_picker_day_of_week_column_header">Stolpec dni: %1$s</string> + <string name="mtrl_picker_invalid_format">Neveljavna oblika.</string> + <string name="mtrl_picker_invalid_format_example">Primer: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Uporabite: %1$s</string> + <string name="mtrl_picker_invalid_range">Neveljaven razpon.</string> + <string name="mtrl_picker_navigate_to_year_description">Pomik na leto %1$s</string> + <string name="mtrl_picker_out_of_range">Zunaj razpona: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">ZaÄetni datum–%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s–konÄni datum</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Izberite obseg</string> + <string name="mtrl_picker_range_header_unselected">ZaÄetni datum–konÄni datum</string> + <string name="mtrl_picker_save">Shrani</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">KonÄni datum</string> + <string name="mtrl_picker_text_input_date_range_start_hint">ZaÄetni datum</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">l</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Preklop na naÄin vnosa v koledar</string> + <string name="mtrl_picker_toggle_to_day_selection">Dotik za preklop na izbiro dneva</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Preklop na naÄin vnosa besedila</string> + <string name="mtrl_picker_toggle_to_year_selection">Dotik za preklop na izbiro leta</string> + <string name="mtrl_timepicker_cancel">PrekliÄi</string> + <string name="mtrl_timepicker_confirm">V redu</string> + <string name="password_toggle_content_description">Prikaz gesla</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-small-v4/values-small-v4.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-small-v4/values-small-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..2c200554a32d8a82aceb99b43209937695882579 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-small-v4/values-small-v4.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="mtrl_alert_dialog_background_inset_bottom">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_end">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_start">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_top">24dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sq/values-sq.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sq/values-sq.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba94542b37f53c7aa9327f3a8ff46deca4dc3e5b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sq/values-sq.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d njoftim i ri</item> + <item quantity="other">%d njoftime të reja</item> + </plurals> + <string name="bottomsheet_action_collapse">Palos fletën e poshtme</string> + <string name="bottomsheet_action_expand">Zgjero fletën e poshtme</string> + <string name="bottomsheet_action_expand_halfway">Zgjeroje deri në gjysmë</string> + <string name="bottomsheet_drag_handle_clicked">Te doreza e zvarritjes u trokit dy herë</string> + <string name="bottomsheet_drag_handle_content_description">Doreza e zvarritjes</string> + <string name="character_counter_content_description">Karakteret e futura: %1$d nga %2$d</string> + <string name="character_counter_overflowed_content_description">Kufiri i karaktereve është kaluar: %1$d nga %2$d</string> + <string name="clear_text_end_icon_content_description">Pastro tekstin</string> + <string name="error_icon_content_description">Gabim</string> + <string name="exposed_dropdown_menu_content_description">Shfaq menynë me lëshim poshtë</string> + <string name="icon_content_description">Ikona e dialogut</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Zgjidh paradite ose pasdite</string> + <string name="material_hour_24h_suffix">%1$s orë</string> + <string name="material_hour_selection">Zgjidh orën</string> + <string name="material_hour_suffix">%1$s fiks</string> + <string name="material_minute_selection">Përzgjidh minutat</string> + <string name="material_minute_suffix">%1$s minuta</string> + <string name="material_timepicker_am">PD</string> + <string name="material_timepicker_clock_mode_description">Kalo te modaliteti i orës për hyrjen e kohës.</string> + <string name="material_timepicker_hour">Ora</string> + <string name="material_timepicker_minute">Minuta</string> + <string name="material_timepicker_pm">PD</string> + <string name="material_timepicker_select_time">Zgjidh orën</string> + <string name="material_timepicker_text_input_mode_description">Kalo te modaliteti i hyrjes së tekstit për hyrjen e kohës.</string> + <string name="mtrl_badge_numberless_content_description">Njoftim i ri</string> + <string name="mtrl_chip_close_icon_content_description">Hiq %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Më shumë se %1$d njoftime të reja</string> + <string name="mtrl_picker_a11y_next_month">Ndrysho te muaji i ardhshëm</string> + <string name="mtrl_picker_a11y_prev_month">Ndrysho te muaji i kaluar</string> + <string name="mtrl_picker_announce_current_selection">Zgjedhja aktuale: %1$s</string> + <string name="mtrl_picker_cancel">Anulo</string> + <string name="mtrl_picker_confirm">Në rregull</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Zgjidh datën</string> + <string name="mtrl_picker_date_header_unselected">Data e zgjedhur</string> + <string name="mtrl_picker_day_of_week_column_header">Kolona e ditëve: %1$s</string> + <string name="mtrl_picker_invalid_format">Format i pavlefshëm.</string> + <string name="mtrl_picker_invalid_format_example">Shembull: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Përdor: %1$s</string> + <string name="mtrl_picker_invalid_range">Gamë e pavlefshme.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigo te viti %1$s</string> + <string name="mtrl_picker_out_of_range">Jashtë gamës: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Data e fillimit – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – data e përfundimit</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">Zgjidh gamën</string> + <string name="mtrl_picker_range_header_unselected">Data e fillimit - data e përfundimit</string> + <string name="mtrl_picker_save">Ruaj</string> + <string name="mtrl_picker_text_input_date_hint">Data</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Data e përfundimit</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Data e fillimit</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">v</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Kalo te modaliteti i \"Hyrjes së kalendarit\"</string> + <string name="mtrl_picker_toggle_to_day_selection">Trokit për të kaluar te zgjedhja e një dite</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Kalo te modaliteti i \"Hyrjes së tekstit\"</string> + <string name="mtrl_picker_toggle_to_year_selection">Trokit për të kaluar te zgjedhja e një viti</string> + <string name="mtrl_timepicker_cancel">Anulo</string> + <string name="mtrl_timepicker_confirm">Në rregull</string> + <string name="password_toggle_content_description">Shfaq fjalëkalimin</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sr/values-sr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sr/values-sr.xml new file mode 100644 index 0000000000000000000000000000000000000000..2c149e0dc8f69a3c294520cdc92be3ba009ec6b4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sr/values-sr.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ново обавештење</item> + <item quantity="few">%d нова обавештења</item> + <item quantity="other">%d нових обавештења</item> + </plurals> + <string name="bottomsheet_action_collapse">Скупите доњу табелу</string> + <string name="bottomsheet_action_expand">Проширите доњу табелу</string> + <string name="bottomsheet_action_expand_halfway">Проширите до пола</string> + <string name="bottomsheet_drag_handle_clicked">Идентификатор за превлачење је двапут додирнут</string> + <string name="bottomsheet_drag_handle_content_description">Ручица за превлачење</string> + <string name="character_counter_content_description">Унети знакови: %1$d од %2$d</string> + <string name="character_counter_overflowed_content_description">Прекорачено је ограничење броја знакова: %1$d од %2$d</string> + <string name="clear_text_end_icon_content_description">Обриши текÑÑ‚</string> + <string name="error_icon_content_description">Грешка</string> + <string name="exposed_dropdown_menu_content_description">Прикажи падајући мени</string> + <string name="icon_content_description">Икона дијалога</string> + <string name="item_view_role_description">Картица</string> + <string name="material_clock_toggle_content_description">Изаберите пре подне или по подне</string> + <string name="material_hour_24h_suffix">%1$s Ñ</string> + <string name="material_hour_selection">Изаберите Ñат</string> + <string name="material_hour_suffix">%1$s Ñ</string> + <string name="material_minute_selection">Изаберите минуте</string> + <string name="material_minute_suffix">%1$s мин</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Пређите у режим Ñата ради уноÑа времена.</string> + <string name="material_timepicker_hour">Сат</string> + <string name="material_timepicker_minute">Минут</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Изаберите време</string> + <string name="material_timepicker_text_input_mode_description">Пређите у режим уноÑа текÑта ради уноÑа времена.</string> + <string name="mtrl_badge_numberless_content_description">Ðово обавештење</string> + <string name="mtrl_chip_close_icon_content_description">Уклоните %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Ðових обавештења: више од %1$d</string> + <string name="mtrl_picker_a11y_next_month">Пређите на Ñледећи меÑец</string> + <string name="mtrl_picker_a11y_prev_month">Пређите на претходни меÑец</string> + <string name="mtrl_picker_announce_current_selection">Ðктуелни избор: %1$s</string> + <string name="mtrl_picker_cancel">Откажи</string> + <string name="mtrl_picker_confirm">Потврди</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Изаберите датум</string> + <string name="mtrl_picker_date_header_unselected">Изабрани датум</string> + <string name="mtrl_picker_day_of_week_column_header">Колона Ñа данима: %1$s</string> + <string name="mtrl_picker_invalid_format">Формат је неважећи.</string> + <string name="mtrl_picker_invalid_format_example">Пример: %1$s</string> + <string name="mtrl_picker_invalid_format_use">КориÑтите: %1$s</string> + <string name="mtrl_picker_invalid_range">Ðеважећи период.</string> + <string name="mtrl_picker_navigate_to_year_description">Идите на годину %1$s</string> + <string name="mtrl_picker_out_of_range">Изван периода: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Датум почетка – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Датум завршетка</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Изаберите период</string> + <string name="mtrl_picker_range_header_unselected">Датум почетка – Датум завршетка</string> + <string name="mtrl_picker_save">Сачувај</string> + <string name="mtrl_picker_text_input_date_hint">Датум</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Датум завршетка</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Датум почетка</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">г</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Пређите на режим уноÑа у Календару</string> + <string name="mtrl_picker_toggle_to_day_selection">Додирните да биÑте прешли на избор дана</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Пређите на режим уноÑа текÑта</string> + <string name="mtrl_picker_toggle_to_year_selection">Додирните да биÑте прешли на избор године</string> + <string name="mtrl_timepicker_cancel">Откажи</string> + <string name="mtrl_timepicker_confirm">Потврди</string> + <string name="password_toggle_content_description">Прикажи лозинку</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sv/values-sv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sv/values-sv.xml new file mode 100644 index 0000000000000000000000000000000000000000..256dcf5365c02ff221481e99b1b4271bd7862b05 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sv/values-sv.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ny avisering</item> + <item quantity="other">%d nya aviseringar</item> + </plurals> + <string name="bottomsheet_action_collapse">Komprimera arket pÃ¥ nedre delen av skärmen</string> + <string name="bottomsheet_action_expand">Utöka arket pÃ¥ nedre delen av skärmen</string> + <string name="bottomsheet_action_expand_halfway">Utöka till hälften</string> + <string name="bottomsheet_drag_handle_clicked">Du tryckte snabbt tvÃ¥ gÃ¥nger pÃ¥ handtaget</string> + <string name="bottomsheet_drag_handle_content_description">Handtag</string> + <string name="character_counter_content_description">%1$d av %2$d tecken har angetts</string> + <string name="character_counter_overflowed_content_description">Teckengränsen har överskridits: %1$d av %2$d</string> + <string name="clear_text_end_icon_content_description">Rensa text</string> + <string name="error_icon_content_description">Fel</string> + <string name="exposed_dropdown_menu_content_description">Visa rullgardinsmenyn</string> + <string name="icon_content_description">Dialogikon</string> + <string name="item_view_role_description">Flik</string> + <string name="material_clock_toggle_content_description">Välj mellan FM och EM</string> + <string name="material_hour_24h_suffix">%1$s timmar</string> + <string name="material_hour_selection">Ange timme</string> + <string name="material_hour_suffix">Klockan %1$s</string> + <string name="material_minute_selection">Välj minuter</string> + <string name="material_minute_suffix">%1$s minuter</string> + <string name="material_timepicker_am">FM</string> + <string name="material_timepicker_clock_mode_description">Byt till klockläget och ange tid.</string> + <string name="material_timepicker_hour">Timme</string> + <string name="material_timepicker_minute">Minut</string> + <string name="material_timepicker_pm">EM</string> + <string name="material_timepicker_select_time">Välj tid</string> + <string name="material_timepicker_text_input_mode_description">Byt till textinmatningsläget och ange tid.</string> + <string name="mtrl_badge_numberless_content_description">Ny avisering</string> + <string name="mtrl_chip_close_icon_content_description">Ta bort (%1$s)</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Fler än %1$d nya aviseringar</string> + <string name="mtrl_picker_a11y_next_month">Ändra till nästa mÃ¥nad</string> + <string name="mtrl_picker_a11y_prev_month">Ändra till föregÃ¥ende mÃ¥nad</string> + <string name="mtrl_picker_announce_current_selection">Aktuellt val: %1$s</string> + <string name="mtrl_picker_cancel">Avbryt</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Välj datum</string> + <string name="mtrl_picker_date_header_unselected">Valt datum</string> + <string name="mtrl_picker_day_of_week_column_header">Kolumn med dagar: %1$s</string> + <string name="mtrl_picker_invalid_format">Ogiltigt format.</string> + <string name="mtrl_picker_invalid_format_example">Exempel: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Använd %1$s</string> + <string name="mtrl_picker_invalid_range">Ogiltigt intervall.</string> + <string name="mtrl_picker_navigate_to_year_description">Navigera till Ã¥r %1$s</string> + <string name="mtrl_picker_out_of_range">Utanför intervallet: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Startdatum–%1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s–slutdatum</string> + <string name="mtrl_picker_range_header_selected">%1$s–%2$s</string> + <string name="mtrl_picker_range_header_title">Välj intervall</string> + <string name="mtrl_picker_range_header_unselected">Startdatum–slutdatum</string> + <string name="mtrl_picker_save">Spara</string> + <string name="mtrl_picker_text_input_date_hint">Datum</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Slutdatum</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Startdatum</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">Ã¥</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Byt till kalender som inmatningsläge</string> + <string name="mtrl_picker_toggle_to_day_selection">Byt till att välja en dag genom att trycka</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Byt till text som inmatningsläge</string> + <string name="mtrl_picker_toggle_to_year_selection">Byt till att välja ett Ã¥r genom att trycka</string> + <string name="mtrl_timepicker_cancel">Avbryt</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Visa lösenord</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw/values-sw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw/values-sw.xml new file mode 100644 index 0000000000000000000000000000000000000000..63aceef13c073c2dbcb8552508dad5ce73736025 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw/values-sw.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">Arifa %d mpya</item> + <item quantity="other">Arifa %d mpya</item> + </plurals> + <string name="bottomsheet_action_collapse">Kunja safu ya chini</string> + <string name="bottomsheet_action_expand">Panua safu ya chini</string> + <string name="bottomsheet_action_expand_halfway">Panua nusu</string> + <string name="bottomsheet_drag_handle_clicked">Aikoni ya buruta imeguswa mara mbili</string> + <string name="bottomsheet_drag_handle_content_description">Aikoni ya buruta</string> + <string name="character_counter_content_description">Umeweka herufi %1$d kati ya %2$d</string> + <string name="character_counter_overflowed_content_description">Umepitisha idadi ya juu ya herufi %1$d kati ya %2$d</string> + <string name="clear_text_end_icon_content_description">Futa maandishi</string> + <string name="error_icon_content_description">Hitilafu</string> + <string name="exposed_dropdown_menu_content_description">Onyesha menyu kunjuzi</string> + <string name="icon_content_description">Aikoni ya Kidirisha</string> + <string name="item_view_role_description">Kichupo</string> + <string name="material_clock_toggle_content_description">Chagua AM au PM</string> + <string name="material_hour_24h_suffix">Saa %1$s</string> + <string name="material_hour_selection">Chagua saa</string> + <string name="material_hour_suffix">Saa %1$s kamili</string> + <string name="material_minute_selection">Chagua dakika</string> + <string name="material_minute_suffix">Dakika %1$s</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Badilisha umbo liwe la saa ya mishale wakati wa kuweka muda.</string> + <string name="material_timepicker_hour">Saa</string> + <string name="material_timepicker_minute">Dakika</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Chagua wakati</string> + <string name="material_timepicker_text_input_mode_description">Badilisha iwe katika hali ya maandishi wakati wa kuweka muda.</string> + <string name="mtrl_badge_numberless_content_description">Arifa mpya</string> + <string name="mtrl_chip_close_icon_content_description">Ondoa %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Zaidi ya arifa %1$d mpya</string> + <string name="mtrl_picker_a11y_next_month">Nenda kwenye mwezi unaofuata</string> + <string name="mtrl_picker_a11y_prev_month">Rudi kwenye mwezi uliotangulia</string> + <string name="mtrl_picker_announce_current_selection">Uteuzi wa sasa: %1$s</string> + <string name="mtrl_picker_cancel">Ghairi</string> + <string name="mtrl_picker_confirm">Sawa</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Chagua Tarehe</string> + <string name="mtrl_picker_date_header_unselected">Tarehe uliyochagua</string> + <string name="mtrl_picker_day_of_week_column_header">Safu wima ya siku: %1$s</string> + <string name="mtrl_picker_invalid_format">Muundo si sahihi</string> + <string name="mtrl_picker_invalid_format_example">Mfano: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Tumia: %1$s</string> + <string name="mtrl_picker_invalid_range">Kipindi si sahihi.</string> + <string name="mtrl_picker_navigate_to_year_description">Sogeza kwenye mwaka wa %1$s</string> + <string name="mtrl_picker_out_of_range">Nje ya kipindi: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Tarehe ya kuanza – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Tarehe ya mwisho</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Chagua Kipindi cha Tarehe</string> + <string name="mtrl_picker_range_header_unselected">Tarehe ya kuanza – Tarehe ya mwisho</string> + <string name="mtrl_picker_save">Hifadhi</string> + <string name="mtrl_picker_text_input_date_hint">Tarehe</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Tarehe ya mwisho</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Tarehe ya kuanza</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Tumia programu ya kuingiza data kwenye kalenda</string> + <string name="mtrl_picker_toggle_to_day_selection">Gusa ili uende kwenye sehemu ya kuchagua siku</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Tumia programu ya kuingiza data ya maandishi</string> + <string name="mtrl_picker_toggle_to_year_selection">Gusa ili uende kwenye sehemu ya kuchagua mwaka</string> + <string name="mtrl_timepicker_cancel">Ghairi</string> + <string name="mtrl_timepicker_confirm">Sawa</string> + <string name="password_toggle_content_description">Onyesha nenosiri</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..bae39f1a0c47c55849f30902f94366ffb5b53b2c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="design_navigation_max_width">320dp</dimen> + <dimen name="design_snackbar_action_inline_max_width">0dp</dimen> + <dimen name="design_snackbar_background_corner_radius">2dp</dimen> + <dimen name="design_snackbar_extra_spacing_horizontal">24dp</dimen> + <dimen name="design_snackbar_max_width">576dp</dimen> + <dimen name="design_snackbar_min_width">320dp</dimen> + <dimen name="design_snackbar_padding_vertical_2lines">@dimen/design_snackbar_padding_vertical + </dimen> + <dimen name="design_tab_scrollable_min_width">160dp</dimen> + <dimen name="mtrl_bottomappbar_height">64dp</dimen> + <dimen name="mtrl_toolbar_default_height">64dp</dimen> + <integer name="design_snackbar_text_max_lines">1</integer> + <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout"> + <item name="tabGravity">center</item> + <item name="tabMode">fixed</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ta/values-ta.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..5db7cb82b013975208caf1e7e2e03488dd806cf5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ta/values-ta.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯</item> + <item quantity="other">%d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯</item> + </plurals> + <string name="bottomsheet_action_collapse">கீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆà®šà¯ சà¯à®°à¯à®•à¯à®•à¯à®®à¯</string> + <string name="bottomsheet_action_expand">கீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆ விரிவாகà¯à®•à¯à®®à¯</string> + <string name="bottomsheet_action_expand_halfway">பாதியளவ௠விரிவாகà¯à®•à¯à®®à¯</string> + <string name="bottomsheet_drag_handle_clicked">இழà¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯ இரà¯à®®à¯à®±à¯ˆ தடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯</string> + <string name="bottomsheet_drag_handle_content_description">இழà¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯</string> + <string name="character_counter_content_description">%2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯à®•ள௠உளà¯à®³à®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®©</string> + <string name="character_counter_overflowed_content_description">%2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯ வரமà¯à®ªà¯ மீறபà¯à®ªà®Ÿà¯à®Ÿà®¤à¯</string> + <string name="clear_text_end_icon_content_description">உரையை அழிகà¯à®•à¯à®®à¯</string> + <string name="error_icon_content_description">பிழை</string> + <string name="exposed_dropdown_menu_content_description">கீழ௠தோனà¯à®±à®²à¯ மெனà¯à®µà¯ˆà®•௠காடà¯à®Ÿà¯à®®à¯ படà¯à®Ÿà®©à¯</string> + <string name="icon_content_description">உரையாடல௠à®à®•ானà¯</string> + <string name="item_view_role_description">தாவலà¯</string> + <string name="material_clock_toggle_content_description">AM அலà¯à®²à®¤à¯ PMமைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯</string> + <string name="material_hour_24h_suffix">%1$s மணிநேரமà¯</string> + <string name="material_hour_selection">மணிநேரதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯</string> + <string name="material_hour_suffix">%1$s மணி</string> + <string name="material_minute_selection">நிமிடதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯</string> + <string name="material_minute_suffix">%1$s நிமிடஙà¯à®•ளà¯</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">நேர உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.</string> + <string name="material_timepicker_hour">மணிநேரமà¯</string> + <string name="material_timepicker_minute">நிமிடமà¯</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">நேரதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯</string> + <string name="material_timepicker_text_input_mode_description">உரை உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.</string> + <string name="mtrl_badge_numberless_content_description">பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯</string> + <string name="mtrl_chip_close_icon_content_description">%1$s஠அகறà¯à®±à¯</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d+ பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯</string> + <string name="mtrl_picker_a11y_next_month">அடà¯à®¤à¯à®¤ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯</string> + <string name="mtrl_picker_a11y_prev_month">à®®à¯à®¨à¯à®¤à¯ˆà®¯ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯</string> + <string name="mtrl_picker_announce_current_selection">தறà¯à®ªà¯‹à®¤à¯ˆà®¯ தேரà¯à®µà¯: %1$s</string> + <string name="mtrl_picker_cancel">ரதà¯à®¤à¯à®šà¯†à®¯à¯</string> + <string name="mtrl_picker_confirm">சரி</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯</string> + <string name="mtrl_picker_date_header_unselected">தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ தேதி</string> + <string name="mtrl_picker_day_of_week_column_header">நாடà¯à®•ளின௠நெடà¯à®µà®°à®¿à®šà¯ˆ: %1$s</string> + <string name="mtrl_picker_invalid_format">தவறான வடிவமà¯.</string> + <string name="mtrl_picker_invalid_format_example">உதாரணமà¯: %1$s</string> + <string name="mtrl_picker_invalid_format_use">%1$sà®à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•</string> + <string name="mtrl_picker_invalid_range">தவறான வரமà¯à®ªà¯.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s ஆம௠ஆணà¯à®Ÿà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯</string> + <string name="mtrl_picker_out_of_range">எலà¯à®²à¯ˆà®•à¯à®•௠வெளியே உளà¯à®³à®¤à¯: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">தொடகà¯à®•த௠தேதி – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">வரமà¯à®ªà¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯</string> + <string name="mtrl_picker_range_header_unselected">தொடகà¯à®•த௠தேதி - à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி</string> + <string name="mtrl_picker_save">சேமி</string> + <string name="mtrl_picker_text_input_date_hint">தேதி</string> + <string name="mtrl_picker_text_input_date_range_end_hint">à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி</string> + <string name="mtrl_picker_text_input_date_range_start_hint">தொடகà¯à®•த௠தேதி</string> + <string name="mtrl_picker_text_input_day_abbr">நா</string> + <string name="mtrl_picker_text_input_month_abbr">மா</string> + <string name="mtrl_picker_text_input_year_abbr">ஆ</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">கேலெணà¯à®Ÿà®°à¯ உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯</string> + <string name="mtrl_picker_toggle_to_day_selection">நாளைத௠தேரà¯à®µà¯à®šà¯†à®¯à¯à®µà®¤à®±à¯à®•௠மாறà¯à®± தடà¯à®Ÿà®µà¯à®®à¯</string> + <string name="mtrl_picker_toggle_to_text_input_mode">உரை உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯</string> + <string name="mtrl_picker_toggle_to_year_selection">ஆணà¯à®Ÿà¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®µà®¤à®±à¯à®•௠மாறà¯à®± தடà¯à®Ÿà®µà¯à®®à¯</string> + <string name="mtrl_timepicker_cancel">ரதà¯à®¤à¯à®šà¯†à®¯à¯</string> + <string name="mtrl_timepicker_confirm">சரி</string> + <string name="password_toggle_content_description">கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆà®•௠காடà¯à®Ÿà¯</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-te/values-te.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..3a586efd714801d4c583c2a878962ce7a0375359 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-te/values-te.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d కొతà±à°¤ నోటిఫికేషనà±</item> + <item quantity="other">%d కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±</item> + </plurals> + <string name="bottomsheet_action_collapse">దిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± à°•à±à°¦à°¿à°¸à±à°¤à±à°‚ది</string> + <string name="bottomsheet_action_expand">దిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± విసà±à°¤à°°à°¿à°¸à±à°¤à±à°‚ది</string> + <string name="bottomsheet_action_expand_halfway">సగానà±à°¨à°¿ విసà±à°¤à°°à°¿à°‚పజేయండి</string> + <string name="bottomsheet_drag_handle_clicked">లాగే à°¹à±à°¯à°¾à°‚డిలౠడబà±à°²à±-à°Ÿà±à°¯à°¾à°ªà± చేయబడింది</string> + <string name="bottomsheet_drag_handle_content_description">లాగే à°¹à±à°¯à°¾à°‚à°¡à°¿à°²à±</string> + <string name="character_counter_content_description">%2$dలో %1$d à°…à°•à±à°·à°°à°¾à°²à± నమోదౠచేయబడà±à°¡à°¾à°¯à°¿</string> + <string name="character_counter_overflowed_content_description">à°…à°•à±à°·à°° పరిధి %2$dలో %1$dనౠఅధిగమించింది</string> + <string name="clear_text_end_icon_content_description">రాసినదానà±à°¨à°¿ తీసివేయండి</string> + <string name="error_icon_content_description">à°Žà°°à±à°°à°°à±</string> + <string name="exposed_dropdown_menu_content_description">à°¡à±à°°à°¾à°ªà±â€Œà°¡à±Œà°¨à± మెనూనౠచూపà±</string> + <string name="icon_content_description">డైలాగౠచిహà±à°¨à°‚</string> + <string name="item_view_role_description">à°Ÿà±à°¯à°¾à°¬à±</string> + <string name="material_clock_toggle_content_description">AM లేదా PMనౠఎంచà±à°•ోండి</string> + <string name="material_hour_24h_suffix">%1$s à°—à°‚à°Ÿà°²à±</string> + <string name="material_hour_selection">గంటనౠఎంచà±à°•ోండి</string> + <string name="material_hour_suffix">%1$s à°…à°µà±à°¤à±à°‚ది</string> + <string name="material_minute_selection">నిమిషాలనౠఎంచà±à°•ోండి</string> + <string name="material_minute_suffix">%1$s నిమిషాలà±</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">సమయానà±à°¨à°¿ నమోదౠచేయడం కోసం గడియారం మోడà±â€Œà°•ౠమారండి.</string> + <string name="material_timepicker_hour">à°—à°‚à°Ÿ</string> + <string name="material_timepicker_minute">నిమిషం</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">సమయానà±à°¨à°¿ à°Žà°‚à°šà±à°•ోండి</string> + <string name="material_timepicker_text_input_mode_description">సమయానà±à°¨à°¿ నమోదౠచేయడం కోసం వచన నమోదౠమోడà±â€Œà°•à°¿ మారండి.</string> + <string name="mtrl_badge_numberless_content_description">కొతà±à°¤ నోటిఫికేషనà±</string> + <string name="mtrl_chip_close_icon_content_description">(%1$s)ని తీసివేసà±à°¤à±à°‚ది</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d కంటే à°Žà°•à±à°•à±à°µ కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±</string> + <string name="mtrl_picker_a11y_next_month">వచà±à°šà±‡ నెలకౠమారà±à°šà±à°¤à±à°‚ది</string> + <string name="mtrl_picker_a11y_prev_month">à°®à±à°¨à±à°ªà°Ÿà°¿ నెలకౠమారà±à°šà±à°¤à±à°‚ది</string> + <string name="mtrl_picker_announce_current_selection">à°ªà±à°°à°¸à±à°¤à±à°¤ ఎంపిక: %1$s</string> + <string name="mtrl_picker_cancel">à°°à°¦à±à°¦à± చేయి</string> + <string name="mtrl_picker_confirm">సరే</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">తేదీని à°Žà°‚à°šà±à°•ోండి</string> + <string name="mtrl_picker_date_header_unselected">à°Žà°‚à°šà±à°•à±à°¨à±à°¨ తేది</string> + <string name="mtrl_picker_day_of_week_column_header">రోజà±à°² నిలà±à°µà± వరà±à°¸: %1$s</string> + <string name="mtrl_picker_invalid_format">ఫారà±à°®à°¾à°Ÿà± చెలà±à°²à°¦à±.</string> + <string name="mtrl_picker_invalid_format_example">ఉదాహరణ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ఇలా ఉపయోగించండి: %1$s</string> + <string name="mtrl_picker_invalid_range">చెలà±à°²à°¨à°¿ పరిధి.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$sసంవతà±à°¸à°°à°¾à°¨à°¿à°•à°¿ నావిగేటౠచేసà±à°¤à±à°‚ది</string> + <string name="mtrl_picker_out_of_range">పరిధి వెలà±à°ªà°² ఉంది: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">à°ªà±à°°à°¾à°°à°‚ఠతేదీ – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – à°®à±à°—ింపౠతేది</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">పరిధిని à°Žà°‚à°šà±à°•ోండి</string> + <string name="mtrl_picker_range_header_unselected">à°ªà±à°°à°¾à°°à°‚ఠతేది - à°®à±à°—ింపౠతేది</string> + <string name="mtrl_picker_save">సేవౠచేయి</string> + <string name="mtrl_picker_text_input_date_hint">తేదీ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">à°®à±à°—ింపౠతేదీ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">à°ªà±à°°à°¾à°°à°‚ఠతేదీ</string> + <string name="mtrl_picker_text_input_day_abbr">రో</string> + <string name="mtrl_picker_text_input_month_abbr">నె</string> + <string name="mtrl_picker_text_input_year_abbr">సం</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">à°•à±à°¯à°¾à°²à±†à°‚డరౠఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚ది</string> + <string name="mtrl_picker_toggle_to_day_selection">\'రోజà±à°¨à± ఎంపిక చేసà±à°•ోవడం\'కౠమారడానికి నొకà±à°•à°‚à°¡à°¿</string> + <string name="mtrl_picker_toggle_to_text_input_mode">వచన ఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚ది</string> + <string name="mtrl_picker_toggle_to_year_selection">\'సంవతà±à°¸à°°à°¾à°¨à±à°¨à°¿ ఎంపిక చేసà±à°•ోవడం\'కౠమారడానికి నొకà±à°•à°‚à°¡à°¿</string> + <string name="mtrl_timepicker_cancel">à°°à°¦à±à°¦à± చేయండి</string> + <string name="mtrl_timepicker_confirm">సరే</string> + <string name="password_toggle_content_description">పాసà±â€Œà°µà°°à±à°¡à±â€Œà°¨à± చూపà±</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-th/values-th.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..d48b19f86dcc26c0db3f52e439cd11401abec17f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-th/values-th.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£</item> + <item quantity="other">à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£</item> + </plurals> + <string name="bottomsheet_action_collapse">ยุบ Bottom Sheet</string> + <string name="bottomsheet_action_expand">ขยาย Bottom Sheet</string> + <string name="bottomsheet_action_expand_halfway">ขยายรายà¸à¸²à¸£à¸„รึ่งหนึ่ง</string> + <string name="bottomsheet_drag_handle_clicked">à¹à¸•ะà¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸à¸ªà¸à¸‡à¸„รั้ง</string> + <string name="bottomsheet_drag_handle_content_description">à¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸</string> + <string name="character_counter_content_description">ป้à¸à¸™à¸à¸±à¸à¸‚ระà¹à¸¥à¹‰à¸§ %1$d จาภ%2$d ตัว</string> + <string name="character_counter_overflowed_content_description">เà¸à¸´à¸™à¸ˆà¸³à¸™à¸§à¸™à¸à¸±à¸à¸‚ระสูงสุด %1$d จาภ%2$d</string> + <string name="clear_text_end_icon_content_description">ล้างข้à¸à¸„วาม</string> + <string name="error_icon_content_description">ข้à¸à¸œà¸´à¸”พลาด</string> + <string name="exposed_dropdown_menu_content_description">à¹à¸ªà¸”งเมนูà¹à¸šà¸šà¹€à¸¥à¸·à¹ˆà¸à¸™à¸¥à¸‡</string> + <string name="icon_content_description">ไà¸à¸„à¸à¸™à¸à¸¥à¹ˆà¸à¸‡à¹‚ต้ตà¸à¸š</string> + <string name="item_view_role_description">à¹à¸—็บ</string> + <string name="material_clock_toggle_content_description">เลืà¸à¸ AM หรืภPM</string> + <string name="material_hour_24h_suffix">%1$s ชั่วโมง</string> + <string name="material_hour_selection">เลืà¸à¸à¸Šà¸±à¹ˆà¸§à¹‚มง</string> + <string name="material_hour_suffix">%1$s นาฬิà¸à¸²</string> + <string name="material_minute_selection">เลืà¸à¸à¸™à¸²à¸—ี</string> + <string name="material_minute_suffix">%1$s นาที</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">สลับไปโหมดนาฬิà¸à¸²à¹€à¸žà¸·à¹ˆà¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²</string> + <string name="material_timepicker_hour">ชั่วโมง</string> + <string name="material_timepicker_minute">นาที</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">เลืà¸à¸à¹€à¸§à¸¥à¸²</string> + <string name="material_timepicker_text_input_mode_description">สลับไปโหมดป้à¸à¸™à¸‚้à¸à¸„วามเพื่à¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²</string> + <string name="mtrl_badge_numberless_content_description">à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ</string> + <string name="mtrl_chip_close_icon_content_description">นำ %1$s à¸à¸à¸</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆà¸¡à¸²à¸à¸à¸§à¹ˆà¸² %1$d รายà¸à¸²à¸£</string> + <string name="mtrl_picker_a11y_next_month">เปลี่ยนไปที่เดืà¸à¸™à¸–ัดไป</string> + <string name="mtrl_picker_a11y_prev_month">เปลี่ยนไปที่เดืà¸à¸™à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²</string> + <string name="mtrl_picker_announce_current_selection">à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¹ƒà¸™à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™: %1$s</string> + <string name="mtrl_picker_cancel">ยà¸à¹€à¸¥à¸´à¸</string> + <string name="mtrl_picker_confirm">ตà¸à¸¥à¸‡</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">เลืà¸à¸à¸§à¸±à¸™à¸—ี่</string> + <string name="mtrl_picker_date_header_unselected">วันที่ที่เลืà¸à¸</string> + <string name="mtrl_picker_day_of_week_column_header">คà¸à¸¥à¸±à¸¡à¸™à¹Œà¸‚à¸à¸‡à¸§à¸±à¸™: %1$s</string> + <string name="mtrl_picker_invalid_format">รูปà¹à¸šà¸šà¹„ม่ถูà¸à¸•้à¸à¸‡</string> + <string name="mtrl_picker_invalid_format_example">ตัวà¸à¸¢à¹ˆà¸²à¸‡: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ใช้: %1$s</string> + <string name="mtrl_picker_invalid_range">ช่วงไม่ถูà¸à¸•้à¸à¸‡</string> + <string name="mtrl_picker_navigate_to_year_description">ไปที่ปี %1$s</string> + <string name="mtrl_picker_out_of_range">วันที่ไม่à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸Šà¹ˆà¸§à¸‡à¸—ี่à¸à¸™à¸¸à¸à¸²à¸•: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">วันที่เริ่มต้น – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – วันที่สิ้นสุด</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">เลืà¸à¸à¸Šà¹ˆà¸§à¸‡</string> + <string name="mtrl_picker_range_header_unselected">วันที่เริ่มต้น – วันที่สิ้นสุด</string> + <string name="mtrl_picker_save">บันทึà¸</string> + <string name="mtrl_picker_text_input_date_hint">วันที่</string> + <string name="mtrl_picker_text_input_date_range_end_hint">วันที่สิ้นสุด</string> + <string name="mtrl_picker_text_input_date_range_start_hint">วันที่เริ่มต้น</string> + <string name="mtrl_picker_text_input_day_abbr">ว</string> + <string name="mtrl_picker_text_input_month_abbr">ด</string> + <string name="mtrl_picker_text_input_year_abbr">ป</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">สลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸›à¸à¸´à¸—ิน</string> + <string name="mtrl_picker_toggle_to_day_selection">à¹à¸•ะเพื่à¸à¸ªà¸¥à¸±à¸šà¹„ปใช้à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸§à¸±à¸™</string> + <string name="mtrl_picker_toggle_to_text_input_mode">สลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸‚้à¸à¸„วาม</string> + <string name="mtrl_picker_toggle_to_year_selection">à¹à¸•ะเพื่à¸à¸ªà¸¥à¸±à¸šà¹„ปใช้à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸›à¸µ</string> + <string name="mtrl_timepicker_cancel">ยà¸à¹€à¸¥à¸´à¸</string> + <string name="mtrl_timepicker_confirm">ตà¸à¸¥à¸‡</string> + <string name="password_toggle_content_description">à¹à¸ªà¸”งรหัสผ่าน</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tl/values-tl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..5433f2c0cf26fb175f621e6d1663681578dd6c9f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tl/values-tl.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d bagong notification</item> + <item quantity="other">%d na bagong notification</item> + </plurals> + <string name="bottomsheet_action_collapse">I-collapse ang bottom sheet</string> + <string name="bottomsheet_action_expand">I-expand ang bottom sheet</string> + <string name="bottomsheet_action_expand_halfway">I-expand hanggang gitna</string> + <string name="bottomsheet_drag_handle_clicked">Na-double tap ang handle sa pag-drag</string> + <string name="bottomsheet_drag_handle_content_description">I-drag ang handle</string> + <string name="character_counter_content_description">Mga character na nailagay %1$d sa %2$d</string> + <string name="character_counter_overflowed_content_description">Lumampas sa limitasyon sa bilang ng character %1$d sa %2$d</string> + <string name="clear_text_end_icon_content_description">I-clear ang text</string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Ipakita ang dropdown na menu</string> + <string name="icon_content_description">Icon ng Dialog</string> + <string name="item_view_role_description">Tab</string> + <string name="material_clock_toggle_content_description">Piliin ang AM o PM</string> + <string name="material_hour_24h_suffix">%1$s (na) oras</string> + <string name="material_hour_selection">Pumili ng oras</string> + <string name="material_hour_suffix">%1$s o\'clock</string> + <string name="material_minute_selection">Pumili ng mga minuto</string> + <string name="material_minute_suffix">%1$s (na) minuto</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Lumipat sa mode ng orasan para sa input na oras.</string> + <string name="material_timepicker_hour">Oras</string> + <string name="material_timepicker_minute">Minuto</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Pumili ng oras</string> + <string name="material_timepicker_text_input_mode_description">Lumipat sa pamamaraan ng pag-input ng text para sa input na oras.</string> + <string name="mtrl_badge_numberless_content_description">Bagong notification</string> + <string name="mtrl_chip_close_icon_content_description">Alisin ang %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Mahigit %1$d (na) bagong notification</string> + <string name="mtrl_picker_a11y_next_month">Lumipat sa susunod na buwan</string> + <string name="mtrl_picker_a11y_prev_month">Lumipat sa nakaraang buwan</string> + <string name="mtrl_picker_announce_current_selection">Kasalukuyang seleksyon: %1$s</string> + <string name="mtrl_picker_cancel">Kanselahin</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Pumili ng Petsa</string> + <string name="mtrl_picker_date_header_unselected">Piniling petsa</string> + <string name="mtrl_picker_day_of_week_column_header">Column ng mga araw: %1$s</string> + <string name="mtrl_picker_invalid_format">Invalid na format.</string> + <string name="mtrl_picker_invalid_format_example">Halimbawa: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Gamitin: %1$s</string> + <string name="mtrl_picker_invalid_range">Invalid na hanay.</string> + <string name="mtrl_picker_navigate_to_year_description">Mag-navigate patungo sa taong %1$s</string> + <string name="mtrl_picker_out_of_range">Wala sa sakop: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Petsa ng pagsisimula – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Petsa ng pagtatapos</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Pumili ng Range</string> + <string name="mtrl_picker_range_header_unselected">Petsa ng pagsisimula – Petsa ng pagtatapos</string> + <string name="mtrl_picker_save">I-save</string> + <string name="mtrl_picker_text_input_date_hint">Petsa</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Petsa ng pagtatapos</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Petsa ng pagsisimula</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Lumipat sa pamamaraan ng pag-input ng kalendaryo</string> + <string name="mtrl_picker_toggle_to_day_selection">I-tap para lumipat sa pagpili ng araw</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Lumipat sa pamamaraan ng pag-input ng text</string> + <string name="mtrl_picker_toggle_to_year_selection">I-tap para lumipat sa pagpili ng taon</string> + <string name="mtrl_timepicker_cancel">Kanselahin</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Ipakita ang password</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tr/values-tr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5d61b975aaf6bb90b65b563bf3eafc318c8d395 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-tr/values-tr.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d yeni bildirim</item> + <item quantity="other">%d yeni bildirim</item> + </plurals> + <string name="bottomsheet_action_collapse">Alt sayfayı daralt</string> + <string name="bottomsheet_action_expand">Alt sayfayı geniÅŸlet</string> + <string name="bottomsheet_action_expand_halfway">Yarım geniÅŸlet</string> + <string name="bottomsheet_drag_handle_clicked">Sürükleme tutamacına iki kez dokunuldu</string> + <string name="bottomsheet_drag_handle_content_description">Sürükleme tutamacı</string> + <string name="character_counter_content_description">Girilen karakter: %1$d / %2$d</string> + <string name="character_counter_overflowed_content_description">Karakter sınırı aşıldı %1$d / %2$d</string> + <string name="clear_text_end_icon_content_description">Metni temizle</string> + <string name="error_icon_content_description">Hata</string> + <string name="exposed_dropdown_menu_content_description">Açılır menüyü göster</string> + <string name="icon_content_description">İletiÅŸim kutusu simgesi</string> + <string name="item_view_role_description">Sekme</string> + <string name="material_clock_toggle_content_description">ÖÖ veya ÖS\'yi seçin</string> + <string name="material_hour_24h_suffix">%1$s saat</string> + <string name="material_hour_selection">Saat seçin</string> + <string name="material_hour_suffix">Saat %1$s</string> + <string name="material_minute_selection">Dakikayı seçin</string> + <string name="material_minute_suffix">%1$s dakika</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Zaman giriÅŸi için saat moduna geçin.</string> + <string name="material_timepicker_hour">Saat</string> + <string name="material_timepicker_minute">Dakika</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Zamanı seçin</string> + <string name="material_timepicker_text_input_mode_description">Zaman giriÅŸi için metin giriÅŸi moduna geçin.</string> + <string name="mtrl_badge_numberless_content_description">Yeni bildirim</string> + <string name="mtrl_chip_close_icon_content_description">%1$s içeriÄŸini kaldır</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d adetten fazla yeni bildirim</string> + <string name="mtrl_picker_a11y_next_month">Sonraki aya deÄŸiÅŸtir</string> + <string name="mtrl_picker_a11y_prev_month">Önceki aya deÄŸiÅŸtir</string> + <string name="mtrl_picker_announce_current_selection">Geçerli seçim: %1$s</string> + <string name="mtrl_picker_cancel">İptal</string> + <string name="mtrl_picker_confirm">Tamam</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Tarih Seçin</string> + <string name="mtrl_picker_date_header_unselected">Seçilen tarih</string> + <string name="mtrl_picker_day_of_week_column_header">Gün sütunu: %1$s</string> + <string name="mtrl_picker_invalid_format">Geçersiz biçim.</string> + <string name="mtrl_picker_invalid_format_example">Örnek: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Tarih biçimi: %1$s</string> + <string name="mtrl_picker_invalid_range">Geçersiz aralık.</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s yılına git</string> + <string name="mtrl_picker_out_of_range">İzin verilen aralığın dışında: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">BaÅŸlangıç tarihi – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – BitiÅŸ tarihi</string> + <string name="mtrl_picker_range_header_selected">%1$s-%2$s</string> + <string name="mtrl_picker_range_header_title">Aralık Seçin</string> + <string name="mtrl_picker_range_header_unselected">BaÅŸlangıç tarihi - BitiÅŸ tarihi</string> + <string name="mtrl_picker_save">Kaydet</string> + <string name="mtrl_picker_text_input_date_hint">Tarih</string> + <string name="mtrl_picker_text_input_date_range_end_hint">BitiÅŸ tarihi</string> + <string name="mtrl_picker_text_input_date_range_start_hint">BaÅŸlangıç tarihi</string> + <string name="mtrl_picker_text_input_day_abbr">g</string> + <string name="mtrl_picker_text_input_month_abbr">a</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Takvim giriÅŸ moduna geç</string> + <string name="mtrl_picker_toggle_to_day_selection">Gün seçmeye geçmek için dokunun</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Metin giriÅŸ moduna geç</string> + <string name="mtrl_picker_toggle_to_year_selection">Yıl seçmeye geçmek için dokunun</string> + <string name="mtrl_timepicker_cancel">İptal</string> + <string name="mtrl_timepicker_confirm">Tamam</string> + <string name="password_toggle_content_description">Åžifreyi göster</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uk/values-uk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e6b5fbb701382c1f4c21ecbe1c90f5fc8aded6f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uk/values-uk.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d нове ÑповіщеннÑ</item> + <item quantity="few">%d нові ÑповіщеннÑ</item> + <item quantity="many">%d нових Ñповіщень</item> + <item quantity="other">%d нового ÑповіщеннÑ</item> + </plurals> + <string name="bottomsheet_action_collapse">Згорнути нижній екран</string> + <string name="bottomsheet_action_expand">Розгорнути нижній екран</string> + <string name="bottomsheet_action_expand_halfway">Розгорнути нижню половину</string> + <string name="bottomsheet_drag_handle_clicked">Маркер Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð°ÐºÑ‚Ð¸Ð²Ð¾Ð²Ð°Ð½Ð¾ подвійним дотиком</string> + <string name="bottomsheet_drag_handle_content_description">Маркер переміщеннÑ</string> + <string name="character_counter_content_description">Введено Ñимволів: %1$d з %2$d</string> + <string name="character_counter_overflowed_content_description">Перевищено ліміт Ñимволів: %1$d з %2$d</string> + <string name="clear_text_end_icon_content_description">Видалити текÑÑ‚</string> + <string name="error_icon_content_description">Помилка</string> + <string name="exposed_dropdown_menu_content_description">Показати Ñпадне меню</string> + <string name="icon_content_description">Значок вікна</string> + <string name="item_view_role_description">Вкладка</string> + <string name="material_clock_toggle_content_description">Виберіть ДП чи ПП</string> + <string name="material_hour_24h_suffix">%1$s год</string> + <string name="material_hour_selection">Вибрати годину</string> + <string name="material_hour_suffix">%1$s год</string> + <string name="material_minute_selection">Виберіть хвилини</string> + <string name="material_minute_suffix">%1$s хв</string> + <string name="material_timepicker_am">дп</string> + <string name="material_timepicker_clock_mode_description">Перейти в режим годинника, щоб ввеÑти чаÑ.</string> + <string name="material_timepicker_hour">Година</string> + <string name="material_timepicker_minute">Хвилина</string> + <string name="material_timepicker_pm">пп</string> + <string name="material_timepicker_select_time">Виберіть чаÑ</string> + <string name="material_timepicker_text_input_mode_description">Перейти в текÑтовий режим, щоб ввеÑти чаÑ.</string> + <string name="mtrl_badge_numberless_content_description">Ðове ÑповіщеннÑ</string> + <string name="mtrl_chip_close_icon_content_description">Видалити %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Ðових Ñповіщень більше ніж %1$d</string> + <string name="mtrl_picker_a11y_next_month">Перейти до наÑтупного міÑÑцÑ</string> + <string name="mtrl_picker_a11y_prev_month">Перейти до попереднього міÑÑцÑ</string> + <string name="mtrl_picker_announce_current_selection">Поточний вибір: %1$s</string> + <string name="mtrl_picker_cancel">СкаÑувати</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Виберіть дату</string> + <string name="mtrl_picker_date_header_unselected">Вибрана дата</string> + <string name="mtrl_picker_day_of_week_column_header">Стовпець із днÑми: %1$s</string> + <string name="mtrl_picker_invalid_format">ÐедійÑний формат.</string> + <string name="mtrl_picker_invalid_format_example">Приклад: %1$s</string> + <string name="mtrl_picker_invalid_format_use">ВикориÑтовувати: %1$s</string> + <string name="mtrl_picker_invalid_range">ÐедійÑний діапазон.</string> + <string name="mtrl_picker_navigate_to_year_description">Перейти до %1$s року</string> + <string name="mtrl_picker_out_of_range">За межами діапазону: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Дата початку – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – дата завершеннÑ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Виберіть діапазон дат</string> + <string name="mtrl_picker_range_header_unselected">Дата початку – дата завершеннÑ</string> + <string name="mtrl_picker_save">Зберегти</string> + <string name="mtrl_picker_text_input_date_hint">Дата</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Дата завершеннÑ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Дата початку</string> + <string name="mtrl_picker_text_input_day_abbr">д</string> + <string name="mtrl_picker_text_input_month_abbr">м</string> + <string name="mtrl_picker_text_input_year_abbr">Ñ€</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Перейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð² календарі</string> + <string name="mtrl_picker_toggle_to_day_selection">ÐатиÑніть, щоб вибрати день</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Перейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑту</string> + <string name="mtrl_picker_toggle_to_year_selection">ÐатиÑніть, щоб вибрати рік</string> + <string name="mtrl_timepicker_cancel">СкаÑувати</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Показувати пароль</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ur/values-ur.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..e32dcf5230ded86e6b302a67ca3cc236a2bdd764 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-ur/values-ur.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d نئی اطلاع</item> + <item quantity="other">%d نئی اطلاعات</item> + </plurals> + <string name="bottomsheet_action_collapse">نیچے Ú©ÛŒ شیٹ Ú©Ùˆ سکیڑیں</string> + <string name="bottomsheet_action_expand">نیچے Ú©ÛŒ شیٹ Ú©Ùˆ پھیلائیں</string> + <string name="bottomsheet_action_expand_halfway">نص٠تک پھیلائیں</string> + <string name="bottomsheet_drag_handle_clicked">گھسیٹنے Ú©Û’ Ûینڈل Ú©Ùˆ دو بار تھپتھپائیں</string> + <string name="bottomsheet_drag_handle_content_description">گھسیٹنے کا Ûینڈل</string> + <string name="character_counter_content_description">%2$d میں سے %1$d ØØ±ÙˆÙ درج کیے گئے</string> + <string name="character_counter_overflowed_content_description">ØØ±ÙˆÙ Ú©ÛŒ تعداد Ú©ÛŒ ØØ¯ %2$d سے %1$d Ù¾ÛÙ†Ú† گئی</string> + <string name="clear_text_end_icon_content_description">ٹیکسٹ صا٠کریں</string> + <string name="error_icon_content_description">خرابی</string> + <string name="exposed_dropdown_menu_content_description">ڈراپ ڈاؤن مینو دکھائیں</string> + <string name="icon_content_description">ڈائیلاگ کا آئیکن</string> + <string name="item_view_role_description">ٹیب</string> + <string name="material_clock_toggle_content_description">AM یا PM منتخب کریں</string> + <string name="material_hour_24h_suffix">%1$s گھنٹے</string> + <string name="material_hour_selection">Ú¯Ú¾Ù†Ù¹Û Ù…Ù†ØªØ®Ø¨ کریں</string> + <string name="material_hour_suffix">%1$s بجے</string> + <string name="material_minute_selection">منٹ منتخب کریں</string> + <string name="material_minute_suffix">%1$s منٹ</string> + <string name="material_timepicker_am">قبل از Ø¯ÙˆÙ¾ÛØ±</string> + <string name="material_timepicker_clock_mode_description">وقت ان پٹ Ú©Û’ لیے Ú¯Ú¾Ú‘ÛŒ Ùˆâ€Ø¶Ø¹ پر سوئچ کریں۔</string> + <string name="material_timepicker_hour">گھنٹÛ</string> + <string name="material_timepicker_minute">منٹ</string> + <string name="material_timepicker_pm">رات</string> + <string name="material_timepicker_select_time">وقت منتخب کریں</string> + <string name="material_timepicker_text_input_mode_description">وقت ان پٹ Ú©Û’ لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔</string> + <string name="mtrl_badge_numberless_content_description">نئی اطلاع</string> + <string name="mtrl_chip_close_icon_content_description">%1$s Ú©Ùˆ Ûٹائیں</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">%1$d سے Ø²ÛŒØ§Ø¯Û Ù†Ø¦ÛŒ اطلاعات</string> + <string name="mtrl_picker_a11y_next_month">اگلے Ù…ÛÛŒÙ†Û Ù…ÛŒÚº منتقل کریں</string> + <string name="mtrl_picker_a11y_prev_month">Ú¯Ø²Ø´ØªÛ Ù…Ø§Û Ù…ÛŒÚº منتقل کریں</string> + <string name="mtrl_picker_announce_current_selection">Ù…ÙˆØ¬ÙˆØ¯Û Ø§Ù†ØªØ®Ø§Ø¨: %1$s</string> + <string name="mtrl_picker_cancel">منسوخ کریں</string> + <string name="mtrl_picker_confirm">ٹھیک ÛÛ’</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">تاریخ منتخب کریں</string> + <string name="mtrl_picker_date_header_unselected">منتخب Ú©Ø±Ø¯Û ØªØ§Ø±ÛŒØ®</string> + <string name="mtrl_picker_day_of_week_column_header">دنوں کا کالم: %1$s</string> + <string name="mtrl_picker_invalid_format">غلط ÙØ§Ø±Ù…یٹ۔</string> + <string name="mtrl_picker_invalid_format_example">مثال: %1$sÛ”</string> + <string name="mtrl_picker_invalid_format_use">%1$s استعمال کریں</string> + <string name="mtrl_picker_invalid_range">غلط رینج۔</string> + <string name="mtrl_picker_navigate_to_year_description">%1$s سال پر نیویگیٹ کریں</string> + <string name="mtrl_picker_out_of_range">ØØ¯ سے Ø¨Ø§ÛØ±: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">تاریخ آغاز – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – تاریخ اختتام</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">رینج منتخب کریں</string> + <string name="mtrl_picker_range_header_unselected">تاریخ آغاز - تاریخ اختتام</string> + <string name="mtrl_picker_save">Ù…ØÙوظ کریں</string> + <string name="mtrl_picker_text_input_date_hint">تاریخ</string> + <string name="mtrl_picker_text_input_date_range_end_hint">تاریخ اختتام</string> + <string name="mtrl_picker_text_input_date_range_start_hint">تاریخ آغاز</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">کیلنڈر ان پٹ وضع پر سوئچ کریں</string> + <string name="mtrl_picker_toggle_to_day_selection">دن Ú©Ùˆ منتخب کرنے Ú©Û’ ليے سوئچ پر تھپتھپائیں</string> + <string name="mtrl_picker_toggle_to_text_input_mode">متنی ان پٹ وضع پر سوئچ کریں</string> + <string name="mtrl_picker_toggle_to_year_selection">سال Ú©Ùˆ منتخب کرنے Ú©Û’ ليے سوئچ پر تھپتھپائیں</string> + <string name="mtrl_timepicker_cancel">منسوخ کریں</string> + <string name="mtrl_timepicker_confirm">ٹھیک ÛÛ’</string> + <string name="password_toggle_content_description">پاس ورڈ دکھائیں</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uz/values-uz.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..9cd18ef1612ac007dbfc030e159b778eb3618fdc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-uz/values-uz.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d ta yangi bildirishnoma</item> + <item quantity="other">%d ta yangi bildirishnoma</item> + </plurals> + <string name="bottomsheet_action_collapse">Quyi ekranni yigÊ»ish</string> + <string name="bottomsheet_action_expand">Quyi ekranni kengaytirish</string> + <string name="bottomsheet_action_expand_halfway">Yarmiga kengaytirish</string> + <string name="bottomsheet_drag_handle_clicked">Surish dastagi ikki marta bosildi</string> + <string name="bottomsheet_drag_handle_content_description">Surish dastagi</string> + <string name="character_counter_content_description">%1$d/%2$d ta belgi kiritildi</string> + <string name="character_counter_overflowed_content_description">Harflar soni (%1$d) cheklovdan (%2$d) oshib ketdi</string> + <string name="clear_text_end_icon_content_description">Matnni tozalash</string> + <string name="error_icon_content_description">Xato</string> + <string name="exposed_dropdown_menu_content_description">Pastga ochiluvchi menyuni ochish</string> + <string name="icon_content_description">Muloqot ikonkasi</string> + <string name="item_view_role_description">Tab : Varaq</string> + <string name="material_clock_toggle_content_description">Tushdan oldin yoki keyinligini tanlang</string> + <string name="material_hour_24h_suffix">%1$s soat</string> + <string name="material_hour_selection">Soatni tanlang</string> + <string name="material_hour_suffix">%1$s soat</string> + <string name="material_minute_selection">Daqiqalarni tanlash</string> + <string name="material_minute_suffix">%1$s daqiqa</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Vaqtni kiritish uchun soat rejimiga o‘ting.</string> + <string name="material_timepicker_hour">Soat</string> + <string name="material_timepicker_minute">Daqiqa</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Vaqtni tanlang</string> + <string name="material_timepicker_text_input_mode_description">Vaqtni kiritish uchun matn kiritish rejimiga o‘ting.</string> + <string name="mtrl_badge_numberless_content_description">Yangi bildirishnoma</string> + <string name="mtrl_chip_close_icon_content_description">Olib tashlash: %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Yana %1$d dan ortiq bildirishnoma</string> + <string name="mtrl_picker_a11y_next_month">Keyingi oyga oÊ»zgartirish</string> + <string name="mtrl_picker_a11y_prev_month">Avvalgi oyga oÊ»zgartirish</string> + <string name="mtrl_picker_announce_current_selection">Joriy tanlov: %1$s</string> + <string name="mtrl_picker_cancel">Bekor qilish</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Sanani tanlang</string> + <string name="mtrl_picker_date_header_unselected">Tanlangan sana</string> + <string name="mtrl_picker_day_of_week_column_header">Kunlar ustuni: %1$s</string> + <string name="mtrl_picker_invalid_format">Yaroqsiz format.</string> + <string name="mtrl_picker_invalid_format_example">Masalan: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Ishlatish: %1$s</string> + <string name="mtrl_picker_invalid_range">Yaroqsiz oraliq.</string> + <string name="mtrl_picker_navigate_to_year_description">Yilga nazar solish: %1$s</string> + <string name="mtrl_picker_out_of_range">Chegaradan tashqari: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Boshlanish sanasi – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Tugash sanasi</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Oraliqni tanlang</string> + <string name="mtrl_picker_range_header_unselected">Boshlanishi – Tugashi</string> + <string name="mtrl_picker_save">Saqlash</string> + <string name="mtrl_picker_text_input_date_hint">Sana</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Tugash sanasi</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Boshlanish sanasi</string> + <string name="mtrl_picker_text_input_day_abbr">k</string> + <string name="mtrl_picker_text_input_month_abbr">o</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Taqvim kiritish rejimiga oÊ»tish</string> + <string name="mtrl_picker_toggle_to_day_selection">Kunni tanlash uchun bosing</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Matn kiritish rejimiga oÊ»tish</string> + <string name="mtrl_picker_toggle_to_year_selection">Yilni tanlash uchun bosing</string> + <string name="mtrl_timepicker_cancel">Bekor qilish</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Parol ochiq tursin</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v21/values-v21.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v21/values-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f3764ae3aac918dc713884b7b5b802151229909 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v21/values-v21.xml @@ -0,0 +1,290 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item format="float" name="m3_sys_state_dragged_state_layer_opacity" type="dimen">0.32</item> + <item format="float" name="m3_sys_state_focus_state_layer_opacity" type="dimen">0.24</item> + <item format="float" name="m3_sys_state_hover_state_layer_opacity" type="dimen">0.16</item> + <item format="float" name="m3_sys_state_pressed_state_layer_opacity" type="dimen">0.24</item> + <dimen name="mtrl_calendar_pre_l_text_clip_padding">0dp</dimen> + <dimen name="mtrl_exposed_dropdown_menu_popup_vertical_offset">1dp</dimen> + <item format="float" name="mtrl_high_ripple_default_alpha" type="dimen">0.48</item> + <item format="float" name="mtrl_high_ripple_focused_alpha" type="dimen">0.48</item> + <item format="float" name="mtrl_high_ripple_hovered_alpha" type="dimen">0.16</item> + <item format="float" name="mtrl_high_ripple_pressed_alpha" type="dimen">0.48</item> + <item format="float" name="mtrl_low_ripple_default_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_low_ripple_focused_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_low_ripple_hovered_alpha" type="dimen">0.08</item> + <item format="float" name="mtrl_low_ripple_pressed_alpha" type="dimen">0.24</item> + <string name="m3_ref_typeface_brand_medium" translatable="false">sans-serif-medium</string> + <string name="m3_ref_typeface_brand_regular" translatable="false">sans-serif</string> + <string name="m3_ref_typeface_plain_medium" translatable="false">sans-serif-medium</string> + <string name="m3_ref_typeface_plain_regular" translatable="false">sans-serif</string> + <style name="Base.Theme.MaterialComponents" parent="Base.V21.Theme.MaterialComponents"/> + <style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V21.Theme.MaterialComponents.Dialog"/> + <style name="Base.Theme.MaterialComponents.Light" parent="Base.V21.Theme.MaterialComponents.Light"/> + <style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V21.Theme.MaterialComponents.Light.Dialog"/> + <style name="Base.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.V21.ThemeOverlay.Material3.BottomSheetDialog"/> + <style name="Base.ThemeOverlay.Material3.SideSheetDialog" parent="Base.V21.ThemeOverlay.Material3.SideSheetDialog"/> + <style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"> + <item name="android:windowBackground">@drawable/mtrl_dialog_background</item> + </style> + <style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework" parent="@android:style/Theme.Material.Dialog.Alert"> + <item name="android:buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + </style> + <style name="Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework" parent="@android:style/Theme.Material.Light.Dialog.Alert"> + <item name="android:buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + </style> + <style name="Base.V21.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"> + <item name="android:alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework</item> + </style> + <style name="Base.V21.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"> + <item name="android:alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework</item> + </style> + <style name="Base.V21.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"> + <item name="android:alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework</item> + </style> + <style name="Base.V21.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"> + <item name="android:alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework</item> + </style> + <style name="Base.V21.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.V14.ThemeOverlay.Material3.BottomSheetDialog"> + <item name="android:statusBarColor">@android:color/transparent</item> + </style> + <style name="Base.V21.ThemeOverlay.Material3.SideSheetDialog" parent="Base.V14.ThemeOverlay.Material3.SideSheetDialog"> + <item name="android:statusBarColor">@android:color/transparent</item> + </style> + <style name="Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog"> + <item name="android:statusBarColor">@android:color/transparent</item> + </style> + <style name="Base.Widget.MaterialComponents.AutoCompleteTextView" parent="Base.V14.Widget.MaterialComponents.AutoCompleteTextView"> + <item name="android:popupBackground">@null</item> + </style> + <style name="Base.Widget.MaterialComponents.CheckedTextView" parent="android:Widget.Material.CheckedTextView"/> + <style name="Base.Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Widget.AppCompat.PopupMenu"> + <item name="android:overlapAnchor">true</item> + </style> + <style name="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"> + <item name="android:popupBackground">?attr/popupMenuBackground</item> + <item name="android:popupElevation">8dp</item> + <item name="android:dropDownVerticalOffset">1dp</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar" parent="android:Widget.DeviceDefault.DatePicker"> + <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + <item name="android:datePickerMode">calendar</item> + <item name="android:calendarTextColor">?attr/colorOnSurface</item> + <item name="android:headerBackground">?attr/colorPrimary</item> + <item name="android:headerMonthTextAppearance">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text</item> + <item name="android:headerDayOfMonthTextAppearance">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day</item> + <item name="android:headerYearTextAppearance">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner" parent="android:Widget.DeviceDefault.DatePicker"> + <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + <item name="android:datePickerMode">spinner</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodyLarge" parent="TextAppearance.AppCompat.Body2"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.03125</item> + <item name="lineHeight">24sp</item> + <item name="android:lineHeight">24sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodyMedium" parent="TextAppearance.AppCompat.Body1"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.01785714</item> + <item name="lineHeight">20sp</item> + <item name="android:lineHeight">20sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodySmall" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">12sp</item> + <item name="android:letterSpacing">0.03333333</item> + <item name="lineHeight">16sp</item> + <item name="android:lineHeight">16sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplayLarge" parent="TextAppearance.AppCompat.Display3"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">57sp</item> + <item name="android:letterSpacing">-0.00438596</item> + <item name="lineHeight">64sp</item> + <item name="android:lineHeight">64sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplayMedium" parent="TextAppearance.AppCompat.Display2"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">45sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">52sp</item> + <item name="android:lineHeight">52sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplaySmall" parent="TextAppearance.AppCompat.Display1"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">36sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">44sp</item> + <item name="android:lineHeight">44sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineLarge" parent="TextAppearance.AppCompat.Display1"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">32sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">40sp</item> + <item name="android:lineHeight">40sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineMedium" parent="TextAppearance.AppCompat.Headline"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">28sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">36sp</item> + <item name="android:lineHeight">36sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineSmall" parent="TextAppearance.AppCompat.Title"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">24sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">32sp</item> + <item name="android:lineHeight">32sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelLarge" parent="TextAppearance.AppCompat.Body1"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.00714286</item> + <item name="lineHeight">20sp</item> + <item name="android:lineHeight">20sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelMedium" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:textSize">12sp</item> + <item name="android:letterSpacing">0.04166667</item> + <item name="lineHeight">16sp</item> + <item name="android:lineHeight">16sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelSmall" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:textSize">11sp</item> + <item name="android:letterSpacing">0.04545455</item> + <item name="lineHeight">16sp</item> + <item name="android:lineHeight">16sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleLarge" parent="TextAppearance.AppCompat.Title"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">22sp</item> + <item name="android:letterSpacing">0</item> + <item name="lineHeight">28sp</item> + <item name="android:lineHeight">28sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleMedium" parent="TextAppearance.AppCompat.Subhead"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.009375</item> + <item name="lineHeight">24sp</item> + <item name="android:lineHeight">24sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleSmall" parent="TextAppearance.AppCompat.Subhead"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.00714286</item> + <item name="lineHeight">20sp</item> + <item name="android:lineHeight">20sp</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.MaterialComponents.Badge" parent="Base.TextAppearance.MaterialComponents.Badge"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">normal</item> + </style> + <style name="TextAppearance.MaterialComponents.Button" parent="Base.TextAppearance.MaterialComponents.Button"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">normal</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline6" parent="Base.TextAppearance.MaterialComponents.Headline6"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">normal</item> + </style> + <style name="TextAppearance.MaterialComponents.Subtitle2" parent="Base.TextAppearance.MaterialComponents.Subtitle2"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">normal</item> + </style> + <style name="ThemeOverlay.Material3.Dialog.Alert.Framework" parent="ThemeOverlay.MaterialComponents.Dialog.Alert.Framework"> + <item name="android:windowElevation">@dimen/m3_alert_dialog_elevation</item> + <item name="android:buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item> + </style> + <style name="ThemeOverlay.Material3.Light.Dialog.Alert.Framework" parent="ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework"> + <item name="android:windowElevation">@dimen/m3_alert_dialog_elevation</item> + <item name="android:buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item> + </style> + <style name="ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog"/> + <style name="ThemeOverlay.MaterialComponents.Dialog.Alert.Framework" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework"/> + <style name="ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework" parent="Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework"/> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"> + <item name="android:buttonBarPositiveButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + <item name="android:buttonBarNegativeButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar"> + <item name="android:datePickerStyle">@style/MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text" parent="TextAppearance.MaterialComponents.Headline6"> + <item name="android:textColor">?attr/colorOnPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day" parent="TextAppearance.MaterialComponents.Headline1"> + <item name="android:textColor">?attr/colorOnPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner"> + <item name="android:datePickerStyle">@style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner</item> + </style> + <style name="Widget.Material3.BottomNavigationView" parent="Base.Widget.Material3.BottomNavigationView"/> + <style name="Widget.Material3.TabLayout" parent="Base.Widget.Material3.TabLayout"> + <item name="android:background">@drawable/m3_tabs_background</item> + </style> + <style name="Widget.Material3.TabLayout.Secondary" parent="Base.Widget.Material3.TabLayout.Secondary"> + <item name="android:background">@drawable/m3_tabs_background</item> + </style> + <style name="Widget.MaterialComponents.PopupMenu" parent="Base.Widget.MaterialComponents.PopupMenu"> + <item name="android:popupBackground">?attr/popupMenuBackground</item> + <item name="android:popupElevation">8dp</item> + </style> + <style name="Widget.MaterialComponents.PopupMenu.Overflow" parent="Base.Widget.MaterialComponents.PopupMenu.Overflow"> + <item name="android:popupBackground">?attr/popupMenuBackground</item> + <item name="android:popupElevation">8dp</item> + </style> + <style name="Widget.MaterialComponents.Slider" parent="Base.Widget.MaterialComponents.Slider"> + <item name="android:background">?attr/controlBackground</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v23/values-v23.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v23/values-v23.xml new file mode 100644 index 0000000000000000000000000000000000000000..13e486bf90259e7bfb9d096d1f805be09f39954a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v23/values-v23.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="ThemeOverlay.Material3.AutoCompleteTextView" parent="Base.ThemeOverlay.Material3.AutoCompleteTextView"> + <item name="colorControlNormal">@color/m3_textfield_indicator_text_color</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText" parent="Base.ThemeOverlay.Material3.TextInputEditText"> + <item name="colorControlNormal">@color/m3_textfield_indicator_text_color</item> + </style> + <style name="Widget.Material3.ActionBar.Solid" parent="Base.Widget.Material3.ActionBar.Solid"> + <item name="background">@drawable/m3_appbar_background</item> + <item name="backgroundStacked">@drawable/m3_appbar_background</item> + <item name="backgroundSplit">@drawable/m3_appbar_background</item> + </style> + <style name="Widget.Material3.ActionMode" parent="Base.Widget.Material3.ActionMode"> + <item name="background">@drawable/m3_appbar_background</item> + <item name="backgroundSplit">@drawable/m3_appbar_background</item> + </style> + <style name="Widget.Material3.CompoundButton.CheckBox" parent="Base.Widget.Material3.CompoundButton.CheckBox"> + <item name="android:background">@drawable/m3_selection_control_ripple</item> + </style> + <style name="Widget.Material3.CompoundButton.RadioButton" parent="Base.Widget.Material3.CompoundButton.RadioButton"> + <item name="android:background">@drawable/m3_radiobutton_ripple</item> + </style> + <style name="Widget.Material3.CompoundButton.Switch" parent="Base.Widget.Material3.CompoundButton.Switch"> + <item name="android:background">@drawable/m3_selection_control_ripple</item> + </style> + <style name="Widget.Material3.Light.ActionBar.Solid" parent="Base.Widget.Material3.Light.ActionBar.Solid"> + <item name="background">@drawable/m3_appbar_background</item> + <item name="backgroundStacked">@drawable/m3_appbar_background</item> + <item name="backgroundSplit">@drawable/m3_appbar_background</item> + </style> + <style name="Widget.Material3.TabLayout.OnSurface" parent="Base.Widget.Material3.TabLayout.OnSurface"> + <item name="android:background">@drawable/m3_tabs_transparent_background</item> + </style> + <style name="Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Base.Widget.MaterialComponents.PopupMenu.ContextMenu"> + <item name="android:popupBackground">?attr/popupMenuBackground</item> + <item name="android:popupElevation">8dp</item> + </style> + <style name="Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow"> + <item name="android:popupBackground">?attr/popupMenuBackground</item> + <item name="android:popupElevation">8dp</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v24/values-v24.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v24/values-v24.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2a064b9477b6c94324602b5dd45d35f014005ff --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v24/values-v24.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Base.Theme.Material3.Dark" parent="Base.V24.Theme.Material3.Dark"/> + <style name="Base.Theme.Material3.Dark.Dialog" parent="Base.V24.Theme.Material3.Dark.Dialog"/> + <style name="Base.Theme.Material3.Light" parent="Base.V24.Theme.Material3.Light"/> + <style name="Base.Theme.Material3.Light.Dialog" parent="Base.V24.Theme.Material3.Light.Dialog"/> + <style name="Base.V24.Theme.Material3.Dark" parent="Base.V14.Theme.Material3.Dark"> + <item name="android:contextPopupMenuStyle">@style/Widget.Material3.PopupMenu.ContextMenu</item> + </style> + <style name="Base.V24.Theme.Material3.Dark.Dialog" parent="Base.V14.Theme.Material3.Dark.Dialog"> + <item name="android:contextPopupMenuStyle">@style/Widget.Material3.PopupMenu.ContextMenu</item> + </style> + <style name="Base.V24.Theme.Material3.Light" parent="Base.V14.Theme.Material3.Light"> + <item name="android:contextPopupMenuStyle">@style/Widget.Material3.PopupMenu.ContextMenu</item> + </style> + <style name="Base.V24.Theme.Material3.Light.Dialog" parent="Base.V14.Theme.Material3.Light.Dialog"> + <item name="android:contextPopupMenuStyle">@style/Widget.Material3.PopupMenu.ContextMenu</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v28/values-v28.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v28/values-v28.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9c4797cc9d277c00338190f462a81ceefb1468c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v28/values-v28.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item format="float" name="m3_sys_state_dragged_state_layer_opacity" type="dimen">0.16</item> + <item format="float" name="m3_sys_state_focus_state_layer_opacity" type="dimen">0.2</item> + <item format="float" name="m3_sys_state_hover_state_layer_opacity" type="dimen">0.4</item> + <item format="float" name="m3_sys_state_pressed_state_layer_opacity" type="dimen">0.12</item> + <item format="float" name="mtrl_high_ripple_default_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_high_ripple_focused_alpha" type="dimen">0.40</item> + <item format="float" name="mtrl_high_ripple_hovered_alpha" type="dimen">0.40</item> + <item format="float" name="mtrl_high_ripple_pressed_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_low_ripple_default_alpha" type="dimen">0.12</item> + <item format="float" name="mtrl_low_ripple_focused_alpha" type="dimen">0.20</item> + <item format="float" name="mtrl_low_ripple_hovered_alpha" type="dimen">0.20</item> + <item format="float" name="mtrl_low_ripple_pressed_alpha" type="dimen">0.12</item> + <style name="Widget.Material3.BottomNavigationView" parent="Base.Widget.Material3.BottomNavigationView"> + <item name="android:outlineAmbientShadowColor">@android:color/transparent</item> + <item name="android:outlineSpotShadowColor">@android:color/transparent</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v31/values-v31.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v31/values-v31.xml new file mode 100644 index 0000000000000000000000000000000000000000..760a728e54b4943f9887134555d5b045625bc7f2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-v31/values-v31.xml @@ -0,0 +1,467 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="m3_ref_palette_dynamic_neutral0">@android:color/system_neutral1_1000</color> + <color name="m3_ref_palette_dynamic_neutral10">@android:color/system_neutral1_900</color> + <color name="m3_ref_palette_dynamic_neutral100">@android:color/system_neutral1_0</color> + <color name="m3_ref_palette_dynamic_neutral20">@android:color/system_neutral1_800</color> + <color name="m3_ref_palette_dynamic_neutral30">@android:color/system_neutral1_700</color> + <color name="m3_ref_palette_dynamic_neutral40">@android:color/system_neutral1_600</color> + <color name="m3_ref_palette_dynamic_neutral50">@android:color/system_neutral1_500</color> + <color name="m3_ref_palette_dynamic_neutral60">@android:color/system_neutral1_400</color> + <color name="m3_ref_palette_dynamic_neutral70">@android:color/system_neutral1_300</color> + <color name="m3_ref_palette_dynamic_neutral80">@android:color/system_neutral1_200</color> + <color name="m3_ref_palette_dynamic_neutral90">@android:color/system_neutral1_100</color> + <color name="m3_ref_palette_dynamic_neutral95">@android:color/system_neutral1_50</color> + <color name="m3_ref_palette_dynamic_neutral99">@android:color/system_neutral1_10</color> + <color name="m3_ref_palette_dynamic_neutral_variant0">@android:color/system_neutral2_1000</color> + <color name="m3_ref_palette_dynamic_neutral_variant10">@android:color/system_neutral2_900</color> + <color name="m3_ref_palette_dynamic_neutral_variant100">@android:color/system_neutral2_0</color> + <color name="m3_ref_palette_dynamic_neutral_variant20">@android:color/system_neutral2_800</color> + <color name="m3_ref_palette_dynamic_neutral_variant30">@android:color/system_neutral2_700</color> + <color name="m3_ref_palette_dynamic_neutral_variant40">@android:color/system_neutral2_600</color> + <color name="m3_ref_palette_dynamic_neutral_variant50">@android:color/system_neutral2_500</color> + <color name="m3_ref_palette_dynamic_neutral_variant60">@android:color/system_neutral2_400</color> + <color name="m3_ref_palette_dynamic_neutral_variant70">@android:color/system_neutral2_300</color> + <color name="m3_ref_palette_dynamic_neutral_variant80">@android:color/system_neutral2_200</color> + <color name="m3_ref_palette_dynamic_neutral_variant90">@android:color/system_neutral2_100</color> + <color name="m3_ref_palette_dynamic_neutral_variant95">@android:color/system_neutral2_50</color> + <color name="m3_ref_palette_dynamic_neutral_variant99">@android:color/system_neutral2_10</color> + <color name="m3_ref_palette_dynamic_primary0">@android:color/system_accent1_1000</color> + <color name="m3_ref_palette_dynamic_primary10">@android:color/system_accent1_900</color> + <color name="m3_ref_palette_dynamic_primary100">@android:color/system_accent1_0</color> + <color name="m3_ref_palette_dynamic_primary20">@android:color/system_accent1_800</color> + <color name="m3_ref_palette_dynamic_primary30">@android:color/system_accent1_700</color> + <color name="m3_ref_palette_dynamic_primary40">@android:color/system_accent1_600</color> + <color name="m3_ref_palette_dynamic_primary50">@android:color/system_accent1_500</color> + <color name="m3_ref_palette_dynamic_primary60">@android:color/system_accent1_400</color> + <color name="m3_ref_palette_dynamic_primary70">@android:color/system_accent1_300</color> + <color name="m3_ref_palette_dynamic_primary80">@android:color/system_accent1_200</color> + <color name="m3_ref_palette_dynamic_primary90">@android:color/system_accent1_100</color> + <color name="m3_ref_palette_dynamic_primary95">@android:color/system_accent1_50</color> + <color name="m3_ref_palette_dynamic_primary99">@android:color/system_accent1_10</color> + <color name="m3_ref_palette_dynamic_secondary0">@android:color/system_accent2_1000</color> + <color name="m3_ref_palette_dynamic_secondary10">@android:color/system_accent2_900</color> + <color name="m3_ref_palette_dynamic_secondary100">@android:color/system_accent2_0</color> + <color name="m3_ref_palette_dynamic_secondary20">@android:color/system_accent2_800</color> + <color name="m3_ref_palette_dynamic_secondary30">@android:color/system_accent2_700</color> + <color name="m3_ref_palette_dynamic_secondary40">@android:color/system_accent2_600</color> + <color name="m3_ref_palette_dynamic_secondary50">@android:color/system_accent2_500</color> + <color name="m3_ref_palette_dynamic_secondary60">@android:color/system_accent2_400</color> + <color name="m3_ref_palette_dynamic_secondary70">@android:color/system_accent2_300</color> + <color name="m3_ref_palette_dynamic_secondary80">@android:color/system_accent2_200</color> + <color name="m3_ref_palette_dynamic_secondary90">@android:color/system_accent2_100</color> + <color name="m3_ref_palette_dynamic_secondary95">@android:color/system_accent2_50</color> + <color name="m3_ref_palette_dynamic_secondary99">@android:color/system_accent2_10</color> + <color name="m3_ref_palette_dynamic_tertiary0">@android:color/system_accent3_1000</color> + <color name="m3_ref_palette_dynamic_tertiary10">@android:color/system_accent3_900</color> + <color name="m3_ref_palette_dynamic_tertiary100">@android:color/system_accent3_0</color> + <color name="m3_ref_palette_dynamic_tertiary20">@android:color/system_accent3_800</color> + <color name="m3_ref_palette_dynamic_tertiary30">@android:color/system_accent3_700</color> + <color name="m3_ref_palette_dynamic_tertiary40">@android:color/system_accent3_600</color> + <color name="m3_ref_palette_dynamic_tertiary50">@android:color/system_accent3_500</color> + <color name="m3_ref_palette_dynamic_tertiary60">@android:color/system_accent3_400</color> + <color name="m3_ref_palette_dynamic_tertiary70">@android:color/system_accent3_300</color> + <color name="m3_ref_palette_dynamic_tertiary80">@android:color/system_accent3_200</color> + <color name="m3_ref_palette_dynamic_tertiary90">@android:color/system_accent3_100</color> + <color name="m3_ref_palette_dynamic_tertiary95">@android:color/system_accent3_50</color> + <color name="m3_ref_palette_dynamic_tertiary99">@android:color/system_accent3_10</color> + <color name="m3_sys_color_dynamic_dark_background">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="m3_sys_color_dynamic_dark_inverse_on_surface">@color/m3_ref_palette_dynamic_neutral20</color> + <color name="m3_sys_color_dynamic_dark_inverse_primary">@color/m3_ref_palette_dynamic_primary40</color> + <color name="m3_sys_color_dynamic_dark_inverse_surface">@color/m3_ref_palette_dynamic_neutral90</color> + <color name="m3_sys_color_dynamic_dark_on_background">@color/m3_ref_palette_dynamic_neutral90</color> + <color name="m3_sys_color_dynamic_dark_on_primary">@color/m3_ref_palette_dynamic_primary20</color> + <color name="m3_sys_color_dynamic_dark_on_primary_container">@color/m3_ref_palette_dynamic_primary90</color> + <color name="m3_sys_color_dynamic_dark_on_secondary">@color/m3_ref_palette_dynamic_secondary20</color> + <color name="m3_sys_color_dynamic_dark_on_secondary_container">@color/m3_ref_palette_dynamic_secondary90</color> + <color name="m3_sys_color_dynamic_dark_on_surface">@color/m3_ref_palette_dynamic_neutral90</color> + <color name="m3_sys_color_dynamic_dark_on_surface_variant">@color/m3_ref_palette_dynamic_neutral_variant80</color> + <color name="m3_sys_color_dynamic_dark_on_tertiary">@color/m3_ref_palette_dynamic_tertiary20</color> + <color name="m3_sys_color_dynamic_dark_on_tertiary_container">@color/m3_ref_palette_dynamic_tertiary90</color> + <color name="m3_sys_color_dynamic_dark_outline">@color/m3_ref_palette_dynamic_neutral_variant60</color> + <color name="m3_sys_color_dynamic_dark_outline_variant">@color/m3_ref_palette_dynamic_neutral_variant30</color> + <color name="m3_sys_color_dynamic_dark_primary">@color/m3_ref_palette_dynamic_primary80</color> + <color name="m3_sys_color_dynamic_dark_primary_container">@color/m3_ref_palette_dynamic_primary30</color> + <color name="m3_sys_color_dynamic_dark_secondary">@color/m3_ref_palette_dynamic_secondary80</color> + <color name="m3_sys_color_dynamic_dark_secondary_container">@color/m3_ref_palette_dynamic_secondary30</color> + <color name="m3_sys_color_dynamic_dark_surface">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="m3_sys_color_dynamic_dark_surface_bright">@color/m3_ref_palette_dynamic_neutral24</color> + <color name="m3_sys_color_dynamic_dark_surface_container">@color/m3_ref_palette_dynamic_neutral12</color> + <color name="m3_sys_color_dynamic_dark_surface_container_high">@color/m3_ref_palette_dynamic_neutral17</color> + <color name="m3_sys_color_dynamic_dark_surface_container_highest">@color/m3_ref_palette_dynamic_neutral22</color> + <color name="m3_sys_color_dynamic_dark_surface_container_low">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="m3_sys_color_dynamic_dark_surface_container_lowest">@color/m3_ref_palette_dynamic_neutral4</color> + <color name="m3_sys_color_dynamic_dark_surface_dim">@color/m3_ref_palette_dynamic_neutral6</color> + <color name="m3_sys_color_dynamic_dark_surface_variant">@color/m3_ref_palette_dynamic_neutral_variant30</color> + <color name="m3_sys_color_dynamic_dark_tertiary">@color/m3_ref_palette_dynamic_tertiary80</color> + <color name="m3_sys_color_dynamic_dark_tertiary_container">@color/m3_ref_palette_dynamic_tertiary30</color> + <color name="m3_sys_color_dynamic_light_background">@color/m3_ref_palette_dynamic_neutral99</color> + <color name="m3_sys_color_dynamic_light_inverse_on_surface">@color/m3_ref_palette_dynamic_neutral95</color> + <color name="m3_sys_color_dynamic_light_inverse_primary">@color/m3_ref_palette_dynamic_primary80</color> + <color name="m3_sys_color_dynamic_light_inverse_surface">@color/m3_ref_palette_dynamic_neutral20</color> + <color name="m3_sys_color_dynamic_light_on_background">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="m3_sys_color_dynamic_light_on_primary">@color/m3_ref_palette_dynamic_primary100</color> + <color name="m3_sys_color_dynamic_light_on_primary_container">@color/m3_ref_palette_dynamic_primary10</color> + <color name="m3_sys_color_dynamic_light_on_secondary">@color/m3_ref_palette_dynamic_secondary100</color> + <color name="m3_sys_color_dynamic_light_on_secondary_container">@color/m3_ref_palette_dynamic_secondary10</color> + <color name="m3_sys_color_dynamic_light_on_surface">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="m3_sys_color_dynamic_light_on_surface_variant">@color/m3_ref_palette_dynamic_neutral_variant30</color> + <color name="m3_sys_color_dynamic_light_on_tertiary">@color/m3_ref_palette_dynamic_tertiary100</color> + <color name="m3_sys_color_dynamic_light_on_tertiary_container">@color/m3_ref_palette_dynamic_tertiary10</color> + <color name="m3_sys_color_dynamic_light_outline">@color/m3_ref_palette_dynamic_neutral_variant50</color> + <color name="m3_sys_color_dynamic_light_outline_variant">@color/m3_ref_palette_dynamic_neutral_variant80</color> + <color name="m3_sys_color_dynamic_light_primary">@color/m3_ref_palette_dynamic_primary40</color> + <color name="m3_sys_color_dynamic_light_primary_container">@color/m3_ref_palette_dynamic_primary90</color> + <color name="m3_sys_color_dynamic_light_secondary">@color/m3_ref_palette_dynamic_secondary40</color> + <color name="m3_sys_color_dynamic_light_secondary_container">@color/m3_ref_palette_dynamic_secondary90</color> + <color name="m3_sys_color_dynamic_light_surface">@color/m3_ref_palette_dynamic_neutral99</color> + <color name="m3_sys_color_dynamic_light_surface_bright">@color/m3_ref_palette_dynamic_neutral98</color> + <color name="m3_sys_color_dynamic_light_surface_container">@color/m3_ref_palette_dynamic_neutral94</color> + <color name="m3_sys_color_dynamic_light_surface_container_high">@color/m3_ref_palette_dynamic_neutral92</color> + <color name="m3_sys_color_dynamic_light_surface_container_highest">@color/m3_ref_palette_dynamic_neutral90</color> + <color name="m3_sys_color_dynamic_light_surface_container_low">@color/m3_ref_palette_dynamic_neutral96</color> + <color name="m3_sys_color_dynamic_light_surface_container_lowest">@color/m3_ref_palette_dynamic_neutral100</color> + <color name="m3_sys_color_dynamic_light_surface_dim">@color/m3_ref_palette_dynamic_neutral87</color> + <color name="m3_sys_color_dynamic_light_surface_variant">@color/m3_ref_palette_dynamic_neutral_variant90</color> + <color name="m3_sys_color_dynamic_light_tertiary">@color/m3_ref_palette_dynamic_tertiary40</color> + <color name="m3_sys_color_dynamic_light_tertiary_container">@color/m3_ref_palette_dynamic_tertiary90</color> + <color name="m3_sys_color_dynamic_on_primary_fixed">@color/m3_ref_palette_dynamic_primary10</color> + <color name="m3_sys_color_dynamic_on_primary_fixed_variant">@color/m3_ref_palette_dynamic_primary30</color> + <color name="m3_sys_color_dynamic_on_secondary_fixed">@color/m3_ref_palette_dynamic_secondary10</color> + <color name="m3_sys_color_dynamic_on_secondary_fixed_variant">@color/m3_ref_palette_dynamic_secondary30</color> + <color name="m3_sys_color_dynamic_on_tertiary_fixed">@color/m3_ref_palette_dynamic_tertiary10</color> + <color name="m3_sys_color_dynamic_on_tertiary_fixed_variant">@color/m3_ref_palette_dynamic_tertiary30</color> + <color name="m3_sys_color_dynamic_primary_fixed">@color/m3_ref_palette_dynamic_primary90</color> + <color name="m3_sys_color_dynamic_primary_fixed_dim">@color/m3_ref_palette_dynamic_primary80</color> + <color name="m3_sys_color_dynamic_secondary_fixed">@color/m3_ref_palette_dynamic_secondary90</color> + <color name="m3_sys_color_dynamic_secondary_fixed_dim">@color/m3_ref_palette_dynamic_secondary80</color> + <color name="m3_sys_color_dynamic_tertiary_fixed">@color/m3_ref_palette_dynamic_tertiary90</color> + <color name="m3_sys_color_dynamic_tertiary_fixed_dim">@color/m3_ref_palette_dynamic_tertiary80</color> + <color name="material_dynamic_neutral0">@color/m3_ref_palette_dynamic_neutral0</color> + <color name="material_dynamic_neutral10">@color/m3_ref_palette_dynamic_neutral10</color> + <color name="material_dynamic_neutral100">@color/m3_ref_palette_dynamic_neutral100</color> + <color name="material_dynamic_neutral20">@color/m3_ref_palette_dynamic_neutral20</color> + <color name="material_dynamic_neutral30">@color/m3_ref_palette_dynamic_neutral30</color> + <color name="material_dynamic_neutral40">@color/m3_ref_palette_dynamic_neutral40</color> + <color name="material_dynamic_neutral50">@color/m3_ref_palette_dynamic_neutral50</color> + <color name="material_dynamic_neutral60">@color/m3_ref_palette_dynamic_neutral60</color> + <color name="material_dynamic_neutral70">@color/m3_ref_palette_dynamic_neutral70</color> + <color name="material_dynamic_neutral80">@color/m3_ref_palette_dynamic_neutral80</color> + <color name="material_dynamic_neutral90">@color/m3_ref_palette_dynamic_neutral90</color> + <color name="material_dynamic_neutral95">@color/m3_ref_palette_dynamic_neutral95</color> + <color name="material_dynamic_neutral99">@color/m3_ref_palette_dynamic_neutral99</color> + <color name="material_dynamic_neutral_variant0">@color/m3_ref_palette_dynamic_neutral_variant0</color> + <color name="material_dynamic_neutral_variant10">@color/m3_ref_palette_dynamic_neutral_variant10</color> + <color name="material_dynamic_neutral_variant100">@color/m3_ref_palette_dynamic_neutral_variant100</color> + <color name="material_dynamic_neutral_variant20">@color/m3_ref_palette_dynamic_neutral_variant20</color> + <color name="material_dynamic_neutral_variant30">@color/m3_ref_palette_dynamic_neutral_variant30</color> + <color name="material_dynamic_neutral_variant40">@color/m3_ref_palette_dynamic_neutral_variant40</color> + <color name="material_dynamic_neutral_variant50">@color/m3_ref_palette_dynamic_neutral_variant50</color> + <color name="material_dynamic_neutral_variant60">@color/m3_ref_palette_dynamic_neutral_variant60</color> + <color name="material_dynamic_neutral_variant70">@color/m3_ref_palette_dynamic_neutral_variant70</color> + <color name="material_dynamic_neutral_variant80">@color/m3_ref_palette_dynamic_neutral_variant80</color> + <color name="material_dynamic_neutral_variant90">@color/m3_ref_palette_dynamic_neutral_variant90</color> + <color name="material_dynamic_neutral_variant95">@color/m3_ref_palette_dynamic_neutral_variant95</color> + <color name="material_dynamic_neutral_variant99">@color/m3_ref_palette_dynamic_neutral_variant99</color> + <color name="material_dynamic_primary0">@color/m3_ref_palette_dynamic_primary0</color> + <color name="material_dynamic_primary10">@color/m3_ref_palette_dynamic_primary10</color> + <color name="material_dynamic_primary100">@color/m3_ref_palette_dynamic_primary100</color> + <color name="material_dynamic_primary20">@color/m3_ref_palette_dynamic_primary20</color> + <color name="material_dynamic_primary30">@color/m3_ref_palette_dynamic_primary30</color> + <color name="material_dynamic_primary40">@color/m3_ref_palette_dynamic_primary40</color> + <color name="material_dynamic_primary50">@color/m3_ref_palette_dynamic_primary50</color> + <color name="material_dynamic_primary60">@color/m3_ref_palette_dynamic_primary60</color> + <color name="material_dynamic_primary70">@color/m3_ref_palette_dynamic_primary70</color> + <color name="material_dynamic_primary80">@color/m3_ref_palette_dynamic_primary80</color> + <color name="material_dynamic_primary90">@color/m3_ref_palette_dynamic_primary90</color> + <color name="material_dynamic_primary95">@color/m3_ref_palette_dynamic_primary95</color> + <color name="material_dynamic_primary99">@color/m3_ref_palette_dynamic_primary99</color> + <color name="material_dynamic_secondary0">@color/m3_ref_palette_dynamic_secondary0</color> + <color name="material_dynamic_secondary10">@color/m3_ref_palette_dynamic_secondary10</color> + <color name="material_dynamic_secondary100">@color/m3_ref_palette_dynamic_secondary100</color> + <color name="material_dynamic_secondary20">@color/m3_ref_palette_dynamic_secondary20</color> + <color name="material_dynamic_secondary30">@color/m3_ref_palette_dynamic_secondary30</color> + <color name="material_dynamic_secondary40">@color/m3_ref_palette_dynamic_secondary40</color> + <color name="material_dynamic_secondary50">@color/m3_ref_palette_dynamic_secondary50</color> + <color name="material_dynamic_secondary60">@color/m3_ref_palette_dynamic_secondary60</color> + <color name="material_dynamic_secondary70">@color/m3_ref_palette_dynamic_secondary70</color> + <color name="material_dynamic_secondary80">@color/m3_ref_palette_dynamic_secondary80</color> + <color name="material_dynamic_secondary90">@color/m3_ref_palette_dynamic_secondary90</color> + <color name="material_dynamic_secondary95">@color/m3_ref_palette_dynamic_secondary95</color> + <color name="material_dynamic_secondary99">@color/m3_ref_palette_dynamic_secondary99</color> + <color name="material_dynamic_tertiary0">@color/m3_ref_palette_dynamic_tertiary0</color> + <color name="material_dynamic_tertiary10">@color/m3_ref_palette_dynamic_tertiary10</color> + <color name="material_dynamic_tertiary100">@color/m3_ref_palette_dynamic_tertiary100</color> + <color name="material_dynamic_tertiary20">@color/m3_ref_palette_dynamic_tertiary20</color> + <color name="material_dynamic_tertiary30">@color/m3_ref_palette_dynamic_tertiary30</color> + <color name="material_dynamic_tertiary40">@color/m3_ref_palette_dynamic_tertiary40</color> + <color name="material_dynamic_tertiary50">@color/m3_ref_palette_dynamic_tertiary50</color> + <color name="material_dynamic_tertiary60">@color/m3_ref_palette_dynamic_tertiary60</color> + <color name="material_dynamic_tertiary70">@color/m3_ref_palette_dynamic_tertiary70</color> + <color name="material_dynamic_tertiary80">@color/m3_ref_palette_dynamic_tertiary80</color> + <color name="material_dynamic_tertiary90">@color/m3_ref_palette_dynamic_tertiary90</color> + <color name="material_dynamic_tertiary95">@color/m3_ref_palette_dynamic_tertiary95</color> + <color name="material_dynamic_tertiary99">@color/m3_ref_palette_dynamic_tertiary99</color> + <style name="Theme.Material3.DynamicColors.Dark" parent="Theme.Material3.Dark"> + <item name="isMaterial3DynamicColorApplied">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dynamic_dark_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dynamic_dark_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dynamic_dark_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dynamic_dark_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dynamic_dark_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_dynamic_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_dynamic_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_dynamic_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_dynamic_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dynamic_dark_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dynamic_dark_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dynamic_dark_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dynamic_dark_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_dynamic_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_dynamic_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_dynamic_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_dynamic_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dynamic_dark_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dynamic_dark_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dynamic_dark_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dynamic_dark_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_dynamic_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_dynamic_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_dynamic_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_dynamic_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dynamic_dark_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dynamic_dark_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dynamic_dark_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dynamic_dark_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dynamic_dark_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dynamic_dark_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dynamic_dark_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dynamic_dark_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dynamic_dark_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dynamic_dark_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dynamic_dark_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dynamic_dark_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dynamic_dark_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dynamic_dark_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dynamic_dark_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dynamic_dark_outline</item> + <item name="colorError">@color/m3_sys_color_dark_error</item> + <item name="colorOnError">@color/m3_sys_color_dark_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dynamic_dark_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dynamic_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dynamic_dark_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dynamic_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dynamic_dark_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dynamic_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dynamic_dark_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dynamic_highlighted_text</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dynamic_dark_default_color_primary_text</item> + </style> + <style name="Theme.Material3.DynamicColors.Light" parent="Theme.Material3.Light"> + <item name="isMaterial3DynamicColorApplied">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dynamic_light_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dynamic_light_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dynamic_light_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dynamic_light_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dynamic_light_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_dynamic_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_dynamic_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_dynamic_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_dynamic_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dynamic_light_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dynamic_light_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dynamic_light_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dynamic_light_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_dynamic_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_dynamic_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_dynamic_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_dynamic_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dynamic_light_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dynamic_light_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dynamic_light_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dynamic_light_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_dynamic_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_dynamic_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_dynamic_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_dynamic_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dynamic_light_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dynamic_light_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dynamic_light_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dynamic_light_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dynamic_light_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dynamic_light_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dynamic_light_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dynamic_light_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dynamic_light_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dynamic_light_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dynamic_light_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dynamic_light_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dynamic_light_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dynamic_light_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dynamic_light_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dynamic_light_outline</item> + <item name="colorError">@color/m3_sys_color_light_error</item> + <item name="colorOnError">@color/m3_sys_color_light_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dynamic_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dynamic_dark_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dynamic_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dynamic_dark_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dynamic_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dynamic_dark_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dynamic_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dynamic_dark_highlighted_text</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dynamic_default_color_primary_text</item> + </style> + <style name="ThemeOverlay.Material3.DynamicColors.Dark" parent=""> + <item name="isMaterial3DynamicColorApplied">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dynamic_dark_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dynamic_dark_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dynamic_dark_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dynamic_dark_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dynamic_dark_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_dynamic_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_dynamic_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_dynamic_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_dynamic_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dynamic_dark_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dynamic_dark_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dynamic_dark_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dynamic_dark_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_dynamic_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_dynamic_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_dynamic_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_dynamic_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dynamic_dark_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dynamic_dark_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dynamic_dark_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dynamic_dark_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_dynamic_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_dynamic_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_dynamic_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_dynamic_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dynamic_dark_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dynamic_dark_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dynamic_dark_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dynamic_dark_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dynamic_dark_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dynamic_dark_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dynamic_dark_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dynamic_dark_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dynamic_dark_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dynamic_dark_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dynamic_dark_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dynamic_dark_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dynamic_dark_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dynamic_dark_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dynamic_dark_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dynamic_dark_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_dynamic_dark_outline_variant</item> + <item name="colorError">@color/m3_sys_color_dark_error</item> + <item name="colorOnError">@color/m3_sys_color_dark_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dynamic_dark_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dynamic_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dynamic_dark_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dynamic_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dynamic_dark_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dynamic_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dynamic_dark_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dynamic_highlighted_text</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dynamic_dark_default_color_primary_text</item> + </style> + <style name="ThemeOverlay.Material3.DynamicColors.Light" parent=""> + <item name="isMaterial3DynamicColorApplied">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dynamic_light_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dynamic_light_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dynamic_light_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dynamic_light_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dynamic_light_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_dynamic_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_dynamic_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_dynamic_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_dynamic_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dynamic_light_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dynamic_light_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dynamic_light_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dynamic_light_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_dynamic_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_dynamic_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_dynamic_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_dynamic_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dynamic_light_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dynamic_light_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dynamic_light_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dynamic_light_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_dynamic_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_dynamic_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_dynamic_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_dynamic_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dynamic_light_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dynamic_light_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dynamic_light_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dynamic_light_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dynamic_light_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dynamic_light_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dynamic_light_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dynamic_light_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dynamic_light_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dynamic_light_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dynamic_light_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dynamic_light_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dynamic_light_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dynamic_light_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dynamic_light_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dynamic_light_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_dynamic_light_outline_variant</item> + <item name="colorError">@color/m3_sys_color_light_error</item> + <item name="colorOnError">@color/m3_sys_color_light_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dynamic_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dynamic_dark_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dynamic_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dynamic_dark_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dynamic_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dynamic_dark_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dynamic_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dynamic_dark_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dynamic_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dynamic_dark_highlighted_text</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dynamic_default_color_primary_text</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-vi/values-vi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..6035958241c775798c1d1795feb277928eabe542 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-vi/values-vi.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d thông báo má»›i</item> + <item quantity="other">%d thông báo má»›i</item> + </plurals> + <string name="bottomsheet_action_collapse">Thu gá»n bảng dưới cùng</string> + <string name="bottomsheet_action_expand">Mở rá»™ng bảng dưới cùng</string> + <string name="bottomsheet_action_expand_halfway">Mở rá»™ng má»™t ná»a</string> + <string name="bottomsheet_drag_handle_clicked">Äã nhấn đúp nút kéo</string> + <string name="bottomsheet_drag_handle_content_description">Nút kéo</string> + <string name="character_counter_content_description">Äã nháºp %1$d trong số %2$d ký tá»±</string> + <string name="character_counter_overflowed_content_description">Äã vượt quá giá»›i hạn ký tá»± %1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Xóa văn bản</string> + <string name="error_icon_content_description">Lá»—i</string> + <string name="exposed_dropdown_menu_content_description">Hiển thị menu thả xuống</string> + <string name="icon_content_description">Biểu tượng há»™p thoại</string> + <string name="item_view_role_description">Thẻ</string> + <string name="material_clock_toggle_content_description">Chá»n SA hoặc CH</string> + <string name="material_hour_24h_suffix">%1$s giá»</string> + <string name="material_hour_selection">Chá»n giá»</string> + <string name="material_hour_suffix">%1$s giá»</string> + <string name="material_minute_selection">Chá»n phút</string> + <string name="material_minute_suffix">%1$s phút</string> + <string name="material_timepicker_am">SA</string> + <string name="material_timepicker_clock_mode_description">Chuyển sang chế độ đồng hồ để nháºp thá»i gian.</string> + <string name="material_timepicker_hour">Giá»</string> + <string name="material_timepicker_minute">Phút</string> + <string name="material_timepicker_pm">CH</string> + <string name="material_timepicker_select_time">Chá»n thá»i gian</string> + <string name="material_timepicker_text_input_mode_description">Chuyển sang chế độ nháºp văn bản để nháºp thá»i gian.</string> + <string name="mtrl_badge_numberless_content_description">Thông báo má»›i</string> + <string name="mtrl_chip_close_icon_content_description">Xóa %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">HÆ¡n %1$d thông báo má»›i</string> + <string name="mtrl_picker_a11y_next_month">Chuyển sang tháng tiếp theo</string> + <string name="mtrl_picker_a11y_prev_month">Chuyển vá» tháng trước</string> + <string name="mtrl_picker_announce_current_selection">Lá»±a chá»n hiện tại: %1$s</string> + <string name="mtrl_picker_cancel">Há»§y</string> + <string name="mtrl_picker_confirm">OK</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Chá»n ngà y</string> + <string name="mtrl_picker_date_header_unselected">Ngà y đã chá»n</string> + <string name="mtrl_picker_day_of_week_column_header">Cá»™t ngà y: %1$s</string> + <string name="mtrl_picker_invalid_format">Äịnh dạng không hợp lệ.</string> + <string name="mtrl_picker_invalid_format_example">Và dụ: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Sá» dụng: %1$s</string> + <string name="mtrl_picker_invalid_range">Phạm vi không hợp lệ.</string> + <string name="mtrl_picker_navigate_to_year_description">Chuyển tá»›i năm %1$s</string> + <string name="mtrl_picker_out_of_range">Nằm ngoà i phạm vi: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Ngà y bắt đầu – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Ngà y kết thúc</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Chá»n dải ô</string> + <string name="mtrl_picker_range_header_unselected">Ngà y bắt đầu – Ngà y kết thúc</string> + <string name="mtrl_picker_save">Lưu</string> + <string name="mtrl_picker_text_input_date_hint">Ngà y</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Ngà y kết thúc</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Ngà y bắt đầu</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Chuyển sang chế độ nháºp lịch</string> + <string name="mtrl_picker_toggle_to_day_selection">Nhấn để chuyển sang chế độ chá»n má»™t ngà y</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Chuyển sang chế độ nháºp văn bản</string> + <string name="mtrl_picker_toggle_to_year_selection">Nhấn để chuyển sang chế độ chá»n má»™t năm</string> + <string name="mtrl_timepicker_cancel">Huá»·</string> + <string name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Hiện máºt khẩu</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w320dp-land-v13/values-w320dp-land-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w320dp-land-v13/values-w320dp-land-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..b4fed6b9e5cb70ebe81b7f8a13f09403f847fa31 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w320dp-land-v13/values-w320dp-land-v13.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="clock_face_margin_start">24dp</dimen> + <dimen name="material_clock_face_margin_top">36dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w360dp-port-v13/values-w360dp-port-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w360dp-port-v13/values-w360dp-port-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..fa14e49b75631648474dfde2d58b377018777a2a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w360dp-port-v13/values-w360dp-port-v13.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="mtrl_calendar_bottom_padding">4dp</dimen> + <dimen name="mtrl_calendar_day_corner">18dp</dimen> + <dimen name="mtrl_calendar_day_height">40dp</dimen> + <dimen name="mtrl_calendar_day_horizontal_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_vertical_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_width">40dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">40dp</dimen> + <dimen name="mtrl_calendar_month_horizontal_padding">4dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w480dp-port-v13/values-w480dp-port-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w480dp-port-v13/values-w480dp-port-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..e8cf2fee88addd955500285db3de0e1ed9883c1f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w480dp-port-v13/values-w480dp-port-v13.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="mtrl_calendar_bottom_padding">0dp</dimen> + <dimen name="mtrl_calendar_day_corner">22dp</dimen> + <dimen name="mtrl_calendar_day_height">48dp</dimen> + <dimen name="mtrl_calendar_day_horizontal_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_vertical_padding">2dp</dimen> + <dimen name="mtrl_calendar_day_width">48dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">48dp</dimen> + <dimen name="mtrl_calendar_month_horizontal_padding">0dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w600dp-land-v13/values-w600dp-land-v13.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w600dp-land-v13/values-w600dp-land-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..aaaf955918c339a3affe18855c79ec768c90d497 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-w600dp-land-v13/values-w600dp-land-v13.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="clock_face_margin_start">64dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rCN/values-zh-rCN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..938a634065c62ab60049e1e880385a364b1a3bdb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d æ¡æ–°é€šçŸ¥</item> + <item quantity="other">%d æ¡æ–°é€šçŸ¥</item> + </plurals> + <string name="bottomsheet_action_collapse">收起底部动作æ¡</string> + <string name="bottomsheet_action_expand">展开底部动作æ¡</string> + <string name="bottomsheet_action_expand_halfway">展开到一åŠé«˜åº¦</string> + <string name="bottomsheet_drag_handle_clicked">拖动手柄被点按两次</string> + <string name="bottomsheet_drag_handle_content_description">拖动手柄</string> + <string name="character_counter_content_description">输入了 %1$d 个å—符(上é™ä¸º %2$d 个)</string> + <string name="character_counter_overflowed_content_description">超出å—符数é™åˆ¶ï¼ˆå…± %1$d 个,上é™ä¸º %2$d 个)</string> + <string name="clear_text_end_icon_content_description">清除文å—</string> + <string name="error_icon_content_description">错误</string> + <string name="exposed_dropdown_menu_content_description">显示下拉èœå•</string> + <string name="icon_content_description">å¯¹è¯æ¡†å›¾æ ‡</string> + <string name="item_view_role_description">æ ‡ç¾é¡µ</string> + <string name="material_clock_toggle_content_description">é€‰æ‹©ä¸Šåˆæˆ–下åˆ</string> + <string name="material_hour_24h_suffix">%1$s å°æ—¶</string> + <string name="material_hour_selection">é€‰æ‹©å°æ—¶</string> + <string name="material_hour_suffix">%1$s 点</string> + <string name="material_minute_selection">选择分钟</string> + <string name="material_minute_suffix">%1$s 分</string> + <string name="material_timepicker_am">上åˆ</string> + <string name="material_timepicker_clock_mode_description">切æ¢åˆ°æ—¶é’Ÿæ¨¡å¼æ¥è¾“入时间。</string> + <string name="material_timepicker_hour">å°æ—¶</string> + <string name="material_timepicker_minute">分钟</string> + <string name="material_timepicker_pm">下åˆ</string> + <string name="material_timepicker_select_time">选择时间</string> + <string name="material_timepicker_text_input_mode_description">切æ¢åˆ°æ–‡å—è¾“å…¥æ¨¡å¼æ¥è¾“入时间。</string> + <string name="mtrl_badge_numberless_content_description">新通知</string> + <string name="mtrl_chip_close_icon_content_description">移除%1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">有 %1$d æ¡ä»¥ä¸Šçš„æ–°é€šçŸ¥</string> + <string name="mtrl_picker_a11y_next_month">转到下个月</string> + <string name="mtrl_picker_a11y_prev_month">转到上个月</string> + <string name="mtrl_picker_announce_current_selection">当å‰çš„选择是:%1$s</string> + <string name="mtrl_picker_cancel">å–æ¶ˆ</string> + <string name="mtrl_picker_confirm">确定</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">请选择日期</string> + <string name="mtrl_picker_date_header_unselected">选定的日期</string> + <string name="mtrl_picker_day_of_week_column_header">è¡¨ç¤ºå‘¨å‡ çš„åˆ—ï¼š%1$s</string> + <string name="mtrl_picker_invalid_format">æ ¼å¼æ— 效。</string> + <string name="mtrl_picker_invalid_format_example">示例:%1$s</string> + <string name="mtrl_picker_invalid_format_use">使用:%1$s</string> + <string name="mtrl_picker_invalid_range">èŒƒå›´æ— æ•ˆã€‚</string> + <string name="mtrl_picker_navigate_to_year_description">转到 %1$s å¹´</string> + <string name="mtrl_picker_out_of_range">ä¸åœ¨å…许的范围内:%1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">开始日期 – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – ç»“æŸæ—¥æœŸ</string> + <string name="mtrl_picker_range_header_selected">%1$s - %2$s</string> + <string name="mtrl_picker_range_header_title">请选择范围</string> + <string name="mtrl_picker_range_header_unselected">开始日期 - ç»“æŸæ—¥æœŸ</string> + <string name="mtrl_picker_save">ä¿å˜</string> + <string name="mtrl_picker_text_input_date_hint">日期</string> + <string name="mtrl_picker_text_input_date_range_end_hint">ç»“æŸæ—¥æœŸ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">开始日期</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">切æ¢åˆ°æ—¥åŽ†è¾“å…¥æ¨¡å¼</string> + <string name="mtrl_picker_toggle_to_day_selection">点按å³å¯åˆ‡æ¢åˆ°é€‰æ‹©æŸå¤©</string> + <string name="mtrl_picker_toggle_to_text_input_mode">切æ¢åˆ°æ–‡æœ¬å—段输入模å¼</string> + <string name="mtrl_picker_toggle_to_year_selection">点按å³å¯åˆ‡æ¢åˆ°é€‰æ‹©æŸå¹´</string> + <string name="mtrl_timepicker_cancel">å–æ¶ˆ</string> + <string name="mtrl_timepicker_confirm">确定</string> + <string name="password_toggle_content_description">显示密ç </string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rHK/values-zh-rHK.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..a595169a695a57bf24ba9c2e6c0a3a243471b665 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d 個新通知</item> + <item quantity="other">%d 個新通知</item> + </plurals> + <string name="bottomsheet_action_collapse">æ”¶åˆé åº•é¢æ¿</string> + <string name="bottomsheet_action_expand">展開é åº•é¢æ¿</string> + <string name="bottomsheet_action_expand_halfway">展開一åŠ</string> + <string name="bottomsheet_drag_handle_clicked">㩒咗兩下拖曳控點</string> + <string name="bottomsheet_drag_handle_content_description">拖曳控點</string> + <string name="character_counter_content_description">已輸入 %1$d 個å—å…ƒ (å…± %2$d 個)</string> + <string name="character_counter_overflowed_content_description">超出å—å…ƒé™åˆ¶ %1$d 個å—å…ƒ (ä¸Šé™ %2$d 個å—å…ƒ)</string> + <string name="clear_text_end_icon_content_description">清除文å—</string> + <string name="error_icon_content_description">錯誤</string> + <string name="exposed_dropdown_menu_content_description">顯示下拉å¼é¸å–®</string> + <string name="icon_content_description">å°è©±æ¡†åœ–示</string> + <string name="item_view_role_description">分é </string> + <string name="material_clock_toggle_content_description">鏿“‡ä¸Šåˆæˆ–下åˆ</string> + <string name="material_hour_24h_suffix">%1$s 個é˜</string> + <string name="material_hour_selection">é¸å–時段</string> + <string name="material_hour_suffix">%1$s 點</string> + <string name="material_minute_selection">é¸å–分é˜</string> + <string name="material_minute_suffix">%1$s 分</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">切æ›è‡³æ™‚é˜æ¨¡å¼å³å¯è¼¸å…¥æ™‚間。</string> + <string name="material_timepicker_hour">å°æ™‚</string> + <string name="material_timepicker_minute">分é˜</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">é¸å–時間</string> + <string name="material_timepicker_text_input_mode_description">切æ›è‡³æ–‡å—輸入模å¼å³å¯è¼¸å…¥æ™‚間。</string> + <string name="mtrl_badge_numberless_content_description">新通知</string> + <string name="mtrl_chip_close_icon_content_description">移除「%1$sã€</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">è¶…éŽ %1$d 則新通知</string> + <string name="mtrl_picker_a11y_next_month">變更為下個月</string> + <string name="mtrl_picker_a11y_prev_month">變更為上個月</string> + <string name="mtrl_picker_announce_current_selection">ç›®å‰é¸å–:%1$s</string> + <string name="mtrl_picker_cancel">å–æ¶ˆ</string> + <string name="mtrl_picker_confirm">確定</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">è«‹é¸æ“‡æ—¥æœŸ</string> + <string name="mtrl_picker_date_header_unselected">å·²é¸å–日期</string> + <string name="mtrl_picker_day_of_week_column_header">日期欄:%1$s</string> + <string name="mtrl_picker_invalid_format">æ ¼å¼ç„¡æ•ˆã€‚</string> + <string name="mtrl_picker_invalid_format_example">例如:%1$s</string> + <string name="mtrl_picker_invalid_format_use">使用:%1$s</string> + <string name="mtrl_picker_invalid_range">範åœç„¡æ•ˆã€‚</string> + <string name="mtrl_picker_navigate_to_year_description">ç€è¦½è‡³ %1$s å¹´</string> + <string name="mtrl_picker_out_of_range">超出範åœï¼š%1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">開始日期 – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">è«‹é¸æ“‡ç¯„åœ</string> + <string name="mtrl_picker_range_header_unselected">開始日期 – çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_save">儲å˜</string> + <string name="mtrl_picker_text_input_date_hint">日期</string> + <string name="mtrl_picker_text_input_date_range_end_hint">çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">開始日期</string> + <string name="mtrl_picker_text_input_day_abbr">æ—¥</string> + <string name="mtrl_picker_text_input_month_abbr">月</string> + <string name="mtrl_picker_text_input_year_abbr">å¹´</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼</string> + <string name="mtrl_picker_toggle_to_day_selection">輕按以切æ›è‡³é¸æ“‡æ—¥æœŸ</string> + <string name="mtrl_picker_toggle_to_text_input_mode">切æ›è‡³æ–‡å—輸入模å¼</string> + <string name="mtrl_picker_toggle_to_year_selection">輕按以切æ›è‡³é¸æ“‡å¹´ä»½</string> + <string name="mtrl_timepicker_cancel">å–æ¶ˆ</string> + <string name="mtrl_timepicker_confirm">確定</string> + <string name="password_toggle_content_description">顯示密碼</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rTW/values-zh-rTW.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..38e41f9e974c5a33622712d8a2a8540cd2faa117 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d 則新通知</item> + <item quantity="other">%d 則新通知</item> + </plurals> + <string name="bottomsheet_action_collapse">æ”¶åˆåº•部功能表</string> + <string name="bottomsheet_action_expand">展開底部功能表</string> + <string name="bottomsheet_action_expand_halfway">展開一åŠ</string> + <string name="bottomsheet_drag_handle_clicked">已輕觸兩下拖曳控點</string> + <string name="bottomsheet_drag_handle_content_description">拖曳控點</string> + <string name="character_counter_content_description">已輸入 %1$d 個å—å…ƒ (上é™ç‚º %2$d 個å—å…ƒ)</string> + <string name="character_counter_overflowed_content_description">è¶…éŽå—å…ƒé™åˆ¶ (å…± %1$d å—å…ƒï¼Œä¸Šé™ %2$d å—å…ƒ)</string> + <string name="clear_text_end_icon_content_description">清除文å—</string> + <string name="error_icon_content_description">錯誤</string> + <string name="exposed_dropdown_menu_content_description">顯示下拉å¼é¸å–®</string> + <string name="icon_content_description">å°è©±æ–¹å¡Šåœ–示</string> + <string name="item_view_role_description">åˆ†é æ¨™ç±¤</string> + <string name="material_clock_toggle_content_description">é¸å–ä¸Šåˆæˆ–下åˆ</string> + <string name="material_hour_24h_suffix">%1$s å°æ™‚</string> + <string name="material_hour_selection">è«‹é¸å–時段</string> + <string name="material_hour_suffix">%1$s 點</string> + <string name="material_minute_selection">é¸å–åˆ†é˜æ•¸</string> + <string name="material_minute_suffix">%1$s 分</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">切æ›è‡³æ™‚é˜æ¨¡å¼ä¾†è¼¸å…¥æ™‚間。</string> + <string name="material_timepicker_hour">å°æ™‚</string> + <string name="material_timepicker_minute">分é˜</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">é¸å–時間</string> + <string name="material_timepicker_text_input_mode_description">切æ›è‡³æ–‡å—輸入模å¼ä¾†è¼¸å…¥æ™‚間。</string> + <string name="mtrl_badge_numberless_content_description">新通知</string> + <string name="mtrl_chip_close_icon_content_description">移除 %1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">è¶…éŽ %1$d 則新通知</string> + <string name="mtrl_picker_a11y_next_month">變更至下個月</string> + <string name="mtrl_picker_a11y_prev_month">變更至上個月</string> + <string name="mtrl_picker_announce_current_selection">ç›®å‰é¸å–:%1$s</string> + <string name="mtrl_picker_cancel">å–æ¶ˆ</string> + <string name="mtrl_picker_confirm">確定</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">é¸å–日期</string> + <string name="mtrl_picker_date_header_unselected">æ‰€é¸æ—¥æœŸ</string> + <string name="mtrl_picker_day_of_week_column_header">星期幾資料欄:%1$s</string> + <string name="mtrl_picker_invalid_format">æ ¼å¼ç„¡æ•ˆã€‚</string> + <string name="mtrl_picker_invalid_format_example">範例:%1$s</string> + <string name="mtrl_picker_invalid_format_use">使用:%1$s</string> + <string name="mtrl_picker_invalid_range">日期範åœç„¡æ•ˆã€‚</string> + <string name="mtrl_picker_navigate_to_year_description">å‰å¾€ %1$s å¹´</string> + <string name="mtrl_picker_out_of_range">超出日期範åœï¼š%1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">開始日期 – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">é¸å–範åœ</string> + <string name="mtrl_picker_range_header_unselected">開始日期 - çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_save">儲å˜</string> + <string name="mtrl_picker_text_input_date_hint">日期</string> + <string name="mtrl_picker_text_input_date_range_end_hint">çµæŸæ—¥æœŸ</string> + <string name="mtrl_picker_text_input_date_range_start_hint">開始日期</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼</string> + <string name="mtrl_picker_toggle_to_day_selection">輕觸å³å¯åˆ‡æ›ç‚ºé¸å–星期幾</string> + <string name="mtrl_picker_toggle_to_text_input_mode">切æ›è‡³æ–‡å—輸入模å¼</string> + <string name="mtrl_picker_toggle_to_year_selection">輕觸å³å¯åˆ‡æ›ç‚ºé¸å–年份</string> + <string name="mtrl_timepicker_cancel">å–æ¶ˆ</string> + <string name="mtrl_timepicker_confirm">確定</string> + <string name="password_toggle_content_description">顯示密碼</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zu/values-zu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..3058661917766fe9125abe76d8861154edbee140 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values-zu/values-zu.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools"> + <plurals name="mtrl_badge_content_description"> + <item quantity="one">%d izaziso ezintsha</item> + <item quantity="other">%d izaziso ezintsha</item> + </plurals> + <string name="bottomsheet_action_collapse">Goqa ishidi eliphansi</string> + <string name="bottomsheet_action_expand">Nweba ishidi eliphansi</string> + <string name="bottomsheet_action_expand_halfway">Nweba phakathi</string> + <string name="bottomsheet_drag_handle_clicked">Hudula isibambi esithephwe kabili</string> + <string name="bottomsheet_drag_handle_content_description">Hudula isibambi</string> + <string name="character_counter_content_description">Izinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$d</string> + <string name="character_counter_overflowed_content_description">Umkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$d</string> + <string name="clear_text_end_icon_content_description">Sula umbhalo</string> + <string name="error_icon_content_description">Iphutha</string> + <string name="exposed_dropdown_menu_content_description">Bonisa imenyu yokudonsela phansi</string> + <string name="icon_content_description">Isithonjana sebhokisi</string> + <string name="item_view_role_description">Ithebhu</string> + <string name="material_clock_toggle_content_description">Khetha u-AM noma u-PM</string> + <string name="material_hour_24h_suffix">amahora angu-%1$s</string> + <string name="material_hour_selection">Khetha ihora</string> + <string name="material_hour_suffix">%1$s ezimpondweni</string> + <string name="material_minute_selection">Khetha amaminithi</string> + <string name="material_minute_suffix">amaminithi angu-%1$s</string> + <string name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Shintshela kumodi yewashi ngokufakwa kwesikhathi.</string> + <string name="material_timepicker_hour">Ihora</string> + <string name="material_timepicker_minute">Iminithi</string> + <string name="material_timepicker_pm">PM</string> + <string name="material_timepicker_select_time">Khetha isikhathi</string> + <string name="material_timepicker_text_input_mode_description">Shintshela kumodi yokufaka umbhalo ngokufaka isikhathi.</string> + <string name="mtrl_badge_numberless_content_description">Isaziso esisha</string> + <string name="mtrl_chip_close_icon_content_description">Susa i-%1$s</string> + <string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Izaziso ezintsha ezingaphezu kokungu-%1$d</string> + <string name="mtrl_picker_a11y_next_month">Shintshela kunyanga elandelayo</string> + <string name="mtrl_picker_a11y_prev_month">Shintshela kunyanga edlule</string> + <string name="mtrl_picker_announce_current_selection">Ukukhetha kwamanje: %1$s</string> + <string name="mtrl_picker_cancel">Khansela</string> + <string name="mtrl_picker_confirm">KULUNGILE</string> + <string name="mtrl_picker_date_header_selected">%1$s</string> + <string name="mtrl_picker_date_header_title">Khetha Idethi</string> + <string name="mtrl_picker_date_header_unselected">Khetha idethi</string> + <string name="mtrl_picker_day_of_week_column_header">Ikholomu yezinsuku: %1$s</string> + <string name="mtrl_picker_invalid_format">Ifomethi engavumelekile.</string> + <string name="mtrl_picker_invalid_format_example">Isibonelo: %1$s</string> + <string name="mtrl_picker_invalid_format_use">Sebenzisa: %1$s</string> + <string name="mtrl_picker_invalid_range">Ibanga elingavumelekile.</string> + <string name="mtrl_picker_navigate_to_year_description">Zulela onyakeni %1$s</string> + <string name="mtrl_picker_out_of_range">Ikude kubanga: %1$s</string> + <string name="mtrl_picker_range_header_only_end_selected">Idethi yokuqala – %1$s</string> + <string name="mtrl_picker_range_header_only_start_selected">%1$s – Idethi yokuphela</string> + <string name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string name="mtrl_picker_range_header_title">Khetha Ibanga</string> + <string name="mtrl_picker_range_header_unselected">Idethi yokuqala – Idethi yokuphela</string> + <string name="mtrl_picker_save">Londoloza</string> + <string name="mtrl_picker_text_input_date_hint">Idethi</string> + <string name="mtrl_picker_text_input_date_range_end_hint">Idethi yokuphela</string> + <string name="mtrl_picker_text_input_date_range_start_hint">Idethi yokuqala</string> + <string name="mtrl_picker_text_input_day_abbr">d</string> + <string name="mtrl_picker_text_input_month_abbr">m</string> + <string name="mtrl_picker_text_input_year_abbr">y</string> + <string name="mtrl_picker_toggle_to_calendar_input_mode">Shintshela kwimodi yokufaka yekhalenda</string> + <string name="mtrl_picker_toggle_to_day_selection">Thepha ukuze ushintshe ekukhetheni usuku</string> + <string name="mtrl_picker_toggle_to_text_input_mode">Shintshela kwimodi yokufaka yombhalo</string> + <string name="mtrl_picker_toggle_to_year_selection">Thepha ukuze ushintshele ekukhetheni unyaka</string> + <string name="mtrl_timepicker_cancel">Khansela</string> + <string name="mtrl_timepicker_confirm">KULUNGILE</string> + <string name="password_toggle_content_description">Bonisa iphasiwedi</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..fe13324d50f2f17ffae8fc648704da6f8e004a56 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/130/jl/res/values/values.xml @@ -0,0 +1,8966 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:ns1="http://schemas.android.com/tools" xmlns:ns2="urn:oasis:names:tc:xliff:document:1.2"> + <attr format="reference" name="appBarLayoutStyle"/> + <attr format="reference" name="badgeStyle"/> + <attr format="boolean" name="behavior_draggable"/> + <attr format="reference" name="bottomAppBarStyle"/> + <attr format="reference" name="bottomNavigationStyle"/> + <attr format="reference" name="bottomSheetDialogTheme"/> + <attr format="reference" name="bottomSheetDragHandleStyle"/> + <attr format="reference" name="bottomSheetStyle"/> + <attr format="reference" name="checkedIcon"/> + <attr format="color" name="checkedIconTint"/> + <attr format="reference" name="chipGroupStyle"/> + <attr format="reference" name="chipStandaloneStyle"/> + <attr format="reference" name="chipStyle"/> + <attr format="reference" name="circularProgressIndicatorStyle"/> + <attr format="reference" name="clockIcon"/> + <attr format="reference" name="collapsingToolbarLayoutLargeSize"/> + <attr format="reference" name="collapsingToolbarLayoutLargeStyle"/> + <attr format="reference" name="collapsingToolbarLayoutMediumSize"/> + <attr format="reference" name="collapsingToolbarLayoutMediumStyle"/> + <attr format="reference" name="collapsingToolbarLayoutStyle"/> + <attr format="color" name="colorContainer"/> + <attr format="color" name="colorErrorContainer"/> + <attr name="colorOnBackground"/> + <attr format="color" name="colorOnContainer"/> + <attr format="color" name="colorOnContainerUnchecked"/> + <attr format="color" name="colorOnError"/> + <attr format="color" name="colorOnErrorContainer"/> + <attr format="color" name="colorOnPrimary"/> + <attr format="color" name="colorOnPrimaryContainer"/> + <attr format="color" name="colorOnPrimaryFixed"/> + <attr format="color" name="colorOnPrimaryFixedVariant"/> + <attr format="color" name="colorOnPrimarySurface"/> + <attr format="color" name="colorOnSecondary"/> + <attr format="color" name="colorOnSecondaryContainer"/> + <attr format="color" name="colorOnSecondaryFixed"/> + <attr format="color" name="colorOnSecondaryFixedVariant"/> + <attr format="color" name="colorOnSurface"/> + <attr format="color" name="colorOnSurfaceInverse"/> + <attr format="color" name="colorOnSurfaceVariant"/> + <attr format="color" name="colorOnTertiary"/> + <attr format="color" name="colorOnTertiaryContainer"/> + <attr format="color" name="colorOnTertiaryFixed"/> + <attr format="color" name="colorOnTertiaryFixedVariant"/> + <attr format="color" name="colorOutline"/> + <attr format="color" name="colorOutlineVariant"/> + <attr format="color" name="colorPrimaryContainer"/> + <attr format="color" name="colorPrimaryFixed"/> + <attr format="color" name="colorPrimaryFixedDim"/> + <attr format="color" name="colorPrimaryInverse"/> + <attr format="color" name="colorPrimarySurface"/> + <attr format="color" name="colorPrimaryVariant"/> + <attr format="color" name="colorSecondary"/> + <attr format="color" name="colorSecondaryContainer"/> + <attr format="color" name="colorSecondaryFixed"/> + <attr format="color" name="colorSecondaryFixedDim"/> + <attr format="color" name="colorSecondaryVariant"/> + <attr format="color" name="colorSurface"/> + <attr format="color" name="colorSurfaceBright"/> + <attr format="color" name="colorSurfaceContainer"/> + <attr format="color" name="colorSurfaceContainerHigh"/> + <attr format="color" name="colorSurfaceContainerHighest"/> + <attr format="color" name="colorSurfaceContainerLow"/> + <attr format="color" name="colorSurfaceContainerLowest"/> + <attr format="color" name="colorSurfaceDim"/> + <attr format="color" name="colorSurfaceInverse"/> + <attr format="color" name="colorSurfaceVariant"/> + <attr format="color" name="colorTertiary"/> + <attr format="color" name="colorTertiaryContainer"/> + <attr format="color" name="colorTertiaryFixed"/> + <attr format="color" name="colorTertiaryFixedDim"/> + <attr format="dimension" name="dividerInsetEnd"/> + <attr format="dimension" name="dividerInsetStart"/> + <attr format="reference" name="dynamicColorThemeOverlay"/> + <attr format="color" name="elevationOverlayAccentColor"/> + <attr format="color" name="elevationOverlayColor"/> + <attr format="boolean" name="elevationOverlayEnabled"/> + <attr format="boolean" name="enableEdgeToEdge"/> + <attr format="boolean" name="ensureMinTouchTargetSize"/> + <attr format="reference" name="extendedFloatingActionButtonPrimaryStyle"/> + <attr format="reference" name="extendedFloatingActionButtonSecondaryStyle"/> + <attr format="reference" name="extendedFloatingActionButtonStyle"/> + <attr format="reference" name="extendedFloatingActionButtonSurfaceStyle"/> + <attr format="reference" name="extendedFloatingActionButtonTertiaryStyle"/> + <attr format="reference" name="floatingActionButtonLargePrimaryStyle"/> + <attr format="reference" name="floatingActionButtonLargeSecondaryStyle"/> + <attr format="reference" name="floatingActionButtonLargeStyle"/> + <attr format="reference" name="floatingActionButtonLargeSurfaceStyle"/> + <attr format="reference" name="floatingActionButtonLargeTertiaryStyle"/> + <attr format="reference" name="floatingActionButtonPrimaryStyle"/> + <attr format="reference" name="floatingActionButtonSecondaryStyle"/> + <attr format="reference" name="floatingActionButtonSmallPrimaryStyle"/> + <attr format="reference" name="floatingActionButtonSmallSecondaryStyle"/> + <attr format="reference" name="floatingActionButtonSmallStyle"/> + <attr format="reference" name="floatingActionButtonSmallSurfaceStyle"/> + <attr format="reference" name="floatingActionButtonSmallTertiaryStyle"/> + <attr format="reference" name="floatingActionButtonStyle"/> + <attr format="reference" name="floatingActionButtonSurfaceStyle"/> + <attr format="reference" name="floatingActionButtonTertiaryStyle"/> + <attr format="reference" name="headerLayout"/> + <attr format="reference" name="hideMotionSpec"/> + <attr format="boolean" name="hideNavigationIcon"/> + <attr format="boolean" name="isMaterial3DynamicColorApplied"/> + <attr format="boolean" name="isMaterial3Theme"/> + <attr format="boolean" name="isMaterialTheme"/> + <attr format="color" name="itemRippleColor"/> + <attr format="reference" name="itemShapeAppearance"/> + <attr format="reference" name="itemShapeAppearanceOverlay"/> + <attr format="color" name="itemTextColor"/> + <attr format="reference" name="keyboardIcon"/> + <attr format="reference" name="linearProgressIndicatorStyle"/> + <attr format="reference" name="materialButtonOutlinedStyle"/> + <attr format="reference" name="materialButtonStyle"/> + <attr format="reference" name="materialButtonToggleGroupStyle"/> + <attr format="reference" name="materialCalendarDay"/> + <attr format="reference" name="materialCalendarDayOfWeekLabel"/> + <attr format="reference" name="materialCalendarFullscreenTheme"/> + <attr format="reference" name="materialCalendarHeaderCancelButton"/> + <attr format="reference" name="materialCalendarHeaderConfirmButton"/> + <attr format="reference" name="materialCalendarHeaderDivider"/> + <attr format="reference" name="materialCalendarHeaderLayout"/> + <attr format="reference" name="materialCalendarHeaderSelection"/> + <attr format="reference" name="materialCalendarHeaderTitle"/> + <attr format="reference" name="materialCalendarHeaderToggleButton"/> + <attr format="reference" name="materialCalendarMonth"/> + <attr format="reference" name="materialCalendarMonthNavigationButton"/> + <attr format="reference" name="materialCalendarStyle"/> + <attr format="reference" name="materialCalendarTheme"/> + <attr format="reference" name="materialCalendarYearNavigationButton"/> + <attr format="reference" name="materialCardViewElevatedStyle"/> + <attr format="reference" name="materialCardViewFilledStyle"/> + <attr format="reference" name="materialCardViewOutlinedStyle"/> + <attr format="reference" name="materialCardViewStyle"/> + <attr format="dimension" name="materialCircleRadius"/> + <attr format="reference" name="materialClockStyle"/> + <attr format="reference" name="materialDisplayDividerStyle"/> + <attr name="materialDividerHeavyStyle" type="reference"/> + <attr name="materialDividerStyle" type="reference"/> + <attr format="reference" name="materialIconButtonFilledStyle"/> + <attr format="reference" name="materialIconButtonFilledTonalStyle"/> + <attr format="reference" name="materialIconButtonOutlinedStyle"/> + <attr format="reference" name="materialIconButtonStyle"/> + <attr format="reference" name="materialSearchBarStyle"/> + <attr format="reference" name="materialSearchViewPrefixStyle"/> + <attr format="reference" name="materialSearchViewStyle"/> + <attr name="materialSwitchStyle" type="reference"/> + <attr format="reference" name="materialThemeOverlay"/> + <attr format="reference" name="materialTimePickerStyle"/> + <attr format="reference" name="materialTimePickerTheme"/> + <attr format="reference" name="materialTimePickerTitleStyle"/> + <attr format="dimension" name="minTouchTargetSize"/> + <attr format="integer" name="motionDurationExtraLong1"/> + <attr format="integer" name="motionDurationExtraLong2"/> + <attr format="integer" name="motionDurationExtraLong3"/> + <attr format="integer" name="motionDurationExtraLong4"/> + <attr format="integer" name="motionDurationLong1"/> + <attr format="integer" name="motionDurationLong2"/> + <attr format="integer" name="motionDurationLong3"/> + <attr format="integer" name="motionDurationLong4"/> + <attr format="integer" name="motionDurationMedium1"/> + <attr format="integer" name="motionDurationMedium2"/> + <attr format="integer" name="motionDurationMedium3"/> + <attr format="integer" name="motionDurationMedium4"/> + <attr format="integer" name="motionDurationShort1"/> + <attr format="integer" name="motionDurationShort2"/> + <attr format="integer" name="motionDurationShort3"/> + <attr format="integer" name="motionDurationShort4"/> + <attr format="string" name="motionEasingAccelerated"/> + <attr format="string" name="motionEasingDecelerated"/> + <attr format="string" name="motionEasingEmphasized"/> + <attr format="reference" name="motionEasingEmphasizedAccelerateInterpolator"/> + <attr format="reference" name="motionEasingEmphasizedDecelerateInterpolator"/> + <attr format="reference" name="motionEasingEmphasizedInterpolator"/> + <attr format="string" name="motionEasingLinear"/> + <attr format="reference" name="motionEasingLinearInterpolator"/> + <attr format="string" name="motionEasingStandard"/> + <attr format="reference" name="motionEasingStandardAccelerateInterpolator"/> + <attr format="reference" name="motionEasingStandardDecelerateInterpolator"/> + <attr format="reference" name="motionEasingStandardInterpolator"/> + <attr format="enum|string" name="motionPath"> + <enum name="linear" value="0"/> + <enum name="arc" value="1"/> + </attr> + <attr format="color" name="navigationIconTint"/> + <attr format="reference" name="navigationRailStyle"/> + <attr format="reference" name="navigationViewStyle"/> + <attr format="reference" name="popupMenuBackground"/> + <attr format="color" name="rippleColor"/> + <attr format="color|reference" name="scrimBackground"/> + <attr format="boolean" name="selectionRequired"/> + <attr format="reference" name="shapeAppearanceCornerExtraLarge"/> + <attr format="reference" name="shapeAppearanceCornerExtraSmall"/> + <attr format="reference" name="shapeAppearanceCornerLarge"/> + <attr format="reference" name="shapeAppearanceCornerMedium"/> + <attr format="reference" name="shapeAppearanceCornerSmall"/> + <attr format="reference" name="shapeAppearanceLargeComponent"/> + <attr format="reference" name="shapeAppearanceMediumComponent"/> + <attr format="reference" name="shapeAppearanceSmallComponent"/> + <attr format="enum" name="shapeCornerFamily"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + <attr format="reference" name="showMotionSpec"/> + <attr format="reference" name="sideSheetDialogTheme"/> + <attr format="reference" name="sideSheetModalStyle"/> + <attr format="boolean" name="singleSelection"/> + <attr format="reference" name="sliderStyle"/> + <attr format="boolean" name="state_with_icon"/> + <attr format="color" name="strokeColor"/> + <attr format="dimension" name="strokeWidth"/> + <attr format="reference" name="tabSecondaryStyle"/> + <attr format="reference" name="tabStyle"/> + <attr format="reference" name="textAppearanceBody1"/> + <attr format="reference" name="textAppearanceBody2"/> + <attr format="reference" name="textAppearanceBodyLarge"/> + <attr format="reference" name="textAppearanceBodyMedium"/> + <attr format="reference" name="textAppearanceBodySmall"/> + <attr format="reference" name="textAppearanceButton"/> + <attr format="reference" name="textAppearanceCaption"/> + <attr format="reference" name="textAppearanceDisplayLarge"/> + <attr format="reference" name="textAppearanceDisplayMedium"/> + <attr format="reference" name="textAppearanceDisplaySmall"/> + <attr format="reference" name="textAppearanceHeadline1"/> + <attr format="reference" name="textAppearanceHeadline2"/> + <attr format="reference" name="textAppearanceHeadline3"/> + <attr format="reference" name="textAppearanceHeadline4"/> + <attr format="reference" name="textAppearanceHeadline5"/> + <attr format="reference" name="textAppearanceHeadline6"/> + <attr format="reference" name="textAppearanceHeadlineLarge"/> + <attr format="reference" name="textAppearanceHeadlineMedium"/> + <attr format="reference" name="textAppearanceHeadlineSmall"/> + <attr format="reference" name="textAppearanceLabelLarge"/> + <attr format="reference" name="textAppearanceLabelMedium"/> + <attr format="reference" name="textAppearanceLabelSmall"/> + <attr format="boolean" name="textAppearanceLineHeightEnabled"/> + <attr format="reference" name="textAppearanceOverline"/> + <attr format="reference" name="textAppearanceSubtitle1"/> + <attr format="reference" name="textAppearanceSubtitle2"/> + <attr format="reference" name="textAppearanceTitleLarge"/> + <attr format="reference" name="textAppearanceTitleMedium"/> + <attr format="reference" name="textAppearanceTitleSmall"/> + <attr format="reference" name="textInputFilledDenseStyle"/> + <attr format="reference" name="textInputFilledExposedDropdownMenuStyle"/> + <attr format="reference" name="textInputFilledStyle"/> + <attr format="reference" name="textInputOutlinedDenseStyle"/> + <attr format="reference" name="textInputOutlinedExposedDropdownMenuStyle"/> + <attr format="reference" name="textInputOutlinedStyle"/> + <attr format="reference" name="textInputStyle"/> + <attr format="reference" name="toolbarSurfaceStyle"/> + <attr format="reference" name="tooltipStyle"/> + <attr format="color" name="trackColor"/> + <attr format="reference" name="transitionShapeAppearance"/> + <attr format="boolean" name="useMaterialThemeColors"/> + <bool name="mtrl_btn_textappearance_all_caps">true</bool> + <color name="design_bottom_navigation_shadow_color">#14000000</color> + <color name="design_dark_default_color_background">#121212</color> + <color name="design_dark_default_color_error">#CF6679</color> + <color name="design_dark_default_color_on_background">#FFFFFF</color> + <color name="design_dark_default_color_on_error">#000000</color> + <color name="design_dark_default_color_on_primary">#000000</color> + <color name="design_dark_default_color_on_secondary">#000000</color> + <color name="design_dark_default_color_on_surface">#FFFFFF</color> + <color name="design_dark_default_color_primary">#BA86FC</color> + <color name="design_dark_default_color_primary_dark">#000000</color> + <color name="design_dark_default_color_primary_variant">#3700B3</color> + <color name="design_dark_default_color_secondary">#03DAC6</color> + <color name="design_dark_default_color_secondary_variant">#03DAC6</color> + <color name="design_dark_default_color_surface">#121212</color> + <color name="design_default_color_background">#FFFFFF</color> + <color name="design_default_color_error">#B00020</color> + <color name="design_default_color_on_background">#000000</color> + <color name="design_default_color_on_error">#FFFFFF</color> + <color name="design_default_color_on_primary">#FFFFFF</color> + <color name="design_default_color_on_secondary">#000000</color> + <color name="design_default_color_on_surface">#000000</color> + <color name="design_default_color_primary">#6200EE</color> + <color name="design_default_color_primary_dark">#3700B3</color> + <color name="design_default_color_primary_variant">#3700B3</color> + <color name="design_default_color_secondary">#03DAC6</color> + <color name="design_default_color_secondary_variant">#018786</color> + <color name="design_default_color_surface">#FFFFFF</color> + <color name="design_fab_shadow_end_color">@android:color/transparent</color> + <color name="design_fab_shadow_mid_color">#14000000</color> + <color name="design_fab_shadow_start_color">#44000000</color> + <color name="design_fab_stroke_end_inner_color">#0A000000</color> + <color name="design_fab_stroke_end_outer_color">#0F000000</color> + <color name="design_fab_stroke_top_inner_color">#1AFFFFFF</color> + <color name="design_fab_stroke_top_outer_color">#2EFFFFFF</color> + <color name="design_snackbar_background_color">#323232</color> + <color name="m3_ref_palette_black">#ff000000</color> + <color name="m3_ref_palette_error0">#ff000000</color> + <color name="m3_ref_palette_error10">#ff410e0b</color> + <color name="m3_ref_palette_error100">#ffffffff</color> + <color name="m3_ref_palette_error20">#ff601410</color> + <color name="m3_ref_palette_error30">#ff8c1d18</color> + <color name="m3_ref_palette_error40">#ffb3261e</color> + <color name="m3_ref_palette_error50">#ffdc362e</color> + <color name="m3_ref_palette_error60">#ffe46962</color> + <color name="m3_ref_palette_error70">#ffec928e</color> + <color name="m3_ref_palette_error80">#fff2b8b5</color> + <color name="m3_ref_palette_error90">#fff9dedc</color> + <color name="m3_ref_palette_error95">#fffceeee</color> + <color name="m3_ref_palette_error99">#fffffbf9</color> + <color name="m3_ref_palette_neutral0">#ff000000</color> + <color name="m3_ref_palette_neutral10">#ff1c1b1f</color> + <color name="m3_ref_palette_neutral100">#ffffffff</color> + <color name="m3_ref_palette_neutral12">#ff201f23</color> + <color name="m3_ref_palette_neutral17">#ff2b292d</color> + <color name="m3_ref_palette_neutral20">#ff313033</color> + <color name="m3_ref_palette_neutral22">#ff313033</color> + <color name="m3_ref_palette_neutral24">#ff313033</color> + <color name="m3_ref_palette_neutral30">#ff484649</color> + <color name="m3_ref_palette_neutral4">#ff0e0e11</color> + <color name="m3_ref_palette_neutral40">#ff605d62</color> + <color name="m3_ref_palette_neutral50">#ff787579</color> + <color name="m3_ref_palette_neutral6">#ff141317</color> + <color name="m3_ref_palette_neutral60">#ff939094</color> + <color name="m3_ref_palette_neutral70">#ffaeaaae</color> + <color name="m3_ref_palette_neutral80">#ffc9c5ca</color> + <color name="m3_ref_palette_neutral87">#ffddd8dd</color> + <color name="m3_ref_palette_neutral90">#ffe6e1e5</color> + <color name="m3_ref_palette_neutral92">#ffece7ec</color> + <color name="m3_ref_palette_neutral94">#fff1ecf1</color> + <color name="m3_ref_palette_neutral95">#fff4eff4</color> + <color name="m3_ref_palette_neutral96">#fff7f2f7</color> + <color name="m3_ref_palette_neutral98">#fffdf8fd</color> + <color name="m3_ref_palette_neutral99">#fffffbfe</color> + <color name="m3_ref_palette_neutral_variant0">#ff000000</color> + <color name="m3_ref_palette_neutral_variant10">#ff1d1a22</color> + <color name="m3_ref_palette_neutral_variant100">#ffffffff</color> + <color name="m3_ref_palette_neutral_variant20">#ff322f37</color> + <color name="m3_ref_palette_neutral_variant30">#ff49454f</color> + <color name="m3_ref_palette_neutral_variant40">#ff605d66</color> + <color name="m3_ref_palette_neutral_variant50">#ff79747e</color> + <color name="m3_ref_palette_neutral_variant60">#ff938f99</color> + <color name="m3_ref_palette_neutral_variant70">#ffaea9b4</color> + <color name="m3_ref_palette_neutral_variant80">#ffcac4d0</color> + <color name="m3_ref_palette_neutral_variant90">#ffe7e0ec</color> + <color name="m3_ref_palette_neutral_variant95">#fff5eefa</color> + <color name="m3_ref_palette_neutral_variant99">#fffffbfe</color> + <color name="m3_ref_palette_primary0">#ff000000</color> + <color name="m3_ref_palette_primary10">#ff21005d</color> + <color name="m3_ref_palette_primary100">#ffffffff</color> + <color name="m3_ref_palette_primary20">#ff381e72</color> + <color name="m3_ref_palette_primary30">#ff4f378b</color> + <color name="m3_ref_palette_primary40">#ff6750a4</color> + <color name="m3_ref_palette_primary50">#ff7f67be</color> + <color name="m3_ref_palette_primary60">#ff9a82db</color> + <color name="m3_ref_palette_primary70">#ffb69df8</color> + <color name="m3_ref_palette_primary80">#ffd0bcff</color> + <color name="m3_ref_palette_primary90">#ffeaddff</color> + <color name="m3_ref_palette_primary95">#fff6edff</color> + <color name="m3_ref_palette_primary99">#fffffbfe</color> + <color name="m3_ref_palette_secondary0">#ff000000</color> + <color name="m3_ref_palette_secondary10">#ff1d192b</color> + <color name="m3_ref_palette_secondary100">#ffffffff</color> + <color name="m3_ref_palette_secondary20">#ff332d41</color> + <color name="m3_ref_palette_secondary30">#ff4a4458</color> + <color name="m3_ref_palette_secondary40">#ff625b71</color> + <color name="m3_ref_palette_secondary50">#ff7a7289</color> + <color name="m3_ref_palette_secondary60">#ff958da5</color> + <color name="m3_ref_palette_secondary70">#ffb0a7c0</color> + <color name="m3_ref_palette_secondary80">#ffccc2dc</color> + <color name="m3_ref_palette_secondary90">#ffe8def8</color> + <color name="m3_ref_palette_secondary95">#fff6edff</color> + <color name="m3_ref_palette_secondary99">#fffffbfe</color> + <color name="m3_ref_palette_tertiary0">#ff000000</color> + <color name="m3_ref_palette_tertiary10">#ff31111d</color> + <color name="m3_ref_palette_tertiary100">#ffffffff</color> + <color name="m3_ref_palette_tertiary20">#ff492532</color> + <color name="m3_ref_palette_tertiary30">#ff633b48</color> + <color name="m3_ref_palette_tertiary40">#ff7d5260</color> + <color name="m3_ref_palette_tertiary50">#ff986977</color> + <color name="m3_ref_palette_tertiary60">#ffb58392</color> + <color name="m3_ref_palette_tertiary70">#ffd29dac</color> + <color name="m3_ref_palette_tertiary80">#ffefb8c8</color> + <color name="m3_ref_palette_tertiary90">#ffffd8e4</color> + <color name="m3_ref_palette_tertiary95">#ffffecf1</color> + <color name="m3_ref_palette_tertiary99">#fffffbfa</color> + <color name="m3_ref_palette_white">#ffffffff</color> + <color name="m3_sys_color_dark_background">@color/m3_ref_palette_neutral10</color> + <color name="m3_sys_color_dark_error">@color/m3_ref_palette_error80</color> + <color name="m3_sys_color_dark_error_container">@color/m3_ref_palette_error30</color> + <color name="m3_sys_color_dark_inverse_on_surface">@color/m3_ref_palette_neutral20</color> + <color name="m3_sys_color_dark_inverse_primary">@color/m3_ref_palette_primary40</color> + <color name="m3_sys_color_dark_inverse_surface">@color/m3_ref_palette_neutral90</color> + <color name="m3_sys_color_dark_on_background">@color/m3_ref_palette_neutral90</color> + <color name="m3_sys_color_dark_on_error">@color/m3_ref_palette_error20</color> + <color name="m3_sys_color_dark_on_error_container">@color/m3_ref_palette_error90</color> + <color name="m3_sys_color_dark_on_primary">@color/m3_ref_palette_primary20</color> + <color name="m3_sys_color_dark_on_primary_container">@color/m3_ref_palette_primary90</color> + <color name="m3_sys_color_dark_on_secondary">@color/m3_ref_palette_secondary20</color> + <color name="m3_sys_color_dark_on_secondary_container">@color/m3_ref_palette_secondary90</color> + <color name="m3_sys_color_dark_on_surface">@color/m3_ref_palette_neutral90</color> + <color name="m3_sys_color_dark_on_surface_variant">@color/m3_ref_palette_neutral_variant80</color> + <color name="m3_sys_color_dark_on_tertiary">@color/m3_ref_palette_tertiary20</color> + <color name="m3_sys_color_dark_on_tertiary_container">@color/m3_ref_palette_tertiary90</color> + <color name="m3_sys_color_dark_outline">@color/m3_ref_palette_neutral_variant60</color> + <color name="m3_sys_color_dark_outline_variant">@color/m3_ref_palette_neutral_variant30</color> + <color name="m3_sys_color_dark_primary">@color/m3_ref_palette_primary80</color> + <color name="m3_sys_color_dark_primary_container">@color/m3_ref_palette_primary30</color> + <color name="m3_sys_color_dark_secondary">@color/m3_ref_palette_secondary80</color> + <color name="m3_sys_color_dark_secondary_container">@color/m3_ref_palette_secondary30</color> + <color name="m3_sys_color_dark_surface">@color/m3_ref_palette_neutral10</color> + <color name="m3_sys_color_dark_surface_bright">@color/m3_ref_palette_neutral24</color> + <color name="m3_sys_color_dark_surface_container">@color/m3_ref_palette_neutral12</color> + <color name="m3_sys_color_dark_surface_container_high">@color/m3_ref_palette_neutral17</color> + <color name="m3_sys_color_dark_surface_container_highest">@color/m3_ref_palette_neutral22</color> + <color name="m3_sys_color_dark_surface_container_low">@color/m3_ref_palette_neutral10</color> + <color name="m3_sys_color_dark_surface_container_lowest">@color/m3_ref_palette_neutral4</color> + <color name="m3_sys_color_dark_surface_dim">@color/m3_ref_palette_neutral6</color> + <color name="m3_sys_color_dark_surface_variant">@color/m3_ref_palette_neutral_variant30</color> + <color name="m3_sys_color_dark_tertiary">@color/m3_ref_palette_tertiary80</color> + <color name="m3_sys_color_dark_tertiary_container">@color/m3_ref_palette_tertiary30</color> + <color name="m3_sys_color_light_background">@color/m3_ref_palette_neutral99</color> + <color name="m3_sys_color_light_error">@color/m3_ref_palette_error40</color> + <color name="m3_sys_color_light_error_container">@color/m3_ref_palette_error90</color> + <color name="m3_sys_color_light_inverse_on_surface">@color/m3_ref_palette_neutral95</color> + <color name="m3_sys_color_light_inverse_primary">@color/m3_ref_palette_primary80</color> + <color name="m3_sys_color_light_inverse_surface">@color/m3_ref_palette_neutral20</color> + <color name="m3_sys_color_light_on_background">@color/m3_ref_palette_neutral10</color> + <color name="m3_sys_color_light_on_error">@color/m3_ref_palette_error100</color> + <color name="m3_sys_color_light_on_error_container">@color/m3_ref_palette_error10</color> + <color name="m3_sys_color_light_on_primary">@color/m3_ref_palette_primary100</color> + <color name="m3_sys_color_light_on_primary_container">@color/m3_ref_palette_primary10</color> + <color name="m3_sys_color_light_on_secondary">@color/m3_ref_palette_secondary100</color> + <color name="m3_sys_color_light_on_secondary_container">@color/m3_ref_palette_secondary10</color> + <color name="m3_sys_color_light_on_surface">@color/m3_ref_palette_neutral10</color> + <color name="m3_sys_color_light_on_surface_variant">@color/m3_ref_palette_neutral_variant30</color> + <color name="m3_sys_color_light_on_tertiary">@color/m3_ref_palette_tertiary100</color> + <color name="m3_sys_color_light_on_tertiary_container">@color/m3_ref_palette_tertiary10</color> + <color name="m3_sys_color_light_outline">@color/m3_ref_palette_neutral_variant50</color> + <color name="m3_sys_color_light_outline_variant">@color/m3_ref_palette_neutral_variant80</color> + <color name="m3_sys_color_light_primary">@color/m3_ref_palette_primary40</color> + <color name="m3_sys_color_light_primary_container">@color/m3_ref_palette_primary90</color> + <color name="m3_sys_color_light_secondary">@color/m3_ref_palette_secondary40</color> + <color name="m3_sys_color_light_secondary_container">@color/m3_ref_palette_secondary90</color> + <color name="m3_sys_color_light_surface">@color/m3_ref_palette_neutral99</color> + <color name="m3_sys_color_light_surface_bright">@color/m3_ref_palette_neutral98</color> + <color name="m3_sys_color_light_surface_container">@color/m3_ref_palette_neutral94</color> + <color name="m3_sys_color_light_surface_container_high">@color/m3_ref_palette_neutral92</color> + <color name="m3_sys_color_light_surface_container_highest">@color/m3_ref_palette_neutral90</color> + <color name="m3_sys_color_light_surface_container_low">@color/m3_ref_palette_neutral96</color> + <color name="m3_sys_color_light_surface_container_lowest">@color/m3_ref_palette_neutral100</color> + <color name="m3_sys_color_light_surface_dim">@color/m3_ref_palette_neutral87</color> + <color name="m3_sys_color_light_surface_variant">@color/m3_ref_palette_neutral_variant90</color> + <color name="m3_sys_color_light_tertiary">@color/m3_ref_palette_tertiary40</color> + <color name="m3_sys_color_light_tertiary_container">@color/m3_ref_palette_tertiary90</color> + <color name="m3_sys_color_on_primary_fixed">@color/m3_ref_palette_primary10</color> + <color name="m3_sys_color_on_primary_fixed_variant">@color/m3_ref_palette_primary30</color> + <color name="m3_sys_color_on_secondary_fixed">@color/m3_ref_palette_secondary10</color> + <color name="m3_sys_color_on_secondary_fixed_variant">@color/m3_ref_palette_secondary30</color> + <color name="m3_sys_color_on_tertiary_fixed">@color/m3_ref_palette_tertiary10</color> + <color name="m3_sys_color_on_tertiary_fixed_variant">@color/m3_ref_palette_tertiary30</color> + <color name="m3_sys_color_primary_fixed">@color/m3_ref_palette_primary90</color> + <color name="m3_sys_color_primary_fixed_dim">@color/m3_ref_palette_primary80</color> + <color name="m3_sys_color_secondary_fixed">@color/m3_ref_palette_secondary90</color> + <color name="m3_sys_color_secondary_fixed_dim">@color/m3_ref_palette_secondary80</color> + <color name="m3_sys_color_tertiary_fixed">@color/m3_ref_palette_tertiary90</color> + <color name="m3_sys_color_tertiary_fixed_dim">@color/m3_ref_palette_tertiary80</color> + <color name="material_harmonized_color_error">#FFFFFF</color> + <color name="material_harmonized_color_error_container">#FFFFFF</color> + <color name="material_harmonized_color_on_error">#FFFFFF</color> + <color name="material_harmonized_color_on_error_container">#FFFFFF</color> + <color name="material_personalized_color_background">#FFFFFF</color> + <color name="material_personalized_color_control_activated">#FFFFFF</color> + <color name="material_personalized_color_control_highlight">#FFFFFF</color> + <color name="material_personalized_color_control_normal">#FFFFFF</color> + <color name="material_personalized_color_error">#FFFFFF</color> + <color name="material_personalized_color_error_container">#FFFFFF</color> + <color name="material_personalized_color_on_background">#FFFFFF</color> + <color name="material_personalized_color_on_error">#FFFFFF</color> + <color name="material_personalized_color_on_error_container">#FFFFFF</color> + <color name="material_personalized_color_on_primary">#FFFFFF</color> + <color name="material_personalized_color_on_primary_container">#FFFFFF</color> + <color name="material_personalized_color_on_secondary">#FFFFFF</color> + <color name="material_personalized_color_on_secondary_container">#FFFFFF</color> + <color name="material_personalized_color_on_surface">#FFFFFF</color> + <color name="material_personalized_color_on_surface_inverse">#FFFFFF</color> + <color name="material_personalized_color_on_surface_variant">#FFFFFF</color> + <color name="material_personalized_color_on_tertiary">#FFFFFF</color> + <color name="material_personalized_color_on_tertiary_container">#FFFFFF</color> + <color name="material_personalized_color_outline">#FFFFFF</color> + <color name="material_personalized_color_outline_variant">#FFFFFF</color> + <color name="material_personalized_color_primary">#FFFFFF</color> + <color name="material_personalized_color_primary_container">#FFFFFF</color> + <color name="material_personalized_color_primary_inverse">#FFFFFF</color> + <color name="material_personalized_color_secondary">#FFFFFF</color> + <color name="material_personalized_color_secondary_container">#FFFFFF</color> + <color name="material_personalized_color_surface">#FFFFFF</color> + <color name="material_personalized_color_surface_bright">#FFFFFF</color> + <color name="material_personalized_color_surface_container">#FFFFFF</color> + <color name="material_personalized_color_surface_container_high">#FFFFFF</color> + <color name="material_personalized_color_surface_container_highest">#FFFFFF</color> + <color name="material_personalized_color_surface_container_low">#FFFFFF</color> + <color name="material_personalized_color_surface_container_lowest">#FFFFFF</color> + <color name="material_personalized_color_surface_dim">#FFFFFF</color> + <color name="material_personalized_color_surface_inverse">#FFFFFF</color> + <color name="material_personalized_color_surface_variant">#FFFFFF</color> + <color name="material_personalized_color_tertiary">#FFFFFF</color> + <color name="material_personalized_color_tertiary_container">#FFFFFF</color> + <color name="material_personalized_color_text_hint_foreground_inverse">#FFFFFF</color> + <color name="material_personalized_color_text_primary_inverse">#FFFFFF</color> + <color name="material_personalized_color_text_primary_inverse_disable_only">#FFFFFF</color> + <color name="material_personalized_color_text_secondary_and_tertiary_inverse">#FFFFFF</color> + <color name="material_personalized_color_text_secondary_and_tertiary_inverse_disabled">#FFFFFF</color> + <color name="mtrl_btn_text_color_disabled">#61000000</color> + <color name="mtrl_btn_transparent_bg_color">#00ffffff</color> + <color name="mtrl_scrim_color">#52000000</color> + <color name="mtrl_textinput_default_box_stroke_color">#6B000000</color> + <color name="mtrl_textinput_disabled_color">#1F000000</color> + <color name="mtrl_textinput_filled_box_default_background_color">#0A000000</color> + <color name="mtrl_textinput_focused_box_stroke_color">#00000000</color> + <color name="mtrl_textinput_hovered_box_stroke_color">#DE000000</color> + <dimen name="appcompat_dialog_background_inset">16dp</dimen> + <dimen name="clock_face_margin_start">64dp</dimen> + <dimen name="design_appbar_elevation">4dp</dimen> + <dimen name="design_bottom_navigation_active_item_max_width">168dp</dimen> + <dimen name="design_bottom_navigation_active_item_min_width">96dp</dimen> + <dimen name="design_bottom_navigation_active_text_size">14sp</dimen> + <dimen name="design_bottom_navigation_elevation">8dp</dimen> + <dimen name="design_bottom_navigation_height">56dp</dimen> + <dimen name="design_bottom_navigation_icon_size">24dp</dimen> + <dimen name="design_bottom_navigation_item_max_width">96dp</dimen> + <dimen name="design_bottom_navigation_item_min_width">56dp</dimen> + <dimen name="design_bottom_navigation_label_padding">10dp</dimen> + <dimen name="design_bottom_navigation_margin">8dp</dimen> + <dimen name="design_bottom_navigation_shadow_height">1dp</dimen> + <dimen name="design_bottom_navigation_text_size">12sp</dimen> + <dimen name="design_bottom_sheet_elevation">8dp</dimen> + <dimen name="design_bottom_sheet_modal_elevation">16dp</dimen> + <dimen name="design_bottom_sheet_peek_height_min">64dp</dimen> + <dimen name="design_fab_border_width">0.5dp</dimen> + <dimen name="design_fab_elevation">6dp</dimen> + <dimen name="design_fab_image_size">24dp</dimen> + <dimen name="design_fab_size_mini">40dp</dimen> + <dimen name="design_fab_size_normal">56dp</dimen> + <dimen name="design_fab_translation_z_hovered_focused">6dp</dimen> + <dimen name="design_fab_translation_z_pressed">6dp</dimen> + <dimen name="design_navigation_elevation">16dp</dimen> + <dimen name="design_navigation_icon_padding">32dp</dimen> + <dimen name="design_navigation_icon_size">24dp</dimen> + <dimen name="design_navigation_item_horizontal_padding">16dp</dimen> + <dimen name="design_navigation_item_icon_padding">32dp</dimen> + <dimen name="design_navigation_item_vertical_padding">4dp</dimen> + <dimen name="design_navigation_max_width">280dp</dimen> + <dimen name="design_navigation_padding_bottom">8dp</dimen> + <dimen name="design_navigation_separator_vertical_padding">8dp</dimen> + <dimen name="design_snackbar_action_inline_max_width">128dp</dimen> + <item format="float" name="design_snackbar_action_text_color_alpha" type="dimen">1.0</item> + <dimen name="design_snackbar_background_corner_radius">0dp</dimen> + <dimen name="design_snackbar_elevation">6dp</dimen> + <dimen name="design_snackbar_extra_spacing_horizontal">0dp</dimen> + <dimen name="design_snackbar_max_width">-1px</dimen> + <dimen name="design_snackbar_min_width">-1px</dimen> + <dimen name="design_snackbar_padding_horizontal">12dp</dimen> + <dimen name="design_snackbar_padding_vertical">14dp</dimen> + <dimen name="design_snackbar_padding_vertical_2lines">16dp</dimen> + <dimen name="design_snackbar_text_size">14sp</dimen> + <dimen name="design_tab_max_width">264dp</dimen> + <dimen name="design_tab_scrollable_min_width">72dp</dimen> + <dimen name="design_tab_text_size">14sp</dimen> + <dimen name="design_tab_text_size_2line">12sp</dimen> + <dimen name="design_textinput_caption_translate_y">5dp</dimen> + <dimen name="m3_alert_dialog_action_bottom_padding">14dp</dimen> + <dimen name="m3_alert_dialog_action_top_padding">14dp</dimen> + <dimen name="m3_alert_dialog_corner_size">28dp</dimen> + <dimen name="m3_alert_dialog_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_alert_dialog_icon_margin">16dp</dimen> + <dimen name="m3_alert_dialog_icon_size">24dp</dimen> + <dimen name="m3_alert_dialog_title_bottom_margin">16dp</dimen> + <dimen name="m3_appbar_expanded_title_margin_bottom">16dp</dimen> + <dimen name="m3_appbar_expanded_title_margin_horizontal">16dp</dimen> + <dimen name="m3_appbar_scrim_height_trigger">96dp</dimen> + <dimen name="m3_appbar_scrim_height_trigger_large">112dp</dimen> + <dimen name="m3_appbar_scrim_height_trigger_medium">112dp</dimen> + <dimen name="m3_appbar_size_compact">@dimen/m3_comp_top_app_bar_small_container_height</dimen> + <dimen name="m3_appbar_size_large">@dimen/m3_comp_top_app_bar_large_container_height</dimen> + <dimen name="m3_appbar_size_medium">@dimen/m3_comp_top_app_bar_medium_container_height</dimen> + <dimen name="m3_badge_horizontal_offset">1.5dp</dimen> + <dimen name="m3_badge_offset">6dp</dimen> + <dimen name="m3_badge_size">@dimen/m3_comp_badge_size</dimen> + <dimen name="m3_badge_vertical_offset">1.5dp</dimen> + <dimen name="m3_badge_with_text_horizontal_offset">3dp</dimen> + <dimen name="m3_badge_with_text_offset">12dp</dimen> + <dimen name="m3_badge_with_text_size">@dimen/m3_comp_badge_large_size</dimen> + <dimen name="m3_badge_with_text_vertical_offset">4dp</dimen> + <dimen name="m3_bottom_nav_item_active_indicator_height">@dimen/m3_comp_navigation_bar_active_indicator_height</dimen> + <dimen name="m3_bottom_nav_item_active_indicator_margin_horizontal">4dp</dimen> + <dimen name="m3_bottom_nav_item_active_indicator_width">@dimen/m3_comp_navigation_bar_active_indicator_width</dimen> + <dimen name="m3_bottom_nav_item_padding_bottom">16dp</dimen> + <dimen name="m3_bottom_nav_item_padding_top">12dp</dimen> + <dimen name="m3_bottom_nav_min_height">@dimen/m3_comp_navigation_bar_container_height</dimen> + <dimen name="m3_bottom_sheet_drag_handle_bottom_padding">20dp</dimen> + <dimen name="m3_bottom_sheet_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_bottom_sheet_modal_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_bottomappbar_fab_cradle_margin">6dp</dimen> + <dimen name="m3_bottomappbar_fab_cradle_rounded_corner_radius">4dp</dimen> + <dimen name="m3_bottomappbar_fab_cradle_vertical_offset">12dp</dimen> + <dimen name="m3_bottomappbar_fab_end_margin">16dp</dimen> + <dimen name="m3_bottomappbar_height">@dimen/m3_comp_bottom_app_bar_container_height</dimen> + <dimen name="m3_bottomappbar_horizontal_padding">4dp</dimen> + <dimen name="m3_btn_dialog_btn_min_width">64dp</dimen> + <dimen name="m3_btn_dialog_btn_spacing">8dp</dimen> + <dimen name="m3_btn_disabled_elevation">0dp</dimen> + <dimen name="m3_btn_disabled_translation_z">0dp</dimen> + <dimen name="m3_btn_elevated_btn_elevation">@dimen/m3_comp_elevated_button_container_elevation</dimen> + <dimen name="m3_btn_elevation">0dp</dimen> + <dimen name="m3_btn_icon_btn_padding_left">16dp</dimen> + <dimen name="m3_btn_icon_btn_padding_right">24dp</dimen> + <dimen name="m3_btn_icon_only_default_padding">10dp</dimen> + <dimen name="m3_btn_icon_only_default_size">20dp</dimen> + <dimen name="m3_btn_icon_only_icon_padding">0dp</dimen> + <dimen name="m3_btn_icon_only_min_width">20dp</dimen> + <dimen name="m3_btn_inset">4dp</dimen> + <dimen name="m3_btn_max_width">320dp</dimen> + <dimen name="m3_btn_padding_bottom">6dp</dimen> + <dimen name="m3_btn_padding_left">24dp</dimen> + <dimen name="m3_btn_padding_right">24dp</dimen> + <dimen name="m3_btn_padding_top">6dp</dimen> + <dimen name="m3_btn_stroke_size">1dp</dimen> + <dimen name="m3_btn_text_btn_icon_padding_left">12dp</dimen> + <dimen name="m3_btn_text_btn_icon_padding_right">16dp</dimen> + <dimen name="m3_btn_text_btn_padding_left">12dp</dimen> + <dimen name="m3_btn_text_btn_padding_right">12dp</dimen> + <dimen name="m3_btn_translation_z_base">0dp</dimen> + <dimen name="m3_btn_translation_z_hovered">1dp</dimen> + <dimen name="m3_card_disabled_z">0dp</dimen> + <dimen name="m3_card_dragged_z">6dp</dimen> + <dimen name="m3_card_elevated_disabled_z">0dp</dimen> + <dimen name="m3_card_elevated_dragged_z">7dp</dimen> + <dimen name="m3_card_elevated_elevation">@dimen/m3_comp_elevated_card_container_elevation</dimen> + <dimen name="m3_card_elevated_hovered_z">2dp</dimen> + <dimen name="m3_card_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_card_hovered_z">1dp</dimen> + <dimen name="m3_card_stroke_width">1dp</dimen> + <dimen name="m3_carousel_debug_keyline_width">2dp</dimen> + <dimen name="m3_carousel_extra_small_item_size">10dp</dimen> + <dimen name="m3_carousel_gone_size">1dp</dimen> + <dimen name="m3_carousel_small_item_default_corner_size">28dp</dimen> + <dimen name="m3_carousel_small_item_size_max">56dp</dimen> + <dimen name="m3_carousel_small_item_size_min">40dp</dimen> + <dimen name="m3_chip_checked_hovered_translation_z">1dp</dimen> + <dimen name="m3_chip_corner_size">8dp</dimen> + <dimen name="m3_chip_disabled_translation_z">-1dp</dimen> + <dimen name="m3_chip_dragged_translation_z">7dp</dimen> + <dimen name="m3_chip_elevated_elevation">1dp</dimen> + <dimen name="m3_chip_hovered_translation_z">2dp</dimen> + <dimen name="m3_chip_icon_size">18dp</dimen> + <dimen name="m3_comp_assist_chip_container_height">32dp</dimen> + <dimen name="m3_comp_assist_chip_elevated_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_assist_chip_flat_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_assist_chip_flat_outline_width">1dp</dimen> + <dimen name="m3_comp_assist_chip_with_icon_icon_size">18dp</dimen> + <dimen name="m3_comp_badge_large_size">16dp</dimen> + <dimen name="m3_comp_badge_size">6dp</dimen> + <dimen name="m3_comp_bottom_app_bar_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <dimen name="m3_comp_bottom_app_bar_container_height">80dp</dimen> + <item format="float" name="m3_comp_checkbox_selected_disabled_container_opacity" type="dimen">0.38</item> + <dimen name="m3_comp_circular_progress_indicator_active_indicator_width">4dp</dimen> + <dimen name="m3_comp_divider_thickness">1dp</dimen> + <dimen name="m3_comp_elevated_button_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_elevated_button_disabled_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_elevated_card_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_elevated_card_icon_size">24dp</dimen> + <dimen name="m3_comp_extended_fab_primary_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_extended_fab_primary_container_height">56dp</dimen> + <dimen name="m3_comp_extended_fab_primary_focus_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_extended_fab_primary_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_extended_fab_primary_hover_container_elevation">@dimen/m3_sys_elevation_level4</dimen> + <dimen name="m3_comp_extended_fab_primary_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_extended_fab_primary_icon_size">24dp</dimen> + <dimen name="m3_comp_extended_fab_primary_pressed_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_extended_fab_primary_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_fab_primary_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_fab_primary_container_height">56dp</dimen> + <dimen name="m3_comp_fab_primary_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_fab_primary_hover_container_elevation">@dimen/m3_sys_elevation_level4</dimen> + <dimen name="m3_comp_fab_primary_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_fab_primary_icon_size">24dp</dimen> + <dimen name="m3_comp_fab_primary_large_container_height">96dp</dimen> + <dimen name="m3_comp_fab_primary_large_icon_size">36dp</dimen> + <dimen name="m3_comp_fab_primary_pressed_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_fab_primary_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_fab_primary_small_container_height">40dp</dimen> + <dimen name="m3_comp_fab_primary_small_icon_size">24dp</dimen> + <dimen name="m3_comp_filled_autocomplete_menu_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <dimen name="m3_comp_filled_button_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_filled_button_with_icon_icon_size">18dp</dimen> + <dimen name="m3_comp_filled_card_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_filled_card_dragged_state_layer_opacity">@dimen/m3_sys_state_dragged_state_layer_opacity</dimen> + <dimen name="m3_comp_filled_card_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_filled_card_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_filled_card_icon_size">24dp</dimen> + <dimen name="m3_comp_filled_card_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <item format="float" name="m3_comp_filled_text_field_disabled_active_indicator_opacity" type="dimen">0.38</item> + <dimen name="m3_comp_filter_chip_container_height">32dp</dimen> + <dimen name="m3_comp_filter_chip_elevated_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_filter_chip_flat_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_filter_chip_flat_unselected_outline_width">1dp</dimen> + <dimen name="m3_comp_filter_chip_with_icon_icon_size">18dp</dimen> + <dimen name="m3_comp_input_chip_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_input_chip_container_height">32dp</dimen> + <dimen name="m3_comp_input_chip_unselected_outline_width">1dp</dimen> + <dimen name="m3_comp_input_chip_with_avatar_avatar_size">24dp</dimen> + <dimen name="m3_comp_input_chip_with_leading_icon_leading_icon_size">18dp</dimen> + <dimen name="m3_comp_linear_progress_indicator_active_indicator_height">4dp</dimen> + <dimen name="m3_comp_menu_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <dimen name="m3_comp_navigation_bar_active_indicator_height">32dp</dimen> + <dimen name="m3_comp_navigation_bar_active_indicator_width">64dp</dimen> + <dimen name="m3_comp_navigation_bar_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <dimen name="m3_comp_navigation_bar_container_height">80dp</dimen> + <dimen name="m3_comp_navigation_bar_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_bar_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_bar_icon_size">24dp</dimen> + <dimen name="m3_comp_navigation_bar_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_drawer_container_width">360dp</dimen> + <dimen name="m3_comp_navigation_drawer_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_drawer_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_drawer_icon_size">24dp</dimen> + <dimen name="m3_comp_navigation_drawer_modal_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_navigation_drawer_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_navigation_drawer_standard_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_navigation_rail_active_indicator_height">32dp</dimen> + <dimen name="m3_comp_navigation_rail_active_indicator_width">56dp</dimen> + <dimen name="m3_comp_navigation_rail_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_navigation_rail_container_width">80dp</dimen> + <dimen name="m3_comp_navigation_rail_icon_size">24dp</dimen> + <dimen name="m3_comp_outlined_autocomplete_menu_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <item format="float" name="m3_comp_outlined_button_disabled_outline_opacity" type="dimen">0.12</item> + <dimen name="m3_comp_outlined_button_outline_width">1dp</dimen> + <dimen name="m3_comp_outlined_card_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <item format="float" name="m3_comp_outlined_card_disabled_outline_opacity" type="dimen">0.12</item> + <dimen name="m3_comp_outlined_card_icon_size">24dp</dimen> + <dimen name="m3_comp_outlined_card_outline_width">1dp</dimen> + <dimen name="m3_comp_outlined_icon_button_unselected_outline_width">1dp</dimen> + <item format="float" name="m3_comp_outlined_text_field_disabled_input_text_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_outlined_text_field_disabled_label_text_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_outlined_text_field_disabled_supporting_text_opacity" type="dimen">0.38</item> + <dimen name="m3_comp_outlined_text_field_focus_outline_width">2dp</dimen> + <dimen name="m3_comp_outlined_text_field_outline_width">1dp</dimen> + <dimen name="m3_comp_primary_navigation_tab_active_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_active_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_active_indicator_height">3dp</dimen> + <dimen name="m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_divider_height">1dp</dimen> + <dimen name="m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_primary_navigation_tab_with_icon_icon_size">24dp</dimen> + <item format="float" name="m3_comp_radio_button_disabled_selected_icon_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_radio_button_disabled_unselected_icon_opacity" type="dimen">0.38</item> + <dimen name="m3_comp_radio_button_selected_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_radio_button_selected_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_radio_button_selected_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_radio_button_unselected_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_radio_button_unselected_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_radio_button_unselected_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_search_bar_avatar_size">30dp</dimen> + <dimen name="m3_comp_search_bar_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_search_bar_container_height">56dp</dimen> + <dimen name="m3_comp_search_bar_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_search_bar_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_search_view_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_search_view_docked_header_container_height">56dp</dimen> + <dimen name="m3_comp_search_view_full_screen_header_container_height">72dp</dimen> + <dimen name="m3_comp_secondary_navigation_tab_active_indicator_height">2dp</dimen> + <dimen name="m3_comp_secondary_navigation_tab_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_secondary_navigation_tab_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_secondary_navigation_tab_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_sheet_bottom_docked_modal_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_sheet_bottom_docked_standard_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_sheet_side_docked_container_width">256dp</dimen> + <dimen name="m3_comp_sheet_side_docked_modal_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_sheet_side_docked_standard_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <item format="float" name="m3_comp_slider_disabled_active_track_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_slider_disabled_handle_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_slider_disabled_inactive_track_opacity" type="dimen">0.12</item> + <dimen name="m3_comp_slider_inactive_track_height">4dp</dimen> + <dimen name="m3_comp_snackbar_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_suggestion_chip_container_height">32dp</dimen> + <dimen name="m3_comp_suggestion_chip_elevated_container_elevation">@dimen/m3_sys_elevation_level1</dimen> + <dimen name="m3_comp_suggestion_chip_flat_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_suggestion_chip_flat_outline_width">1dp</dimen> + <dimen name="m3_comp_suggestion_chip_with_leading_icon_leading_icon_size">18dp</dimen> + <item format="float" name="m3_comp_switch_disabled_selected_handle_opacity" type="dimen">1</item> + <item format="float" name="m3_comp_switch_disabled_selected_icon_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_switch_disabled_track_opacity" type="dimen">0.12</item> + <item format="float" name="m3_comp_switch_disabled_unselected_handle_opacity" type="dimen">0.38</item> + <item format="float" name="m3_comp_switch_disabled_unselected_icon_opacity" type="dimen">0.38</item> + <dimen name="m3_comp_switch_selected_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_switch_selected_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_switch_selected_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_switch_track_height">32dp</dimen> + <dimen name="m3_comp_switch_track_width">52dp</dimen> + <dimen name="m3_comp_switch_unselected_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_switch_unselected_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_switch_unselected_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_text_button_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_text_button_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_text_button_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_time_input_time_input_field_focus_outline_width">2dp</dimen> + <dimen name="m3_comp_time_picker_container_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_comp_time_picker_period_selector_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_time_picker_period_selector_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_time_picker_period_selector_outline_width">1dp</dimen> + <dimen name="m3_comp_time_picker_period_selector_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_time_picker_time_selector_focus_state_layer_opacity">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_comp_time_picker_time_selector_hover_state_layer_opacity">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_comp_time_picker_time_selector_pressed_state_layer_opacity">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_comp_top_app_bar_large_container_height">152dp</dimen> + <dimen name="m3_comp_top_app_bar_medium_container_height">112dp</dimen> + <dimen name="m3_comp_top_app_bar_small_container_elevation">@dimen/m3_sys_elevation_level0</dimen> + <dimen name="m3_comp_top_app_bar_small_container_height">64dp</dimen> + <dimen name="m3_comp_top_app_bar_small_on_scroll_container_elevation">@dimen/m3_sys_elevation_level2</dimen> + <dimen name="m3_datepicker_elevation">@dimen/m3_sys_elevation_level3</dimen> + <dimen name="m3_divider_heavy_thickness">8dp</dimen> + <dimen name="m3_extended_fab_bottom_padding">8dp</dimen> + <dimen name="m3_extended_fab_end_padding">20dp</dimen> + <dimen name="m3_extended_fab_icon_padding">12dp</dimen> + <dimen name="m3_extended_fab_min_height">56dp</dimen> + <dimen name="m3_extended_fab_start_padding">16dp</dimen> + <dimen name="m3_extended_fab_top_padding">8dp</dimen> + <dimen name="m3_fab_border_width">0dp</dimen> + <dimen name="m3_fab_corner_size">30%</dimen> + <dimen name="m3_fab_translation_z_hovered_focused">2dp</dimen> + <dimen name="m3_fab_translation_z_pressed">6dp</dimen> + <dimen name="m3_large_fab_max_image_size">36dp</dimen> + <dimen name="m3_large_fab_size">96dp</dimen> + <dimen name="m3_menu_elevation">@dimen/m3_comp_menu_container_elevation</dimen> + <dimen name="m3_navigation_drawer_layout_corner_size">16dp</dimen> + <dimen name="m3_navigation_item_horizontal_padding">28dp</dimen> + <dimen name="m3_navigation_item_icon_padding">12dp</dimen> + <dimen name="m3_navigation_item_shape_inset_bottom">0dp</dimen> + <dimen name="m3_navigation_item_shape_inset_end">12dp</dimen> + <dimen name="m3_navigation_item_shape_inset_start">12dp</dimen> + <dimen name="m3_navigation_item_shape_inset_top">0dp</dimen> + <dimen name="m3_navigation_item_vertical_padding">4dp</dimen> + <dimen name="m3_navigation_menu_divider_horizontal_padding">28dp</dimen> + <dimen name="m3_navigation_menu_headline_horizontal_padding">28dp</dimen> + <dimen name="m3_navigation_rail_default_width">@dimen/m3_comp_navigation_rail_container_width</dimen> + <dimen name="m3_navigation_rail_elevation">@dimen/m3_comp_navigation_rail_container_elevation</dimen> + <dimen name="m3_navigation_rail_icon_size">@dimen/m3_comp_navigation_rail_icon_size</dimen> + <dimen name="m3_navigation_rail_item_active_indicator_height">@dimen/m3_comp_navigation_rail_active_indicator_height</dimen> + <dimen name="m3_navigation_rail_item_active_indicator_margin_horizontal">4dp</dimen> + <dimen name="m3_navigation_rail_item_active_indicator_width">@dimen/m3_comp_navigation_rail_active_indicator_width</dimen> + <dimen name="m3_navigation_rail_item_min_height">60dp</dimen> + <dimen name="m3_navigation_rail_item_padding_bottom">8dp</dimen> + <dimen name="m3_navigation_rail_item_padding_top">4dp</dimen> + <dimen name="m3_ripple_default_alpha">@dimen/m3_sys_state_dragged_state_layer_opacity</dimen> + <dimen name="m3_ripple_focused_alpha">@dimen/m3_sys_state_focus_state_layer_opacity</dimen> + <dimen name="m3_ripple_hovered_alpha">@dimen/m3_sys_state_hover_state_layer_opacity</dimen> + <dimen name="m3_ripple_pressed_alpha">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_ripple_selectable_pressed_alpha">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen> + <dimen name="m3_searchbar_elevation">@dimen/m3_comp_search_bar_container_elevation</dimen> + <dimen name="m3_searchbar_height">@dimen/m3_comp_search_bar_container_height</dimen> + <dimen name="m3_searchbar_margin_horizontal">16dp</dimen> + <dimen name="m3_searchbar_margin_vertical">16dp</dimen> + <dimen name="m3_searchbar_outlined_stroke_width">1dp</dimen> + <dimen name="m3_searchbar_padding_start">4dp</dimen> + <dimen name="m3_searchbar_text_margin_start_no_navigation_icon">16dp</dimen> + <dimen name="m3_searchbar_text_size">16sp</dimen> + <dimen name="m3_searchview_divider_size">1dp</dimen> + <dimen name="m3_searchview_elevation">@dimen/m3_comp_search_view_container_elevation</dimen> + <dimen name="m3_searchview_height">@dimen/m3_comp_search_view_full_screen_header_container_height</dimen> + <dimen name="m3_side_sheet_margin_detached">16dp</dimen> + <dimen name="m3_side_sheet_modal_elevation">@dimen/m3_comp_sheet_side_docked_modal_container_elevation</dimen> + <dimen name="m3_side_sheet_standard_elevation">@dimen/m3_comp_sheet_side_docked_standard_container_elevation</dimen> + <dimen name="m3_side_sheet_width">@dimen/m3_comp_sheet_side_docked_container_width</dimen> + <item format="float" name="m3_simple_item_color_hovered_alpha" type="dimen">0.08</item> + <item format="float" name="m3_simple_item_color_selected_alpha" type="dimen">0.12</item> + <dimen name="m3_slider_inactive_track_height">@dimen/m3_comp_slider_inactive_track_height</dimen> + <dimen name="m3_slider_thumb_elevation">2dp</dimen> + <dimen name="m3_small_fab_max_image_size">24dp</dimen> + <dimen name="m3_small_fab_size">40dp</dimen> + <item format="float" name="m3_snackbar_action_text_color_alpha" type="dimen">1.0</item> + <dimen name="m3_snackbar_margin">8dp</dimen> + <dimen name="m3_sys_elevation_level0">0dp</dimen> + <dimen name="m3_sys_elevation_level1">1dp</dimen> + <dimen name="m3_sys_elevation_level2">3dp</dimen> + <dimen name="m3_sys_elevation_level3">6dp</dimen> + <dimen name="m3_sys_elevation_level4">8dp</dimen> + <dimen name="m3_sys_elevation_level5">12dp</dimen> + <item format="float" name="m3_sys_motion_easing_emphasized_accelerate_control_x1" type="dimen">0.3</item> + <item format="float" name="m3_sys_motion_easing_emphasized_accelerate_control_x2" type="dimen">0.8</item> + <item format="float" name="m3_sys_motion_easing_emphasized_accelerate_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_emphasized_accelerate_control_y2" type="dimen">0.2</item> + <item format="float" name="m3_sys_motion_easing_emphasized_decelerate_control_x1" type="dimen">0.1</item> + <item format="float" name="m3_sys_motion_easing_emphasized_decelerate_control_x2" type="dimen">0.1</item> + <item format="float" name="m3_sys_motion_easing_emphasized_decelerate_control_y1" type="dimen">0.7</item> + <item format="float" name="m3_sys_motion_easing_emphasized_decelerate_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_legacy_accelerate_control_x1" type="dimen">0.4</item> + <item format="float" name="m3_sys_motion_easing_legacy_accelerate_control_x2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_legacy_accelerate_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_legacy_accelerate_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_legacy_control_x1" type="dimen">0.4</item> + <item format="float" name="m3_sys_motion_easing_legacy_control_x2" type="dimen">0.2</item> + <item format="float" name="m3_sys_motion_easing_legacy_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_legacy_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_legacy_decelerate_control_x1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_legacy_decelerate_control_x2" type="dimen">0.2</item> + <item format="float" name="m3_sys_motion_easing_legacy_decelerate_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_legacy_decelerate_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_linear_control_x1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_linear_control_x2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_linear_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_linear_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_standard_accelerate_control_x1" type="dimen">0.3</item> + <item format="float" name="m3_sys_motion_easing_standard_accelerate_control_x2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_standard_accelerate_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_accelerate_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_standard_control_x1" type="dimen">0.2</item> + <item format="float" name="m3_sys_motion_easing_standard_control_x2" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_motion_easing_standard_decelerate_control_x1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_decelerate_control_x2" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_decelerate_control_y1" type="dimen">0</item> + <item format="float" name="m3_sys_motion_easing_standard_decelerate_control_y2" type="dimen">1</item> + <item format="float" name="m3_sys_state_dragged_state_layer_opacity" type="dimen">0.16</item> + <item format="float" name="m3_sys_state_focus_state_layer_opacity" type="dimen">0.12</item> + <item format="float" name="m3_sys_state_hover_state_layer_opacity" type="dimen">0.08</item> + <item format="float" name="m3_sys_state_pressed_state_layer_opacity" type="dimen">0.12</item> + <dimen name="m3_timepicker_display_stroke_width">2dp</dimen> + <dimen name="m3_timepicker_window_elevation">@dimen/m3_comp_time_picker_container_elevation</dimen> + <dimen name="m3_toolbar_text_size_title">20dp</dimen> + <dimen name="material_bottom_sheet_max_width">640dp</dimen> + <dimen name="material_clock_display_height">80dp</dimen> + <dimen name="material_clock_display_padding">24dp</dimen> + <dimen name="material_clock_display_width">96dp</dimen> + <dimen name="material_clock_face_margin_top">44dp</dimen> + <dimen name="material_clock_hand_center_dot_radius">4dp</dimen> + <dimen name="material_clock_hand_padding">4dp</dimen> + <dimen name="material_clock_hand_stroke_width">2dp</dimen> + <dimen name="material_clock_number_text_size">15sp</dimen> + <dimen name="material_clock_period_toggle_height">96dp</dimen> + <dimen name="material_clock_period_toggle_horizontal_gap">12dp</dimen> + <dimen name="material_clock_period_toggle_vertical_gap">12dp</dimen> + <dimen name="material_clock_period_toggle_width">52dp</dimen> + <dimen name="material_clock_size">256dp</dimen> + <dimen name="material_cursor_inset">-4dp</dimen> + <dimen name="material_cursor_width">2dp</dimen> + <dimen name="material_divider_thickness">1dp</dimen> + <item format="float" name="material_emphasis_disabled" type="dimen">0.38</item> + <item format="float" name="material_emphasis_disabled_background" type="dimen">0.12</item> + <item format="float" name="material_emphasis_high_type" type="dimen">0.87</item> + <item format="float" name="material_emphasis_medium" type="dimen">0.6</item> + <dimen name="material_filled_edittext_font_1_3_padding_bottom">12dp</dimen> + <dimen name="material_filled_edittext_font_1_3_padding_top">23dp</dimen> + <dimen name="material_filled_edittext_font_2_0_padding_bottom">8dp</dimen> + <dimen name="material_filled_edittext_font_2_0_padding_top">32dp</dimen> + <dimen name="material_font_1_3_box_collapsed_padding_top">4dp</dimen> + <dimen name="material_font_2_0_box_collapsed_padding_top">8dp</dimen> + <dimen name="material_helper_text_default_padding_top">4dp</dimen> + <dimen name="material_helper_text_font_1_3_padding_horizontal">12dp</dimen> + <dimen name="material_helper_text_font_1_3_padding_top">8dp</dimen> + <dimen name="material_input_text_to_prefix_suffix_padding">2dp</dimen> + <dimen name="material_textinput_default_width">245dp</dimen> + <dimen name="material_textinput_max_width">488dp</dimen> + <dimen name="material_textinput_min_width">56dp</dimen> + <dimen name="material_time_picker_minimum_screen_height">560dp</dimen> + <dimen name="material_time_picker_minimum_screen_width">340dp</dimen> + <dimen name="material_timepicker_dialog_buttons_margin_top">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_bottom">80dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_end">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_start">24dp</dimen> + <dimen name="mtrl_alert_dialog_background_inset_top">80dp</dimen> + <dimen name="mtrl_alert_dialog_picker_background_inset">24dp</dimen> + <dimen name="mtrl_badge_horizontal_edge_offset">4dp</dimen> + <dimen name="mtrl_badge_long_text_horizontal_padding">4dp</dimen> + <dimen name="mtrl_badge_size">8dp</dimen> + <dimen name="mtrl_badge_text_horizontal_edge_offset">6dp</dimen> + <dimen name="mtrl_badge_text_size">10sp</dimen> + <dimen name="mtrl_badge_toolbar_action_menu_item_horizontal_offset">12dp</dimen> + <dimen name="mtrl_badge_toolbar_action_menu_item_vertical_offset">12dp</dimen> + <dimen name="mtrl_badge_with_text_size">16dp</dimen> + <dimen name="mtrl_bottomappbar_fabOffsetEndMode">60dp</dimen> + <dimen name="mtrl_bottomappbar_fab_bottom_margin">16dp</dimen> + <dimen name="mtrl_bottomappbar_fab_cradle_margin">5dp</dimen> + <dimen name="mtrl_bottomappbar_fab_cradle_rounded_corner_radius">8dp</dimen> + <dimen name="mtrl_bottomappbar_fab_cradle_vertical_offset">0dp</dimen> + <dimen name="mtrl_bottomappbar_height">56dp</dimen> + <dimen name="mtrl_btn_corner_radius">4dp</dimen> + <dimen name="mtrl_btn_dialog_btn_min_width">64dp</dimen> + <dimen name="mtrl_btn_disabled_elevation">0dp</dimen> + <dimen name="mtrl_btn_disabled_z">0dp</dimen> + <dimen name="mtrl_btn_elevation">2dp</dimen> + <dimen name="mtrl_btn_focused_z">2dp</dimen> + <dimen name="mtrl_btn_hovered_z">2dp</dimen> + <dimen name="mtrl_btn_icon_btn_padding_left">12dp</dimen> + <dimen name="mtrl_btn_icon_padding">8dp</dimen> + <dimen name="mtrl_btn_inset">6dp</dimen> + <item format="float" name="mtrl_btn_letter_spacing" type="dimen">0.07</item> + <dimen name="mtrl_btn_max_width">320dp</dimen> + <dimen name="mtrl_btn_padding_bottom">4dp</dimen> + <dimen name="mtrl_btn_padding_left">16dp</dimen> + <dimen name="mtrl_btn_padding_right">16dp</dimen> + <dimen name="mtrl_btn_padding_top">4dp</dimen> + <dimen name="mtrl_btn_pressed_z">6dp</dimen> + <dimen name="mtrl_btn_snackbar_margin_horizontal">8dp</dimen> + <dimen name="mtrl_btn_stroke_size">1dp</dimen> + <dimen name="mtrl_btn_text_btn_icon_padding">4dp</dimen> + <dimen name="mtrl_btn_text_btn_padding_left">8dp</dimen> + <dimen name="mtrl_btn_text_btn_padding_right">8dp</dimen> + <dimen name="mtrl_btn_text_size">14sp</dimen> + <dimen name="mtrl_btn_z">0dp</dimen> + <dimen name="mtrl_calendar_action_confirm_button_min_width">64dp</dimen> + <dimen name="mtrl_calendar_action_height">52dp</dimen> + <dimen name="mtrl_calendar_action_padding">8dp</dimen> + <dimen name="mtrl_calendar_bottom_padding">0dp</dimen> + <dimen name="mtrl_calendar_content_padding">12dp</dimen> + <dimen name="mtrl_calendar_day_corner">15dp</dimen> + <dimen name="mtrl_calendar_day_height">32dp</dimen> + <dimen name="mtrl_calendar_day_horizontal_padding">3dp</dimen> + <dimen name="mtrl_calendar_day_today_stroke">1dp</dimen> + <dimen name="mtrl_calendar_day_vertical_padding">1dp</dimen> + <dimen name="mtrl_calendar_day_width">36dp</dimen> + <dimen name="mtrl_calendar_days_of_week_height">24dp</dimen> + <dimen name="mtrl_calendar_dialog_background_inset">16dp</dimen> + <dimen name="mtrl_calendar_header_content_padding">12dp</dimen> + <dimen name="mtrl_calendar_header_content_padding_fullscreen">4dp</dimen> + <dimen name="mtrl_calendar_header_divider_thickness">1dp</dimen> + <dimen name="mtrl_calendar_header_height">120dp</dimen> + <dimen name="mtrl_calendar_header_height_fullscreen">128dp</dimen> + <dimen name="mtrl_calendar_header_selection_line_height">32dp</dimen> + <dimen name="mtrl_calendar_header_text_padding">12dp</dimen> + <dimen name="mtrl_calendar_header_toggle_margin_bottom">8dp</dimen> + <dimen name="mtrl_calendar_header_toggle_margin_top">24dp</dimen> + <dimen name="mtrl_calendar_landscape_header_width">0dp</dimen> + <dimen name="mtrl_calendar_maximum_default_fullscreen_minor_axis">480dp</dimen> + <dimen name="mtrl_calendar_month_horizontal_padding">2dp</dimen> + <dimen name="mtrl_calendar_month_vertical_padding">0dp</dimen> + <dimen name="mtrl_calendar_navigation_bottom_padding">4dp</dimen> + <dimen name="mtrl_calendar_navigation_height">48dp</dimen> + <dimen name="mtrl_calendar_navigation_top_padding">4dp</dimen> + <dimen name="mtrl_calendar_pre_l_text_clip_padding">8dp</dimen> + <dimen name="mtrl_calendar_selection_baseline_to_top_fullscreen">104dp</dimen> + <dimen name="mtrl_calendar_selection_text_baseline_to_bottom">20dp</dimen> + <dimen name="mtrl_calendar_selection_text_baseline_to_bottom_fullscreen">24dp</dimen> + <dimen name="mtrl_calendar_selection_text_baseline_to_top">100dp</dimen> + <dimen name="mtrl_calendar_text_input_padding_top">16dp</dimen> + <dimen name="mtrl_calendar_title_baseline_to_top">28dp</dimen> + <dimen name="mtrl_calendar_title_baseline_to_top_fullscreen">68dp</dimen> + <dimen name="mtrl_calendar_year_corner">18dp</dimen> + <dimen name="mtrl_calendar_year_height">52dp</dimen> + <dimen name="mtrl_calendar_year_horizontal_padding">8dp</dimen> + <dimen name="mtrl_calendar_year_vertical_padding">8dp</dimen> + <dimen name="mtrl_calendar_year_width">88dp</dimen> + <dimen name="mtrl_card_checked_icon_margin">8dp</dimen> + <dimen name="mtrl_card_checked_icon_size">24dp</dimen> + <dimen name="mtrl_card_corner_radius">4dp</dimen> + <dimen name="mtrl_card_dragged_z">5dp</dimen> + <dimen name="mtrl_card_elevation">1dp</dimen> + <dimen name="mtrl_card_spacing">8dp</dimen> + <dimen name="mtrl_chip_pressed_translation_z">3dp</dimen> + <dimen name="mtrl_chip_text_size">14sp</dimen> + <dimen name="mtrl_exposed_dropdown_menu_popup_elevation">8dp</dimen> + <dimen name="mtrl_exposed_dropdown_menu_popup_vertical_offset">-8dp</dimen> + <dimen name="mtrl_exposed_dropdown_menu_popup_vertical_padding">8dp</dimen> + <dimen name="mtrl_extended_fab_bottom_padding">12dp</dimen> + <dimen name="mtrl_extended_fab_disabled_elevation">0dp</dimen> + <dimen name="mtrl_extended_fab_disabled_translation_z">0dp</dimen> + <dimen name="mtrl_extended_fab_elevation">6dp</dimen> + <dimen name="mtrl_extended_fab_end_padding">20dp</dimen> + <dimen name="mtrl_extended_fab_end_padding_icon">20dp</dimen> + <dimen name="mtrl_extended_fab_icon_size">24dp</dimen> + <dimen name="mtrl_extended_fab_icon_text_spacing">12dp</dimen> + <dimen name="mtrl_extended_fab_min_height">48dp</dimen> + <dimen name="mtrl_extended_fab_min_width">120dp</dimen> + <dimen name="mtrl_extended_fab_start_padding">20dp</dimen> + <dimen name="mtrl_extended_fab_start_padding_icon">12dp</dimen> + <dimen name="mtrl_extended_fab_top_padding">12dp</dimen> + <dimen name="mtrl_extended_fab_translation_z_base">0dp</dimen> + <dimen name="mtrl_extended_fab_translation_z_hovered_focused">2dp</dimen> + <dimen name="mtrl_extended_fab_translation_z_pressed">6dp</dimen> + <dimen name="mtrl_fab_elevation">6dp</dimen> + <dimen name="mtrl_fab_min_touch_target">48dp</dimen> + <dimen name="mtrl_fab_translation_z_hovered_focused">2dp</dimen> + <dimen name="mtrl_fab_translation_z_pressed">6dp</dimen> + <item format="float" name="mtrl_high_ripple_default_alpha" type="dimen">0.00</item> + <item format="float" name="mtrl_high_ripple_focused_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_high_ripple_hovered_alpha" type="dimen">0.08</item> + <item format="float" name="mtrl_high_ripple_pressed_alpha" type="dimen">0.24</item> + <item format="float" name="mtrl_low_ripple_default_alpha" type="dimen">0.00</item> + <item format="float" name="mtrl_low_ripple_focused_alpha" type="dimen">0.12</item> + <item format="float" name="mtrl_low_ripple_hovered_alpha" type="dimen">0.04</item> + <item format="float" name="mtrl_low_ripple_pressed_alpha" type="dimen">0.12</item> + <dimen name="mtrl_min_touch_target_size">48dp</dimen> + <dimen name="mtrl_navigation_bar_item_default_icon_size">24dp</dimen> + <dimen name="mtrl_navigation_bar_item_default_margin">8dp</dimen> + <dimen name="mtrl_navigation_elevation">0dp</dimen> + <dimen name="mtrl_navigation_item_horizontal_padding">22dp</dimen> + <dimen name="mtrl_navigation_item_icon_padding">14dp</dimen> + <dimen name="mtrl_navigation_item_icon_size">24dp</dimen> + <dimen name="mtrl_navigation_item_shape_horizontal_margin">8dp</dimen> + <dimen name="mtrl_navigation_item_shape_vertical_margin">4dp</dimen> + <dimen name="mtrl_navigation_rail_active_text_size" ns1:ignore="SpUsage">14dp</dimen> + <dimen name="mtrl_navigation_rail_compact_width">56dp</dimen> + <dimen name="mtrl_navigation_rail_default_width">72dp</dimen> + <dimen name="mtrl_navigation_rail_elevation">8dp</dimen> + <dimen name="mtrl_navigation_rail_icon_margin">14dp</dimen> + <dimen name="mtrl_navigation_rail_icon_size">24dp</dimen> + <dimen name="mtrl_navigation_rail_margin">8dp</dimen> + <dimen name="mtrl_navigation_rail_text_bottom_margin">16dp</dimen> + <dimen name="mtrl_navigation_rail_text_size" ns1:ignore="SpUsage">12dp</dimen> + <dimen name="mtrl_progress_circular_inset">4dp</dimen> + <dimen name="mtrl_progress_circular_inset_extra_small">2dp</dimen> + <dimen name="mtrl_progress_circular_inset_medium">4dp</dimen> + <dimen name="mtrl_progress_circular_inset_small">4dp</dimen> + <dimen name="mtrl_progress_circular_radius">18dp</dimen> + <dimen name="mtrl_progress_circular_size">40dp</dimen> + <dimen name="mtrl_progress_circular_size_extra_small">20dp</dimen> + <dimen name="mtrl_progress_circular_size_medium">40dp</dimen> + <dimen name="mtrl_progress_circular_size_small">28dp</dimen> + <dimen name="mtrl_progress_circular_track_thickness_extra_small">2.5dp</dimen> + <dimen name="mtrl_progress_circular_track_thickness_medium">4dp</dimen> + <dimen name="mtrl_progress_circular_track_thickness_small">3dp</dimen> + <dimen name="mtrl_progress_indicator_full_rounded_corner_radius">2dp</dimen> + <dimen name="mtrl_progress_track_thickness">4dp</dimen> + <dimen name="mtrl_shape_corner_size_large_component">0dp</dimen> + <dimen name="mtrl_shape_corner_size_medium_component">4dp</dimen> + <dimen name="mtrl_shape_corner_size_small_component">4dp</dimen> + <dimen name="mtrl_slider_halo_radius">24dp</dimen> + <dimen name="mtrl_slider_label_padding">4dp</dimen> + <dimen name="mtrl_slider_label_radius">13dp</dimen> + <dimen name="mtrl_slider_label_square_side">26dp</dimen> + <dimen name="mtrl_slider_thumb_elevation">1dp</dimen> + <dimen name="mtrl_slider_thumb_radius">10dp</dimen> + <dimen name="mtrl_slider_tick_radius">1dp</dimen> + <dimen name="mtrl_slider_track_height">4dp</dimen> + <dimen name="mtrl_slider_track_side_padding">16dp</dimen> + <dimen name="mtrl_slider_widget_height">48dp</dimen> + <item format="float" name="mtrl_snackbar_action_text_color_alpha" type="dimen">0.5</item> + <dimen name="mtrl_snackbar_background_corner_radius">4dp</dimen> + <item format="float" name="mtrl_snackbar_background_overlay_color_alpha" type="dimen">0.8</item> + <dimen name="mtrl_snackbar_margin">8dp</dimen> + <dimen name="mtrl_snackbar_message_margin_horizontal">8dp</dimen> + <dimen name="mtrl_snackbar_padding_horizontal">8dp</dimen> + <dimen name="mtrl_switch_text_padding">16dp</dimen> + <dimen name="mtrl_switch_thumb_elevation">4dp</dimen> + <dimen name="mtrl_switch_thumb_size">32dp</dimen> + <dimen name="mtrl_switch_track_height">@dimen/m3_comp_switch_track_height</dimen> + <dimen name="mtrl_switch_track_width">@dimen/m3_comp_switch_track_width</dimen> + <dimen name="mtrl_textinput_box_corner_radius_medium">4dp</dimen> + <dimen name="mtrl_textinput_box_corner_radius_small">0dp</dimen> + <dimen name="mtrl_textinput_box_label_cutout_padding">4dp</dimen> + <dimen name="mtrl_textinput_box_stroke_width_default">@dimen/m3_comp_outlined_text_field_outline_width</dimen> + <dimen name="mtrl_textinput_box_stroke_width_focused">@dimen/m3_comp_outlined_text_field_focus_outline_width</dimen> + <dimen name="mtrl_textinput_counter_margin_start">16dp</dimen> + <dimen name="mtrl_textinput_end_icon_margin_start">4dp</dimen> + <dimen name="mtrl_textinput_outline_box_expanded_padding">16dp</dimen> + <dimen name="mtrl_textinput_start_icon_margin_end">4dp</dimen> + <dimen name="mtrl_toolbar_default_height">56dp</dimen> + <dimen name="mtrl_tooltip_arrowSize">14dp</dimen> + <dimen name="mtrl_tooltip_cornerSize">4dp</dimen> + <dimen name="mtrl_tooltip_minHeight">32dp</dimen> + <dimen name="mtrl_tooltip_minWidth">32dp</dimen> + <dimen name="mtrl_tooltip_padding">12dp</dimen> + <dimen name="mtrl_transition_shared_axis_slide_distance">30dp</dimen> + <item name="material_ic_keyboard_arrow_next_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_right_black_24dp</item> + <item name="material_ic_keyboard_arrow_previous_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_left_black_24dp</item> + <item name="material_clock_face" type="id"/> + <item name="material_clock_level" type="id"/> + <item name="material_value_index" type="id"/> + <item name="mtrl_anchor_parent" type="id"/> + <item name="mtrl_card_checked_layer_id" type="id"/> + <item name="mtrl_child_content_container" type="id"/> + <item name="mtrl_internal_children_alpha_tag" type="id"/> + <item name="mtrl_motion_snapshot_view" type="id"/> + <item name="mtrl_view_tag_bottom_padding" type="id"/> + <item name="navigation_bar_item_active_indicator_view" type="id"/> + <item name="navigation_bar_item_icon_container" type="id"/> + <item name="navigation_bar_item_icon_view" type="id"/> + <item name="navigation_bar_item_labels_group" type="id"/> + <item name="navigation_bar_item_large_label_view" type="id"/> + <item name="navigation_bar_item_small_label_view" type="id"/> + <item name="row_index_key" type="id"/> + <item name="selection_type" type="id"/> + <item name="snackbar_action" type="id"/> + <item name="snackbar_text" type="id"/> + <item name="text_input_error_icon" type="id"/> + <item name="textinput_counter" type="id"/> + <item name="textinput_error" type="id"/> + <item name="textinput_helper_text" type="id"/> + <item name="textinput_placeholder" type="id"/> + <item name="textinput_prefix_text" type="id"/> + <item name="textinput_suffix_text" type="id"/> + <item name="view_offset_helper" type="id"/> + <integer name="app_bar_elevation_anim_duration">150</integer> + <integer name="bottom_sheet_slide_duration">150</integer> + <integer name="design_snackbar_text_max_lines">2</integer> + <integer name="design_tab_indicator_anim_duration_ms">300</integer> + <integer name="hide_password_duration">320</integer> + <integer name="m3_btn_anim_delay_ms">100</integer> + <integer name="m3_btn_anim_duration_ms">100</integer> + <integer name="m3_card_anim_delay_ms">75</integer> + <integer name="m3_card_anim_duration_ms">120</integer> + <integer name="m3_chip_anim_duration">100</integer> + <integer name="m3_sys_motion_duration_extra_long1">700</integer> + <integer name="m3_sys_motion_duration_extra_long2">800</integer> + <integer name="m3_sys_motion_duration_extra_long3">900</integer> + <integer name="m3_sys_motion_duration_extra_long4">1000</integer> + <integer name="m3_sys_motion_duration_long1">450</integer> + <integer name="m3_sys_motion_duration_long2">500</integer> + <integer name="m3_sys_motion_duration_long3">550</integer> + <integer name="m3_sys_motion_duration_long4">600</integer> + <integer name="m3_sys_motion_duration_medium1">250</integer> + <integer name="m3_sys_motion_duration_medium2">300</integer> + <integer name="m3_sys_motion_duration_medium3">350</integer> + <integer name="m3_sys_motion_duration_medium4">400</integer> + <integer name="m3_sys_motion_duration_short1">50</integer> + <integer name="m3_sys_motion_duration_short2">100</integer> + <integer name="m3_sys_motion_duration_short3">150</integer> + <integer name="m3_sys_motion_duration_short4">200</integer> + <integer name="m3_sys_motion_path">0</integer> + <integer name="m3_sys_shape_corner_extra_large_corner_family">0</integer> + <integer name="m3_sys_shape_corner_extra_small_corner_family">0</integer> + <integer name="m3_sys_shape_corner_full_corner_family">0</integer> + <integer name="m3_sys_shape_corner_large_corner_family">0</integer> + <integer name="m3_sys_shape_corner_medium_corner_family">0</integer> + <integer name="m3_sys_shape_corner_small_corner_family">0</integer> + <integer name="material_motion_duration_long_1">300</integer> + <integer name="material_motion_duration_long_2">350</integer> + <integer name="material_motion_duration_medium_1">200</integer> + <integer name="material_motion_duration_medium_2">250</integer> + <integer name="material_motion_duration_short_1">75</integer> + <integer name="material_motion_duration_short_2">150</integer> + <integer name="material_motion_path" translatable="false">0</integer> + <integer name="mtrl_badge_max_character_count">4</integer> + <integer name="mtrl_btn_anim_delay_ms">100</integer> + <integer name="mtrl_btn_anim_duration_ms">100</integer> + <integer name="mtrl_calendar_header_orientation">1</integer> + <integer name="mtrl_calendar_selection_text_lines">1</integer> + <integer name="mtrl_calendar_year_selector_span">3</integer> + <integer name="mtrl_card_anim_delay_ms">75</integer> + <integer name="mtrl_card_anim_duration_ms">120</integer> + <integer name="mtrl_chip_anim_duration">100</integer> + <integer name="mtrl_switch_thumb_motion_duration">@integer/m3_sys_motion_duration_medium4</integer> + <integer name="mtrl_switch_thumb_post_morphing_duration">@integer/m3_sys_motion_duration_medium1</integer> + <integer name="mtrl_switch_thumb_pre_morphing_duration">@integer/m3_sys_motion_duration_short3</integer> + <integer name="mtrl_switch_thumb_pressed_duration">@integer/m3_sys_motion_duration_short3</integer> + <integer name="mtrl_switch_thumb_viewport_center_coordinate">16</integer> + <integer name="mtrl_switch_thumb_viewport_size">32</integer> + <integer name="mtrl_switch_track_viewport_height">32</integer> + <integer name="mtrl_switch_track_viewport_width">52</integer> + <integer name="mtrl_tab_indicator_anim_duration_ms">250</integer> + <integer name="mtrl_view_gone">2</integer> + <integer name="mtrl_view_invisible">1</integer> + <integer name="mtrl_view_visible">0</integer> + <integer name="show_password_duration">200</integer> + <plurals description="Plural form content description for number of new notifications [CHAR_LIMIT=NONE]" name="mtrl_badge_content_description"> + <item quantity="one"><ns2:g id="count">%d</ns2:g> new notification</item> + <item quantity="other"><ns2:g id="count">%d</ns2:g> new notifications</item> + </plurals> + <string name="appbar_scrolling_view_behavior" translatable="false">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string> + <string name="bottom_sheet_behavior" translatable="false">com.google.android.material.bottomsheet.BottomSheetBehavior</string> + <string description="A description of an accessibility action to collapse the bottom sheet [CHAR LIMIT=NONE]" name="bottomsheet_action_collapse">Collapse the bottom sheet</string> + <string description="A description of an accessibility action to expand the bottom sheet [CHAR LIMIT=NONE]" name="bottomsheet_action_expand">Expand the bottom sheet</string> + <string description="A description of an action that a user of an accessibility service can perform to expand a bottomsheet halfway to its full height. [CHAR LIMIT=25]" name="bottomsheet_action_expand_halfway">Expand halfway</string> + <string description="An accessibility feedback when the bottom sheet drag handle is clicked [CHAR LIMIT=NONE]" name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string> + <string description="The content description of bottom sheet drag handles [CHAR LIMIT=NONE]" name="bottomsheet_drag_handle_content_description">Drag handle</string> + <string name="character_counter_content_description">Characters entered %1$d of %2$d</string> + <string name="character_counter_overflowed_content_description">Character limit exceeded %1$d of %2$d</string> + <string name="character_counter_pattern" translatable="false">%1$d/%2$d</string> + <string name="clear_text_end_icon_content_description">Clear text</string> + <string description="Screen reader announcement for when a checkbox is on error. [CHAR LIMIT=NONE]" name="error_a11y_label"> + Error: invalid + </string> + <string name="error_icon_content_description">Error</string> + <string name="exposed_dropdown_menu_content_description">Show dropdown menu</string> + <string name="fab_transformation_scrim_behavior" translatable="false">com.google.android.material.transformation.FabTransformationScrimBehavior</string> + <string name="fab_transformation_sheet_behavior" translatable="false">com.google.android.material.transformation.FabTransformationSheetBehavior</string> + <string name="hide_bottom_view_on_scroll_behavior" translatable="false">com.google.android.material.behavior.HideBottomViewOnScrollBehavior</string> + <string description="Content description for an icon that appears in the title area of a dialog" name="icon_content_description">Dialog Icon</string> + <string name="item_view_role_description">Tab</string> + <string name="m3_ref_typeface_brand_medium" translatable="false">sans-serif-medium</string> + <string name="m3_ref_typeface_brand_regular" translatable="false">sans-serif</string> + <string name="m3_ref_typeface_plain_medium" translatable="false">sans-serif-medium</string> + <string name="m3_ref_typeface_plain_regular" translatable="false">sans-serif</string> + <string name="m3_sys_motion_easing_emphasized" translatable="false">path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)</string> + <string name="m3_sys_motion_easing_emphasized_accelerate" translatable="false">cubic-bezier(0.3, 0, 0.8, 0.2)</string> + <string name="m3_sys_motion_easing_emphasized_decelerate" translatable="false">cubic-bezier(0.1, 0.7, 0.1, 1)</string> + <string name="m3_sys_motion_easing_emphasized_path_data" translatable="false">M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1</string> + <string name="m3_sys_motion_easing_legacy" translatable="false">cubic-bezier(0.4, 0, 0.2, 1)</string> + <string name="m3_sys_motion_easing_legacy_accelerate" translatable="false">cubic-bezier(0.4, 0, 1, 1)</string> + <string name="m3_sys_motion_easing_legacy_decelerate" translatable="false">cubic-bezier(0, 0, 0.2, 1)</string> + <string name="m3_sys_motion_easing_linear" translatable="false">cubic-bezier(0, 0, 1, 1)</string> + <string name="m3_sys_motion_easing_standard" translatable="false">cubic-bezier(0.2, 0, 0, 1)</string> + <string name="m3_sys_motion_easing_standard_accelerate" translatable="false">cubic-bezier(0.3, 0, 1, 1)</string> + <string name="m3_sys_motion_easing_standard_decelerate" translatable="false">cubic-bezier(0, 0, 0, 1)</string> + <string name="material_clock_display_divider" translatable="false">:</string> + <string description="Description for the toggle to choose between AM and PM [CHAR_LIMIT=NONE]" name="material_clock_toggle_content_description">Select AM or PM</string> + <string description="Spoken suffix for an hour in the 24-hour clock [CHAR_LIMIT=10]" name="material_hour_24h_suffix"><ns2:g id="number">%1$s</ns2:g> hours</string> + <string description="Description for button to switch to select the hour [CHAR_LIMIT=NONE]" name="material_hour_selection">Select hour</string> + <string description="Spoken suffix for an hour in the clock [CHAR_LIMIT=10]" name="material_hour_suffix"><ns2:g id="number">%1$s</ns2:g> o\'clock</string> + <string description="Description for button to switch to select the minute [CHAR_LIMIT=NONE]" name="material_minute_selection">Select minutes</string> + <string description="Spoken suffix for an amount of minutes in the clock [CHAR_LIMIT=16]" name="material_minute_suffix"><ns2:g id="number">%1$s</ns2:g> minutes</string> + <string name="material_motion_easing_accelerated" translatable="false">cubic-bezier(0.4, 0.0, 1.0, 1.0)</string> + <string name="material_motion_easing_decelerated" translatable="false">cubic-bezier(0.0, 0.0, 0.2, 1.0)</string> + <string name="material_motion_easing_emphasized" translatable="false">path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)</string> + <string name="material_motion_easing_linear" translatable="false">cubic-bezier(0.0, 0.0, 1.0, 1.0)</string> + <string name="material_motion_easing_standard" translatable="false">cubic-bezier(0.4, 0.0, 0.2, 1.0)</string> + <string description="Content description for the thumb with the maximum value in a Range slider. [CHAR_LIMIT=NONE]" name="material_slider_range_end">Range end</string> + <string description="Content description for the thumb with the minimum value in a Range slider. [CHAR_LIMIT=NONE]" name="material_slider_range_start">Range start</string> + <string description="Content description for the thumb with the value in a regular slider. [CHAR_LIMIT=NONE]" name="material_slider_value">Value</string> + <string description="Suffix for time in 12-hour standard, before noon. [CHAR_LIMIT=2]" name="material_timepicker_am">AM</string> + <string name="material_timepicker_clock_mode_description">Switch to clock mode for the time input.</string> + <string description="The label for a text field to select the hour on the time [CHAR_LIMIT=24]" name="material_timepicker_hour">Hour</string> + <string description="The label for a text field to select the minute on the hour [CHAR_LIMIT=24]" name="material_timepicker_minute">Minute</string> + <string description="Suffix for time in 12-hour standard, after noon. [CHAR_LIMIT=2]" name="material_timepicker_pm">PM</string> + <string description="Title for the dialog with a time picker. [CHAR_LIMIT=32]" name="material_timepicker_select_time">Select time</string> + <string name="material_timepicker_text_input_mode_description">Switch to text input mode for the time input.</string> + <string description="Content description for new notification (no number count) [CHAR_LIMIT=NONE]" name="mtrl_badge_numberless_content_description">New notification</string> + <string name="mtrl_checkbox_button_icon_path_checked" translatable="false">M14,18.2 11.4,15.6 10,17 14,21 22,13 20.6,11.6z</string> + <string name="mtrl_checkbox_button_icon_path_group_name" translatable="false">icon</string> + <string name="mtrl_checkbox_button_icon_path_indeterminate" translatable="false">M13.4,15 11,15 11,17 13.4,17 21,17 21,15z</string> + <string name="mtrl_checkbox_button_icon_path_name" translatable="false">icon path</string> + <string name="mtrl_checkbox_button_path_checked" translatable="false">M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z</string> + <string name="mtrl_checkbox_button_path_group_name" translatable="false">button</string> + <string name="mtrl_checkbox_button_path_name" translatable="false">button path</string> + <string name="mtrl_checkbox_button_path_unchecked" translatable="false">M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z M23,23H9V9h14V23z</string> + <string description="Description for when checkbox is checked. [CHAR LIMIT=32]" name="mtrl_checkbox_state_description_checked"> + Checked + </string> + <string description="Description for when checkbox is indeterminate. [CHAR LIMIT=32]" name="mtrl_checkbox_state_description_indeterminate"> + Partially checked + </string> + <string description="Description for when checkbox is unchecked. [CHAR LIMIT=32]" name="mtrl_checkbox_state_description_unchecked"> + Not checked + </string> + <string description="Content description for a close icon that lets the user remove content from the screen" name="mtrl_chip_close_icon_content_description">Remove %1$s</string> + <string description="Plural form content description for when the number of new notifications exceeds a maximum count[CHAR_LIMIT=NONE]" name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">More than <ns2:g example="999" id="maximum number">%1$d</ns2:g> new notifications</string> + <string name="mtrl_exceed_max_badge_number_suffix" translatable="false"><ns2:g example="999" id="maximum number">%1$d</ns2:g><ns2:g example="+" id="suffix">%2$s</ns2:g></string> + <string description="a11y string to indicate this button moves the calendar to the next month [CHAR_LIMIT=NONE]" name="mtrl_picker_a11y_next_month">Change to next month</string> + <string description="a11y string to indicate this button moves the calendar to the previous month [CHAR_LIMIT=NONE]" name="mtrl_picker_a11y_prev_month">Change to previous month</string> + <string description="a11y string read on range selection change to indicate the new selection [CHAR_LIMIT=NONE]" name="mtrl_picker_announce_current_range_selection">Start date selection: %1$s – End date selection: %2$s</string> + <string description="a11y string read on selection change to indicate the new selection [CHAR_LIMIT=NONE]" name="mtrl_picker_announce_current_selection">Current selection: %1$s</string> + <string description="a11y string read on selection change to indicate an empty selection [CHAR_LIMIT=NONE]" name="mtrl_picker_announce_current_selection_none">none</string> + <string description="Button text to indicate that the widget will ignore the user's selection [CHAR_LIMIT=16]" name="mtrl_picker_cancel">Cancel</string> + <string description="Button text to indicate that the widget will save the user's selection [CHAR_LIMIT=16]" name="mtrl_picker_confirm">OK</string> + <string description="A single date [CHAR_LIMIT=60]" name="mtrl_picker_date_header_selected">%1$s</string> + <string description="Indicates that the user must take the action of picking a date within the calendar [CHAR_LIMIT=60]" name="mtrl_picker_date_header_title">Select Date</string> + <string description="Placeholder for a single date [CHAR_LIMIT=60]" name="mtrl_picker_date_header_unselected">Selected date</string> + <string description="a11y string to indicate this is a header for a column of days for one day of the week (e.g., Monday) [CHAR_LIMIT=NONE]" name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string> + <string description="a11y string that informs the user that the focused day is the end of a range [CHAR_LIMIT=NONE]" name="mtrl_picker_end_date_description">End date %1$s</string> + <string description="Indicates that the user entered date cannot be parsed because its format is wrong. [CHAR_LIMIT=36]" name="mtrl_picker_invalid_format">Invalid format.</string> + <string description="Tells a user what an example valid entry looks like. [CHAR_LIMIT=18]" name="mtrl_picker_invalid_format_example">Example: %1$s</string> + <string description="Tells a user what format is expected for their date entry. [CHAR_LIMIT=18]" name="mtrl_picker_invalid_format_use">Use: %1$s</string> + <string description="Notifies the user that the two entered dates do not represent a valid range of dates [CHAR_LIMIT=36]" name="mtrl_picker_invalid_range">Invalid range.</string> + <string description="a11y string that informs the user that tapping this button will switch the current year [CHAR_LIMIT=NONE]" name="mtrl_picker_navigate_to_current_year_description">Navigate to current year %1$d</string> + <string description="a11y string that informs the user that tapping this button will switch the year [CHAR_LIMIT=NONE]" name="mtrl_picker_navigate_to_year_description">Navigate to year %1$d</string> + <string description="Notifies the user that the entered date is outside the allowed range [CHAR_LIMIT=36]" name="mtrl_picker_out_of_range">Out of range: %1$s</string> + <string description="Placeholders for two dates separated by a dash representing a range where end date has been selected [CHAR_LIMIT=60]" name="mtrl_picker_range_header_only_end_selected">Start date – %1$s</string> + <string description="Placeholders for two dates separated by a dash representing a range where start date has been selected [CHAR_LIMIT=60]" name="mtrl_picker_range_header_only_start_selected">%1$s – End date</string> + <string description="Two dates separated by a dash representing a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_selected">%1$s – %2$s</string> + <string description="Indicates that the user must take the action of picking dates within the calendar to form a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_title">Select Range</string> + <string description="Placeholders for two dates separated by a dash representing a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_unselected">Start date – End date</string> + <string description="Confirms the selection [CHAR_LIMIT=12]" name="mtrl_picker_save">Save</string> + <string description="a11y string that informs the user that the focused day is the start of a range [CHAR_LIMIT=NONE]" name="mtrl_picker_start_date_description">Start date %1$s</string> + <string description="Label for a single date selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_hint">Date</string> + <string description="Label for the end date in a range selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_range_end_hint">End date</string> + <string description="Label for the start date in a range selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_range_start_hint">Start date</string> + <string description="A 1 character abbreviation for day. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_day_abbr">d</string> + <string description="A 1 character abbreviation for month. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_month_abbr">m</string> + <string description="A 1 character abbreviation for year. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_year_abbr">y</string> + <string description="a11y string that informs the user that the focused day is today [CHAR_LIMIT=NONE]" name="mtrl_picker_today_description">Today %1$s</string> + <string description="a11y string to indicate this button changes the input mode to a calendar [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string> + <string description="a11y string to indicate this button switches the user to choosing a day [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_day_selection">Tap to switch to Calendar view</string> + <string description="a11y string to indicate this button changes the input mode to a text field [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string> + <string description="a11y string to indicate this button switches the user to choosing a year [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_year_selection">Tap to switch to year view</string> + <string name="mtrl_switch_thumb_group_name" translatable="false">circle_group</string> + <string name="mtrl_switch_thumb_path_checked" translatable="false">M4,16 A12,12 0 0,1 16,4 H16 A12,12 0 0,1 16,28 H16 A12,12 0 0,1 4,16</string> + <string name="mtrl_switch_thumb_path_morphing" translatable="false">M0,16 A11,11 0 0,1 11,5 H21 A11,11 0 0,1 21,27 H11 A11,11 0 0,1 0,16</string> + <string name="mtrl_switch_thumb_path_name" translatable="false">circle</string> + <string name="mtrl_switch_thumb_path_pressed" translatable="false">M2,16 A14,14 0 0,1 16,2 H16 A14,14 0 0,1 16,30 H16 A14,14 0 0,1 2,16</string> + <string name="mtrl_switch_thumb_path_unchecked" translatable="false">M8,16 A8,8 0 0,1 16,8 H16 A8,8 0 0,1 16,24 H16 A8,8 0 0,1 8,16</string> + <string name="mtrl_switch_track_decoration_path" translatable="false">M1,16 A15,15 0 0,1 16,1 H36 A15,15 0 0,1 36,31 H16 A15,15 0 0,1 1,16</string> + <string name="mtrl_switch_track_path" translatable="false">M0,16 A16,16 0 0,1 16,0 H36 A16,16 0 0,1 36,32 H16 A16,16 0 0,1 0,16</string> + <string description="Button text to indicate that the widget will ignore the user's selection [CHAR_LIMIT=16]" name="mtrl_timepicker_cancel">Cancel</string> + <string description="Button text to indicate that the widget will save the user's selection [CHAR_LIMIT=16]" name="mtrl_timepicker_confirm">OK</string> + <string name="password_toggle_content_description">Show password</string> + <string name="path_password_eye" translatable="false">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string> + <string name="path_password_eye_mask_strike_through" translatable="false">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string> + <string name="path_password_eye_mask_visible" translatable="false">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string> + <string name="path_password_strike_through" translatable="false">M3.27,4.27 L19.74,20.74</string> + <string name="searchbar_scrolling_view_behavior" translatable="false"> + com.google.android.material.search.SearchBar$ScrollingViewBehavior + </string> + <string description="Content description for the X button to clear text [CHAR_LIMIT=NONE]" name="searchview_clear_text_content_description">Clear text</string> + <string description="Content description for the navigation button to return to the previous screen [CHAR_LIMIT=NONE]" name="searchview_navigation_content_description">Back</string> + <string description="Title of the side sheet's accessibility pane that is spoken by TalkBack when the side sheet appears on screen. [CHAR_LIMIT=NONE]" name="side_sheet_accessibility_pane_title">Side Sheet</string> + <string name="side_sheet_behavior" translatable="false">com.google.android.material.sidesheet.SideSheetBehavior</string> + <style name="Animation.Design.BottomSheetDialog" parent="Animation.AppCompat.Dialog"> + <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slide_in</item> + <item name="android:windowExitAnimation">@anim/design_bottom_sheet_slide_out</item> + </style> + <style name="Animation.Material3.BottomSheetDialog" parent="Animation.AppCompat.Dialog"> + <item name="android:windowEnterAnimation">@anim/m3_bottom_sheet_slide_in</item> + <item name="android:windowExitAnimation">@anim/m3_bottom_sheet_slide_out</item> + </style> + <style name="Animation.Material3.SideSheetDialog" parent="Animation.AppCompat.Dialog"> + <item name="android:windowEnterAnimation">@anim/m3_side_sheet_slide_in</item> + <item name="android:windowExitAnimation">@anim/m3_side_sheet_slide_out</item> + </style> + <style name="Animation.MaterialComponents.BottomSheetDialog" parent="Animation.AppCompat.Dialog"> + <item name="android:windowEnterAnimation">@anim/mtrl_bottom_sheet_slide_in</item> + <item name="android:windowExitAnimation">@anim/mtrl_bottom_sheet_slide_out</item> + </style> + <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Icon" parent="android:Widget"> + <item name="android:layout_width">32dip</item> + <item name="android:layout_height">32dip</item> + <item name="android:scaleType">fitCenter</item> + <item name="android:src">@null</item> + <item name="android:contentDescription">@null</item> + <item name="android:importantForAccessibility" ns1:targetApi="jelly_bean">no</item> + </style> + <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Panel" parent="android:Widget"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:paddingLeft">?attr/dialogPreferredPadding</item> + <item name="android:paddingRight">?attr/dialogPreferredPadding</item> + <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item> + </style> + <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Text" parent="RtlOverlay.DialogWindowTitle.AppCompat"> + <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item> + <item name="android:textColor">@color/material_on_surface_emphasis_high_type</item> + <item name="android:layout_width">wrap_content</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:ellipsize">end</item> + <item name="android:singleLine">true</item> + </style> + <style name="Base.TextAppearance.Material3.Search" parent=""> + <item name="android:textSize">@dimen/m3_searchbar_text_size</item> + </style> + <style name="Base.TextAppearance.MaterialComponents.Badge" parent="TextAppearance.AppCompat"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">bold</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">@dimen/mtrl_badge_text_size</item> + <item name="android:letterSpacing">0.0892857143</item> + <item name="android:textColor">?attr/colorOnError</item> + </style> + <style name="Base.TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">bold</item> + <item name="android:textAllCaps">true</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.0892857143</item> + </style> + <style name="Base.TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">bold</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">20sp</item> + <item name="android:letterSpacing">0.0125</item> + </style> + <style name="Base.TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead"> + + <item name="fontFamily">sans-serif-medium</item> + <item name="android:fontFamily">sans-serif-medium</item> + <item name="android:textStyle">bold</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.00714285714</item> + </style> + <style name="Base.Theme.Material3.Dark" parent="Base.V14.Theme.Material3.Dark"/> + <style name="Base.Theme.Material3.Dark.BottomSheetDialog" parent="Base.V14.Theme.Material3.Dark.BottomSheetDialog"/> + <style name="Base.Theme.Material3.Dark.Dialog" parent="Base.V14.Theme.Material3.Dark.Dialog"/> + <style name="Base.Theme.Material3.Dark.SideSheetDialog" parent="Base.V14.Theme.Material3.Dark.SideSheetDialog"/> + <style name="Base.Theme.Material3.Light" parent="Base.V14.Theme.Material3.Light"/> + <style name="Base.Theme.Material3.Light.BottomSheetDialog" parent="Base.V14.Theme.Material3.Light.BottomSheetDialog"/> + <style name="Base.Theme.Material3.Light.Dialog" parent="Base.V14.Theme.Material3.Light.Dialog"/> + <style name="Base.Theme.Material3.Light.SideSheetDialog" parent="Base.V14.Theme.Material3.Light.SideSheetDialog"/> + <style name="Base.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"/> + <style name="Base.Theme.MaterialComponents.Bridge" parent="Base.V14.Theme.MaterialComponents.Bridge"/> + <style name="Base.Theme.MaterialComponents.CompactMenu" parent=""> + <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item> + <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item> + <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item> + </style> + <style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"/> + <style name="Base.Theme.MaterialComponents.Dialog.Alert"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.Dialog.Bridge" parent="Base.V14.Theme.MaterialComponents.Dialog.Bridge"/> + <style name="Base.Theme.MaterialComponents.Dialog.FixedSize"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.Dialog.MinWidth"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Theme.MaterialComponents"/> + <style name="Base.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"/> + <style name="Base.Theme.MaterialComponents.Light.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"/> + <style name="Base.Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light"> + <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item> + + + <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> + + <item name="colorPrimaryDark">@color/primary_dark_material_dark</item> + <item name="colorPrimary">@color/primary_material_dark</item> + </style> + <style name="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/> + <style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"/> + <style name="Base.Theme.MaterialComponents.Light.Dialog.Alert"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.Light.Dialog.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge"/> + <style name="Base.Theme.MaterialComponents.Light.Dialog.FixedSize"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Theme.MaterialComponents.Light"/> + <style name="Base.ThemeOverlay.Material3.AutoCompleteTextView" parent="ThemeOverlay.MaterialComponents.AutoCompleteTextView"> + <item name="colorControlActivated">@macro/m3_comp_outlined_autocomplete_text_field_caret_color</item> + </style> + <style name="Base.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.V14.ThemeOverlay.Material3.BottomSheetDialog"/> + <style name="Base.ThemeOverlay.Material3.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"> + <item name="materialButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item> + <item name="android:windowAnimationStyle">@style/MaterialAlertDialog.Material3.Animation</item> + </style> + <style name="Base.ThemeOverlay.Material3.SideSheetDialog" parent="Base.V14.ThemeOverlay.Material3.SideSheetDialog"/> + <style name="Base.ThemeOverlay.Material3.TextInputEditText" parent="ThemeOverlay.MaterialComponents.TextInputEditText"> + <item name="colorControlActivated">@macro/m3_comp_outlined_text_field_caret_color</item> + </style> + <style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"/> + <style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert"/> + <style name="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog"/> + <style name="Base.V14.Theme.Material3.Dark" parent="Theme.MaterialComponents"> + <item name="isMaterial3Theme">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dark_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dark_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dark_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dark_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dark_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dark_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dark_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dark_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dark_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dark_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dark_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dark_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dark_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dark_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dark_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dark_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dark_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dark_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dark_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dark_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dark_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dark_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dark_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_dark_outline_variant</item> + <item name="colorError">@color/m3_sys_color_dark_error</item> + <item name="colorOnError">@color/m3_sys_color_dark_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item> + + + <item name="android:windowBackground">?android:attr/colorBackground</item> + + + <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item> + + + <item name="colorPrimaryDark">?attr/colorPrimary</item> + <item name="colorPrimaryVariant">?attr/colorPrimary</item> + <item name="colorSecondaryVariant">?attr/colorSecondary</item> + + + <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item> + <item name="bottomSheetDialogTheme">@style/ThemeOverlay.Material3.BottomSheetDialog</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item> + <item name="sideSheetDialogTheme">@style/ThemeOverlay.Material3.SideSheetDialog</item> + + + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item> + + + <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item> + <item name="badgeStyle">@style/Widget.Material3.Badge</item> + <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item> + <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item> + <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item> + <item name="bottomSheetDragHandleStyle">@style/Widget.Material3.BottomSheet.DragHandle</item> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item> + <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item> + <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item> + <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item> + <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item> + <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item> + <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item> + <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item> + <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item> + <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item> + <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item> + <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item> + <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item> + <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item> + <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item> + <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item> + <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item> + <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item> + <item name="floatingActionButtonSmallStyle">?attr/floatingActionButtonSmallPrimaryStyle</item> + <item name="floatingActionButtonSmallPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Primary</item> + <item name="floatingActionButtonSmallSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Secondary</item> + <item name="floatingActionButtonSmallTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Tertiary</item> + <item name="floatingActionButtonSmallSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Small.Surface</item> + <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item> + <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item> + <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item> + <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item> + <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item> + <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item> + <item name="materialIconButtonStyle">@style/Widget.Material3.Button.IconButton</item> + <item name="materialIconButtonFilledStyle">@style/Widget.Material3.Button.IconButton.Filled</item> + <item name="materialIconButtonFilledTonalStyle">@style/Widget.Material3.Button.IconButton.Filled.Tonal</item> + <item name="materialIconButtonOutlinedStyle">@style/Widget.Material3.Button.IconButton.Outlined</item> + <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item> + <item name="materialButtonStyle">@style/Widget.Material3.Button</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.Material3.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item> + <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item> + <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item> + <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item> + <item name="materialSwitchStyle">@style/Widget.Material3.CompoundButton.MaterialSwitch</item> + <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item> + <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item> + <item name="materialSearchBarStyle">@style/Widget.Material3.SearchBar</item> + <item name="materialSearchViewStyle">@style/Widget.Material3.SearchView</item> + <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item> + <item name="sliderStyle">@style/Widget.Material3.Slider</item> + <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.Material3.TabLayout</item> + <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item> + <item name="textInputStyle">?attr/textInputOutlinedStyle</item> + <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item> + <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item> + + + <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item> + <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item> + + + <item name="actionBarPopupTheme">@style/ThemeOverlay.Material3.Dark</item> + <item name="actionBarSize">@dimen/m3_appbar_size_compact</item> + <item name="actionBarStyle">@style/Widget.Material3.ActionBar.Solid</item> + <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item> + + + <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item> + <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item> + <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item> + <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item> + + + <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item> + <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item> + + + <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item> + <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item> + <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item> + <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item> + <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item> + <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item> + <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item> + <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item> + <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item> + <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item> + <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item> + <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item> + <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item> + <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item> + <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item> + + + <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item> + <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item> + + + <item name="shapeCornerFamily">@integer/m3_sys_shape_corner_full_corner_family</item> + <item name="shapeAppearanceCornerExtraSmall">@style/ShapeAppearance.Material3.Corner.ExtraSmall</item> + <item name="shapeAppearanceCornerSmall">@style/ShapeAppearance.Material3.Corner.Small</item> + <item name="shapeAppearanceCornerMedium">@style/ShapeAppearance.Material3.Corner.Medium</item> + <item name="shapeAppearanceCornerLarge">@style/ShapeAppearance.Material3.Corner.Large</item> + <item name="shapeAppearanceCornerExtraLarge">@style/ShapeAppearance.Material3.Corner.ExtraLarge</item> + + + <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item> + <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item> + <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item> + + + <item name="motionEasingStandardInterpolator">@interpolator/m3_sys_motion_easing_standard</item> + <item name="motionEasingStandardDecelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_decelerate</item> + <item name="motionEasingStandardAccelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_accelerate</item> + <item name="motionEasingEmphasizedInterpolator">@interpolator/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingEmphasizedDecelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_decelerate</item> + <item name="motionEasingEmphasizedAccelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_accelerate</item> + <item name="motionEasingLinearInterpolator">@interpolator/m3_sys_motion_easing_linear</item> + <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_legacy_decelerate</item> + <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_legacy_accelerate</item> + <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item> + <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item> + <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item> + <item name="motionDurationShort3">@integer/m3_sys_motion_duration_short3</item> + <item name="motionDurationShort4">@integer/m3_sys_motion_duration_short4</item> + <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item> + <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item> + <item name="motionDurationMedium3">@integer/m3_sys_motion_duration_medium3</item> + <item name="motionDurationMedium4">@integer/m3_sys_motion_duration_medium4</item> + <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item> + <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item> + <item name="motionDurationLong3">@integer/m3_sys_motion_duration_long3</item> + <item name="motionDurationLong4">@integer/m3_sys_motion_duration_long4</item> + <item name="motionDurationExtraLong1">@integer/m3_sys_motion_duration_extra_long1</item> + <item name="motionDurationExtraLong2">@integer/m3_sys_motion_duration_extra_long2</item> + <item name="motionDurationExtraLong3">@integer/m3_sys_motion_duration_extra_long3</item> + <item name="motionDurationExtraLong4">@integer/m3_sys_motion_duration_extra_long4</item> + <item name="motionPath">@integer/m3_sys_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">@macro/m3_sys_color_dark_surface_tint</item> + + + <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Dark</item> + </style> + <style name="Base.V14.Theme.Material3.Dark.BottomSheetDialog" parent="Theme.Material3.Dark.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowSoftInputMode">adjustResize</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item> + </style> + <style name="Base.V14.Theme.Material3.Dark.Dialog" parent="Theme.MaterialComponents.Dialog"> + <item name="isMaterial3Theme">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_dark_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_dark_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_dark_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_dark_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_dark_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_dark_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_dark_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_dark_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_dark_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_dark_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_dark_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_dark_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_dark_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_dark_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dark_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dark_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dark_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dark_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dark_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dark_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dark_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dark_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dark_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_dark_outline_variant</item> + <item name="colorError">@color/m3_sys_color_dark_error</item> + <item name="colorOnError">@color/m3_sys_color_dark_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item> + + + <item name="colorPrimaryDark">?attr/colorPrimary</item> + <item name="colorPrimaryVariant">?attr/colorPrimary</item> + <item name="colorSecondaryVariant">?attr/colorSecondary</item> + + + <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item> + <item name="badgeStyle">@style/Widget.Material3.Badge</item> + <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item> + <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item> + <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item> + <item name="bottomSheetDragHandleStyle">@style/Widget.Material3.BottomSheet.DragHandle</item> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item> + <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item> + <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item> + <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item> + <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item> + <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item> + <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item> + <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item> + <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item> + <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item> + <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item> + <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item> + <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item> + <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item> + <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item> + <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item> + <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item> + <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item> + <item name="floatingActionButtonSmallStyle">?attr/floatingActionButtonSmallPrimaryStyle</item> + <item name="floatingActionButtonSmallPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Primary</item> + <item name="floatingActionButtonSmallSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Secondary</item> + <item name="floatingActionButtonSmallTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Tertiary</item> + <item name="floatingActionButtonSmallSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Small.Surface</item> + <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item> + <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item> + <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item> + <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item> + <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item> + <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item> + <item name="materialIconButtonStyle">@style/Widget.Material3.Button.IconButton</item> + <item name="materialIconButtonFilledStyle">@style/Widget.Material3.Button.IconButton.Filled</item> + <item name="materialIconButtonFilledTonalStyle">@style/Widget.Material3.Button.IconButton.Filled.Tonal</item> + <item name="materialIconButtonOutlinedStyle">@style/Widget.Material3.Button.IconButton.Outlined</item> + <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item> + <item name="materialButtonStyle">@style/Widget.Material3.Button</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.Material3.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item> + <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item> + <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item> + <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item> + <item name="materialSwitchStyle">@style/Widget.Material3.CompoundButton.MaterialSwitch</item> + <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item> + <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item> + <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item> + <item name="materialSearchBarStyle">@style/Widget.Material3.SearchBar</item> + <item name="materialSearchViewStyle">@style/Widget.Material3.SearchView</item> + <item name="sliderStyle">@style/Widget.Material3.Slider</item> + <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.Material3.TabLayout</item> + <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item> + <item name="textInputStyle">?attr/textInputOutlinedStyle</item> + <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item> + <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item> + + + <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item> + <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item> + + + <item name="actionBarPopupTheme">@style/ThemeOverlay.Material3.Dark</item> + <item name="actionBarSize">@dimen/m3_appbar_size_compact</item> + <item name="actionBarStyle">@style/Widget.Material3.ActionBar.Solid</item> + <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item> + + + <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item> + <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item> + <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item> + <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item> + + + <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item> + <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item> + + + <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item> + <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item> + <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item> + <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item> + <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item> + <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item> + <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item> + <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item> + <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item> + <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item> + <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item> + <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item> + <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item> + <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item> + <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item> + + + <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item> + <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item> + + + + + <item name="shapeCornerFamily">@integer/m3_sys_shape_corner_full_corner_family</item> + <item name="shapeAppearanceCornerExtraSmall">@style/ShapeAppearance.Material3.Corner.ExtraSmall</item> + <item name="shapeAppearanceCornerSmall">@style/ShapeAppearance.Material3.Corner.Small</item> + <item name="shapeAppearanceCornerMedium">@style/ShapeAppearance.Material3.Corner.Medium</item> + <item name="shapeAppearanceCornerLarge">@style/ShapeAppearance.Material3.Corner.Large</item> + <item name="shapeAppearanceCornerExtraLarge">@style/ShapeAppearance.Material3.Corner.ExtraLarge</item> + + + <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item> + <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item> + <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item> + + + <item name="motionEasingStandardInterpolator">@interpolator/m3_sys_motion_easing_standard</item> + <item name="motionEasingStandardDecelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_decelerate</item> + <item name="motionEasingStandardAccelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_accelerate</item> + <item name="motionEasingEmphasizedInterpolator">@interpolator/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingEmphasizedDecelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_decelerate</item> + <item name="motionEasingEmphasizedAccelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_accelerate</item> + <item name="motionEasingLinearInterpolator">@interpolator/m3_sys_motion_easing_linear</item> + <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_legacy_decelerate</item> + <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_legacy_accelerate</item> + <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item> + <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item> + <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item> + <item name="motionDurationShort3">@integer/m3_sys_motion_duration_short3</item> + <item name="motionDurationShort4">@integer/m3_sys_motion_duration_short4</item> + <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item> + <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item> + <item name="motionDurationMedium3">@integer/m3_sys_motion_duration_medium3</item> + <item name="motionDurationMedium4">@integer/m3_sys_motion_duration_medium4</item> + <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item> + <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item> + <item name="motionDurationLong3">@integer/m3_sys_motion_duration_long3</item> + <item name="motionDurationLong4">@integer/m3_sys_motion_duration_long4</item> + <item name="motionDurationExtraLong1">@integer/m3_sys_motion_duration_extra_long1</item> + <item name="motionDurationExtraLong2">@integer/m3_sys_motion_duration_extra_long2</item> + <item name="motionDurationExtraLong3">@integer/m3_sys_motion_duration_extra_long3</item> + <item name="motionDurationExtraLong4">@integer/m3_sys_motion_duration_extra_long4</item> + <item name="motionPath">@integer/m3_sys_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">@macro/m3_sys_color_dark_surface_tint</item> + + + <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item> + + + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item> + + + <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Dark</item> + </style> + <style name="Base.V14.Theme.Material3.Dark.SideSheetDialog" parent="Theme.Material3.Dark.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.SideSheetDialog</item> + <item name="sideSheetModalStyle">@style/Widget.Material3.SideSheet.Modal</item> + </style> + <style name="Base.V14.Theme.Material3.Light" parent="Theme.MaterialComponents.Light"> + <item name="isMaterial3Theme">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_light_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_light_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_light_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_light_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_light_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_light_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_light_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_light_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_light_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_light_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_light_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_light_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_light_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_light_background</item> + <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item> + <item name="colorSurface">@color/m3_sys_color_light_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_light_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_light_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_light_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_light_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_light_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_light_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_light_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_light_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_light_outline_variant</item> + <item name="colorError">@color/m3_sys_color_light_error</item> + <item name="colorOnError">@color/m3_sys_color_light_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item> + + + <item name="android:windowBackground">?android:attr/colorBackground</item> + + + <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item> + + + <item name="colorPrimaryDark">?attr/colorPrimary</item> + <item name="colorPrimaryVariant">?attr/colorPrimary</item> + <item name="colorSecondaryVariant">?attr/colorSecondary</item> + + + <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item> + <item name="bottomSheetDialogTheme">@style/ThemeOverlay.Material3.BottomSheetDialog</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item> + <item name="sideSheetDialogTheme">@style/ThemeOverlay.Material3.SideSheetDialog</item> + + + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item> + + + <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item> + <item name="badgeStyle">@style/Widget.Material3.Badge</item> + <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item> + <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item> + <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item> + <item name="bottomSheetDragHandleStyle">@style/Widget.Material3.BottomSheet.DragHandle</item> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item> + <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item> + <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item> + <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item> + <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item> + <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item> + <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item> + <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item> + <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item> + <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item> + <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item> + <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item> + <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item> + <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item> + <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item> + <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item> + <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item> + <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item> + <item name="floatingActionButtonSmallStyle">?attr/floatingActionButtonSmallPrimaryStyle</item> + <item name="floatingActionButtonSmallPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Primary</item> + <item name="floatingActionButtonSmallSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Secondary</item> + <item name="floatingActionButtonSmallTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Tertiary</item> + <item name="floatingActionButtonSmallSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Small.Surface</item> + <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item> + <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item> + <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item> + <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item> + <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item> + <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item> + <item name="materialIconButtonStyle">@style/Widget.Material3.Button.IconButton</item> + <item name="materialIconButtonFilledStyle">@style/Widget.Material3.Button.IconButton.Filled</item> + <item name="materialIconButtonFilledTonalStyle">@style/Widget.Material3.Button.IconButton.Filled.Tonal</item> + <item name="materialIconButtonOutlinedStyle">@style/Widget.Material3.Button.IconButton.Outlined</item> + <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item> + <item name="materialButtonStyle">@style/Widget.Material3.Button</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.Material3.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item> + <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item> + <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item> + <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item> + <item name="materialSwitchStyle">@style/Widget.Material3.CompoundButton.MaterialSwitch</item> + <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item> + <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item> + <item name="materialSearchBarStyle">@style/Widget.Material3.SearchBar</item> + <item name="materialSearchViewStyle">@style/Widget.Material3.SearchView</item> + <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item> + <item name="sliderStyle">@style/Widget.Material3.Slider</item> + <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.Material3.TabLayout</item> + <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item> + <item name="textInputStyle">?attr/textInputOutlinedStyle</item> + <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item> + <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item> + + + <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item> + <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item> + + + <item name="actionBarPopupTheme">@style/ThemeOverlay.Material3.Light</item> + <item name="actionBarSize">@dimen/m3_appbar_size_compact</item> + <item name="actionBarStyle">@style/Widget.Material3.Light.ActionBar.Solid</item> + <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item> + + + <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item> + <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item> + <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item> + <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item> + + + <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item> + <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item> + + + <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item> + <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item> + <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item> + <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item> + <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item> + <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item> + <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item> + <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item> + <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item> + <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item> + <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item> + <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item> + <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item> + <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item> + <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item> + + + <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item> + <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item> + + + <item name="shapeCornerFamily">@integer/m3_sys_shape_corner_full_corner_family</item> + <item name="shapeAppearanceCornerExtraSmall">@style/ShapeAppearance.Material3.Corner.ExtraSmall</item> + <item name="shapeAppearanceCornerSmall">@style/ShapeAppearance.Material3.Corner.Small</item> + <item name="shapeAppearanceCornerMedium">@style/ShapeAppearance.Material3.Corner.Medium</item> + <item name="shapeAppearanceCornerLarge">@style/ShapeAppearance.Material3.Corner.Large</item> + <item name="shapeAppearanceCornerExtraLarge">@style/ShapeAppearance.Material3.Corner.ExtraLarge</item> + + + <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item> + <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item> + <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item> + + + <item name="motionEasingStandardInterpolator">@interpolator/m3_sys_motion_easing_standard</item> + <item name="motionEasingStandardDecelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_decelerate</item> + <item name="motionEasingStandardAccelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_accelerate</item> + <item name="motionEasingEmphasizedInterpolator">@interpolator/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingEmphasizedDecelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_decelerate</item> + <item name="motionEasingEmphasizedAccelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_accelerate</item> + <item name="motionEasingLinearInterpolator">@interpolator/m3_sys_motion_easing_linear</item> + <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_legacy_decelerate</item> + <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_legacy_accelerate</item> + <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item> + <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item> + <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item> + <item name="motionDurationShort3">@integer/m3_sys_motion_duration_short3</item> + <item name="motionDurationShort4">@integer/m3_sys_motion_duration_short4</item> + <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item> + <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item> + <item name="motionDurationMedium3">@integer/m3_sys_motion_duration_medium3</item> + <item name="motionDurationMedium4">@integer/m3_sys_motion_duration_medium4</item> + <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item> + <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item> + <item name="motionDurationLong3">@integer/m3_sys_motion_duration_long3</item> + <item name="motionDurationLong4">@integer/m3_sys_motion_duration_long4</item> + <item name="motionDurationExtraLong1">@integer/m3_sys_motion_duration_extra_long1</item> + <item name="motionDurationExtraLong2">@integer/m3_sys_motion_duration_extra_long2</item> + <item name="motionDurationExtraLong3">@integer/m3_sys_motion_duration_extra_long3</item> + <item name="motionDurationExtraLong4">@integer/m3_sys_motion_duration_extra_long4</item> + <item name="motionPath">@integer/m3_sys_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">@macro/m3_sys_color_light_surface_tint</item> + + + <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Light</item> + </style> + <style name="Base.V14.Theme.Material3.Light.BottomSheetDialog" parent="Theme.Material3.Light.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowSoftInputMode">adjustResize</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item> + </style> + <style name="Base.V14.Theme.Material3.Light.Dialog" parent="Theme.MaterialComponents.Light.Dialog"> + <item name="isMaterial3Theme">true</item> + + + <item name="colorPrimary">@color/m3_sys_color_light_primary</item> + <item name="colorOnPrimary">@color/m3_sys_color_light_on_primary</item> + <item name="colorPrimaryInverse">@color/m3_sys_color_light_inverse_primary</item> + <item name="colorPrimaryContainer">@color/m3_sys_color_light_primary_container</item> + <item name="colorOnPrimaryContainer">@color/m3_sys_color_light_on_primary_container</item> + <item name="colorPrimaryFixed">@color/m3_sys_color_primary_fixed</item> + <item name="colorPrimaryFixedDim">@color/m3_sys_color_primary_fixed_dim</item> + <item name="colorOnPrimaryFixed">@color/m3_sys_color_on_primary_fixed</item> + <item name="colorOnPrimaryFixedVariant">@color/m3_sys_color_on_primary_fixed_variant</item> + <item name="colorSecondary">@color/m3_sys_color_light_secondary</item> + <item name="colorOnSecondary">@color/m3_sys_color_light_on_secondary</item> + <item name="colorSecondaryContainer">@color/m3_sys_color_light_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/m3_sys_color_light_on_secondary_container</item> + <item name="colorSecondaryFixed">@color/m3_sys_color_secondary_fixed</item> + <item name="colorSecondaryFixedDim">@color/m3_sys_color_secondary_fixed_dim</item> + <item name="colorOnSecondaryFixed">@color/m3_sys_color_on_secondary_fixed</item> + <item name="colorOnSecondaryFixedVariant">@color/m3_sys_color_on_secondary_fixed_variant</item> + <item name="colorTertiary">@color/m3_sys_color_light_tertiary</item> + <item name="colorOnTertiary">@color/m3_sys_color_light_on_tertiary</item> + <item name="colorTertiaryContainer">@color/m3_sys_color_light_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/m3_sys_color_light_on_tertiary_container</item> + <item name="colorTertiaryFixed">@color/m3_sys_color_tertiary_fixed</item> + <item name="colorTertiaryFixedDim">@color/m3_sys_color_tertiary_fixed_dim</item> + <item name="colorOnTertiaryFixed">@color/m3_sys_color_on_tertiary_fixed</item> + <item name="colorOnTertiaryFixedVariant">@color/m3_sys_color_on_tertiary_fixed_variant</item> + <item name="android:colorBackground">@color/m3_sys_color_light_background</item> + <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item> + <item name="colorSurface">@color/m3_sys_color_light_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_light_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_light_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_light_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_light_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_light_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_light_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_light_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_light_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_light_outline_variant</item> + <item name="colorError">@color/m3_sys_color_light_error</item> + <item name="colorOnError">@color/m3_sys_color_light_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item> + + + <item name="colorPrimaryDark">?attr/colorPrimary</item> + <item name="colorPrimaryVariant">?attr/colorPrimary</item> + <item name="colorSecondaryVariant">?attr/colorSecondary</item> + + + <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item> + <item name="badgeStyle">@style/Widget.Material3.Badge</item> + <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item> + <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item> + <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item> + <item name="bottomSheetDragHandleStyle">@style/Widget.Material3.BottomSheet.DragHandle</item> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item> + <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item> + <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item> + <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item> + <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item> + <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item> + <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item> + <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item> + <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item> + <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item> + <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item> + <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item> + <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item> + <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item> + <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item> + <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item> + <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item> + <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item> + <item name="floatingActionButtonSmallStyle">?attr/floatingActionButtonSmallPrimaryStyle</item> + <item name="floatingActionButtonSmallPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Primary</item> + <item name="floatingActionButtonSmallSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Secondary</item> + <item name="floatingActionButtonSmallTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Small.Tertiary</item> + <item name="floatingActionButtonSmallSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Small.Surface</item> + <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item> + <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item> + <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item> + <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item> + <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item> + <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item> + <item name="materialIconButtonStyle">@style/Widget.Material3.Button.IconButton</item> + <item name="materialIconButtonFilledStyle">@style/Widget.Material3.Button.IconButton.Filled</item> + <item name="materialIconButtonFilledTonalStyle">@style/Widget.Material3.Button.IconButton.Filled.Tonal</item> + <item name="materialIconButtonOutlinedStyle">@style/Widget.Material3.Button.IconButton.Outlined</item> + <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item> + <item name="materialButtonStyle">@style/Widget.Material3.Button</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.Material3.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item> + <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item> + <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item> + <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item> + <item name="materialSwitchStyle">@style/Widget.Material3.CompoundButton.MaterialSwitch</item> + <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item> + <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item> + <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item> + <item name="materialSearchBarStyle">@style/Widget.Material3.SearchBar</item> + <item name="materialSearchViewStyle">@style/Widget.Material3.SearchView</item> + <item name="sliderStyle">@style/Widget.Material3.Slider</item> + <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.Material3.TabLayout</item> + <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item> + <item name="textInputStyle">?attr/textInputOutlinedStyle</item> + <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item> + <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item> + + + <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item> + <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item> + + + <item name="actionBarPopupTheme">@style/ThemeOverlay.Material3.Light</item> + <item name="actionBarSize">@dimen/m3_appbar_size_compact</item> + <item name="actionBarStyle">@style/Widget.Material3.Light.ActionBar.Solid</item> + <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item> + + + <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item> + <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item> + <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item> + <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item> + + + <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item> + <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item> + + + <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item> + <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item> + <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item> + <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item> + <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item> + <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item> + <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item> + <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item> + <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item> + <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item> + <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item> + <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item> + <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item> + <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item> + <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item> + + + <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item> + <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item> + <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item> + + + + + <item name="shapeCornerFamily">@integer/m3_sys_shape_corner_full_corner_family</item> + <item name="shapeAppearanceCornerExtraSmall">@style/ShapeAppearance.Material3.Corner.ExtraSmall</item> + <item name="shapeAppearanceCornerSmall">@style/ShapeAppearance.Material3.Corner.Small</item> + <item name="shapeAppearanceCornerMedium">@style/ShapeAppearance.Material3.Corner.Medium</item> + <item name="shapeAppearanceCornerLarge">@style/ShapeAppearance.Material3.Corner.Large</item> + <item name="shapeAppearanceCornerExtraLarge">@style/ShapeAppearance.Material3.Corner.ExtraLarge</item> + + + <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item> + <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item> + <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item> + + + <item name="motionEasingStandardInterpolator">@interpolator/m3_sys_motion_easing_standard</item> + <item name="motionEasingStandardDecelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_decelerate</item> + <item name="motionEasingStandardAccelerateInterpolator">@interpolator/m3_sys_motion_easing_standard_accelerate</item> + <item name="motionEasingEmphasizedInterpolator">@interpolator/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingEmphasizedDecelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_decelerate</item> + <item name="motionEasingEmphasizedAccelerateInterpolator">@interpolator/m3_sys_motion_easing_emphasized_accelerate</item> + <item name="motionEasingLinearInterpolator">@interpolator/m3_sys_motion_easing_linear</item> + <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_legacy_decelerate</item> + <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_legacy_accelerate</item> + <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item> + <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item> + <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item> + <item name="motionDurationShort3">@integer/m3_sys_motion_duration_short3</item> + <item name="motionDurationShort4">@integer/m3_sys_motion_duration_short4</item> + <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item> + <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item> + <item name="motionDurationMedium3">@integer/m3_sys_motion_duration_medium3</item> + <item name="motionDurationMedium4">@integer/m3_sys_motion_duration_medium4</item> + <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item> + <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item> + <item name="motionDurationLong3">@integer/m3_sys_motion_duration_long3</item> + <item name="motionDurationLong4">@integer/m3_sys_motion_duration_long4</item> + <item name="motionDurationExtraLong1">@integer/m3_sys_motion_duration_extra_long1</item> + <item name="motionDurationExtraLong2">@integer/m3_sys_motion_duration_extra_long2</item> + <item name="motionDurationExtraLong3">@integer/m3_sys_motion_duration_extra_long3</item> + <item name="motionDurationExtraLong4">@integer/m3_sys_motion_duration_extra_long4</item> + <item name="motionPath">@integer/m3_sys_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">@macro/m3_sys_color_light_surface_tint</item> + + + <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item> + + + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item> + + + <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Light</item> + </style> + <style name="Base.V14.Theme.Material3.Light.SideSheetDialog" parent="Theme.Material3.Light.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.SideSheetDialog</item> + <item name="sideSheetModalStyle">@style/Widget.Material3.SideSheet.Modal</item> + </style> + <style name="Base.V14.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents.Bridge"> + <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item> + + + <item name="colorPrimary">@color/design_dark_default_color_primary</item> + <item name="colorPrimaryDark">@color/design_dark_default_color_primary_dark</item> + <item name="colorAccent">?attr/colorSecondary</item> + + <item name="android:colorBackground">@color/design_dark_default_color_background</item> + <item name="colorError">@color/design_dark_default_color_error</item> + + + <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item> + <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Dark</item> + <item name="actionBarStyle">@style/Widget.MaterialComponents.ActionBar.Surface</item> + <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.ActionBar.Surface</item> + <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item> + <item name="actionModeStyle">@style/Widget.MaterialComponents.ActionMode</item> + + + <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Surface</item> + <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item> + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item> + <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item> + <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item> + <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item> + <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item> + <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item> + <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item> + <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item> + <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item> + + + <item name="bottomSheetDialogTheme">@style/ThemeOverlay.MaterialComponents.BottomSheetDialog</item> + <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item> + <item name="android:datePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item> + <item name="android:timePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item> + + + <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.MaterialComponents.TimePicker</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Bridge" parent="Platform.MaterialComponents"> + <item name="isMaterialTheme">true</item> + + <item name="colorPrimaryVariant">@color/design_dark_default_color_primary_variant</item> + <item name="colorSecondary">@color/design_dark_default_color_secondary</item> + <item name="colorSecondaryVariant">@color/design_dark_default_color_secondary_variant</item> + <item name="colorSurface">@color/design_dark_default_color_surface</item> + <item name="colorPrimarySurface">?attr/colorSurface</item> + <item name="colorOnPrimary">@color/design_dark_default_color_on_primary</item> + <item name="colorOnSecondary">@color/design_dark_default_color_on_secondary</item> + <item name="colorOnBackground">@color/design_dark_default_color_on_background</item> + <item name="colorOnError">@color/design_dark_default_color_on_error</item> + <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item> + <item name="colorOnPrimarySurface">?attr/colorOnSurface</item> + + <item name="scrimBackground">@color/mtrl_scrim_color</item> + <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background_overlay</item> + + <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item> + + + <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item> + <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item> + <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item> + <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item> + <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item> + <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item> + <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item> + <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item> + <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item> + <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item> + <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item> + + + <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item> + <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item> + <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item> + <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item> + <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item> + <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item> + <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item> + <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item> + <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item> + <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item> + <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item> + <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item> + <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item> + + + <item name="shapeAppearanceSmallComponent"> + @style/ShapeAppearance.MaterialComponents.SmallComponent + </item> + <item name="shapeAppearanceMediumComponent"> + @style/ShapeAppearance.MaterialComponents.MediumComponent + </item> + <item name="shapeAppearanceLargeComponent"> + @style/ShapeAppearance.MaterialComponents.LargeComponent + </item> + + + <item name="motionEasingStandard">@string/material_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item> + <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item> + <item name="motionEasingLinear">@string/material_motion_easing_linear</item> + + <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item> + <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item> + <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item> + <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item> + <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item> + <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item> + + <item name="motionPath">@integer/material_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">?attr/colorOnSurface</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog.Bridge"> + <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item> + + <item name="colorPrimary">@color/design_dark_default_color_primary</item> + <item name="colorPrimaryDark">@color/design_dark_default_color_primary_dark</item> + <item name="colorSecondary">@color/design_dark_default_color_secondary</item> + <item name="colorAccent">?attr/colorSecondary</item> + + <item name="android:colorBackground">@color/design_dark_default_color_background</item> + <item name="colorError">@color/design_dark_default_color_error</item> + + + <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item> + <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Dark</item> + <item name="actionBarStyle">@style/Widget.MaterialComponents.ActionBar.Surface</item> + <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.ActionBar.Surface</item> + <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item> + <item name="actionModeStyle">@style/Widget.MaterialComponents.ActionMode</item> + + + <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Surface</item> + <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item> + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item> + <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item> + <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item> + <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item> + <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item> + <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item> + <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item> + <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item> + <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item> + + <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Dialog.Bridge" parent="Platform.MaterialComponents.Dialog"> + <item name="isMaterialTheme">true</item> + + <item name="colorPrimaryVariant">@color/design_dark_default_color_primary_variant</item> + <item name="colorSecondary">@color/design_dark_default_color_secondary</item> + <item name="colorSecondaryVariant">@color/design_dark_default_color_secondary_variant</item> + <item name="colorSurface">@color/design_dark_default_color_surface</item> + <item name="colorPrimarySurface">?attr/colorSurface</item> + <item name="colorOnPrimary">@color/design_dark_default_color_on_primary</item> + <item name="colorOnSecondary">@color/design_dark_default_color_on_secondary</item> + <item name="colorOnBackground">@color/design_dark_default_color_on_background</item> + <item name="colorOnError">@color/design_dark_default_color_on_error</item> + <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item> + <item name="colorOnPrimarySurface">?attr/colorOnSurface</item> + + <item name="scrimBackground">@color/mtrl_scrim_color</item> + <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background_overlay</item> + + <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item> + + + <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item> + <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item> + <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item> + <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item> + <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item> + <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item> + <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item> + <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item> + <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item> + <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item> + <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item> + + + <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item> + <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item> + <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item> + <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item> + <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item> + <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item> + <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item> + <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item> + <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item> + <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item> + <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item> + <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item> + <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item> + + + <item name="shapeAppearanceSmallComponent"> + @style/ShapeAppearance.MaterialComponents.SmallComponent + </item> + <item name="shapeAppearanceMediumComponent"> + @style/ShapeAppearance.MaterialComponents.MediumComponent + </item> + <item name="shapeAppearanceLargeComponent"> + @style/ShapeAppearance.MaterialComponents.LargeComponent + </item> + + + <item name="motionEasingStandard">@string/material_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item> + <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item> + <item name="motionEasingLinear">@string/material_motion_easing_linear</item> + + <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item> + <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item> + <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item> + <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item> + <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item> + <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item> + + <item name="motionPath">@integer/material_motion_path</item> + + + <item name="elevationOverlayEnabled">true</item> + <item name="elevationOverlayColor">?attr/colorOnSurface</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"> + <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item> + + + <item name="colorPrimary">@color/design_default_color_primary</item> + <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item> + <item name="colorAccent">?attr/colorSecondary</item> + + <item name="android:colorBackground">@color/design_default_color_background</item> + <item name="colorError">@color/design_default_color_error</item> + + + <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item> + <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item> + <item name="actionBarStyle">@style/Widget.MaterialComponents.Light.ActionBar.Solid</item> + <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item> + <item name="actionModeStyle">@style/Widget.MaterialComponents.ActionMode</item> + + + <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Primary</item> + <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item> + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item> + <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item> + <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item> + <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item> + <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item> + <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item> + <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item> + <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item> + <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item> + <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item> + + + <item name="bottomSheetDialogTheme">@style/ThemeOverlay.MaterialComponents.BottomSheetDialog</item> + <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item> + <item name="android:datePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item> + <item name="android:timePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item> + + + <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item> + <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar</item> + <item name="materialTimePickerTheme">@style/ThemeOverlay.MaterialComponents.TimePicker</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Light.Bridge" parent="Platform.MaterialComponents.Light"> + <item name="isMaterialTheme">true</item> + + <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item> + <item name="colorSecondary">@color/design_default_color_secondary</item> + <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item> + <item name="colorSurface">@color/design_default_color_surface</item> + <item name="colorPrimarySurface">?attr/colorPrimary</item> + <item name="colorOnPrimary">@color/design_default_color_on_primary</item> + <item name="colorOnSecondary">@color/design_default_color_on_secondary</item> + <item name="colorOnBackground">@color/design_default_color_on_background</item> + <item name="colorOnError">@color/design_default_color_on_error</item> + <item name="colorOnSurface">@color/design_default_color_on_surface</item> + <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item> + + <item name="scrimBackground">@color/mtrl_scrim_color</item> + <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item> + + <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item> + + + <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item> + <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item> + <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item> + <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item> + <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item> + <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item> + <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item> + <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item> + <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item> + <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item> + <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item> + + + <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item> + <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item> + <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item> + <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item> + <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item> + <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item> + <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item> + <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item> + <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item> + <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item> + <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item> + <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item> + <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item> + + + <item name="shapeAppearanceSmallComponent"> + @style/ShapeAppearance.MaterialComponents.SmallComponent + </item> + <item name="shapeAppearanceMediumComponent"> + @style/ShapeAppearance.MaterialComponents.MediumComponent + </item> + <item name="shapeAppearanceLargeComponent"> + @style/ShapeAppearance.MaterialComponents.LargeComponent + </item> + + + <item name="motionEasingStandard">@string/material_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item> + <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item> + <item name="motionEasingLinear">@string/material_motion_easing_linear</item> + + <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item> + <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item> + <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item> + <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item> + <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item> + <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item> + + <item name="motionPath">@integer/material_motion_path</item> + + + <item name="elevationOverlayEnabled">false</item> + <item name="elevationOverlayColor">?attr/colorOnSurface</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Theme.AppCompat.Light.DarkActionBar"> + <item name="isMaterialTheme">true</item> + + <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item> + <item name="colorSecondary">@color/design_default_color_secondary</item> + <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item> + <item name="colorSurface">@color/design_default_color_surface</item> + <item name="colorPrimarySurface">?attr/colorPrimary</item> + <item name="colorOnPrimary">@color/design_default_color_on_primary</item> + <item name="colorOnSecondary">@color/design_default_color_on_secondary</item> + <item name="colorOnBackground">@color/design_default_color_on_background</item> + <item name="colorOnError">@color/design_default_color_on_error</item> + <item name="colorOnSurface">@color/design_default_color_on_surface</item> + <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item> + + <item name="scrimBackground">@color/mtrl_scrim_color</item> + <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item> + + + <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item> + <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item> + <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item> + <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item> + <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item> + <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item> + <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item> + <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item> + <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item> + <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item> + <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item> + <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item> + <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item> + + + <item name="shapeAppearanceSmallComponent"> + @style/ShapeAppearance.MaterialComponents.SmallComponent + </item> + <item name="shapeAppearanceMediumComponent"> + @style/ShapeAppearance.MaterialComponents.MediumComponent + </item> + <item name="shapeAppearanceLargeComponent"> + @style/ShapeAppearance.MaterialComponents.LargeComponent + </item> + + + <item name="motionEasingStandard">@string/material_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item> + <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item> + <item name="motionEasingLinear">@string/material_motion_easing_linear</item> + + <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item> + <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item> + <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item> + <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item> + <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item> + <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item> + + <item name="motionPath">@integer/material_motion_path</item> + + + <item name="elevationOverlayEnabled">false</item> + <item name="elevationOverlayColor">?attr/colorOnSurface</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge"> + <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item> + + + <item name="colorPrimary">@color/design_default_color_primary</item> + <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item> + <item name="colorSecondary">@color/design_default_color_secondary</item> + <item name="colorAccent">?attr/colorSecondary</item> + + <item name="android:colorBackground">@color/design_default_color_background</item> + <item name="colorError">@color/design_default_color_error</item> + + + <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item> + <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item> + <item name="actionBarStyle">@style/Widget.MaterialComponents.Light.ActionBar.Solid</item> + <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item> + <item name="actionModeStyle">@style/Widget.MaterialComponents.ActionMode</item> + + + <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Primary</item> + <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item> + <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item> + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item> + <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item> + <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item> + <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item> + <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item> + <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item> + <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item> + <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item> + <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item> + <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item> + <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item> + <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item> + <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item> + <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item> + <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item> + <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item> + <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item> + <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item> + <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item> + + <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item> + <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item> + + + <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item> + <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item> + </style> + <style name="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge" parent="Platform.MaterialComponents.Light.Dialog"> + <item name="isMaterialTheme">true</item> + + <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item> + <item name="colorSecondary">@color/design_default_color_secondary</item> + <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item> + <item name="colorSurface">@color/design_default_color_surface</item> + <item name="colorPrimarySurface">?attr/colorPrimary</item> + <item name="colorOnPrimary">@color/design_default_color_on_primary</item> + <item name="colorOnSecondary">@color/design_default_color_on_secondary</item> + <item name="colorOnBackground">@color/design_default_color_on_background</item> + <item name="colorOnError">@color/design_default_color_on_error</item> + <item name="colorOnSurface">@color/design_default_color_on_surface</item> + <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item> + + <item name="scrimBackground">@color/mtrl_scrim_color</item> + <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item> + + <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item> + + + <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item> + <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item> + <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item> + <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item> + <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item> + <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item> + <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item> + <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item> + <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item> + <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item> + <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item> + <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item> + <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item> + <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item> + + + <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item> + <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item> + <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item> + <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item> + <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item> + <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item> + <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item> + <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item> + <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item> + <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item> + <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item> + <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item> + <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item> + + + <item name="shapeAppearanceSmallComponent"> + @style/ShapeAppearance.MaterialComponents.SmallComponent + </item> + <item name="shapeAppearanceMediumComponent"> + @style/ShapeAppearance.MaterialComponents.MediumComponent + </item> + <item name="shapeAppearanceLargeComponent"> + @style/ShapeAppearance.MaterialComponents.LargeComponent + </item> + + + <item name="motionEasingStandard">@string/material_motion_easing_standard</item> + <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item> + <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item> + <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item> + <item name="motionEasingLinear">@string/material_motion_easing_linear</item> + + <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item> + <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item> + <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item> + <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item> + <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item> + <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item> + + <item name="motionPath">@integer/material_motion_path</item> + + + <item name="elevationOverlayEnabled">false</item> + <item name="elevationOverlayColor">?attr/colorOnSurface</item> + </style> + <style name="Base.V14.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.ThemeOverlay.Material3.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowSoftInputMode">adjustResize</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item> + <item name="enableEdgeToEdge">true</item> + </style> + <style name="Base.V14.ThemeOverlay.Material3.SideSheetDialog" parent="Base.ThemeOverlay.Material3.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Material3.SideSheetDialog</item> + <item name="sideSheetModalStyle">@style/Widget.Material3.SideSheet.Modal</item> + </style> + <style name="Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item> + <item name="enableEdgeToEdge">true</item> + <item name="paddingBottomSystemWindowInsets">true</item> + <item name="paddingLeftSystemWindowInsets">true</item> + <item name="paddingRightSystemWindowInsets">true</item> + <item name="paddingTopSystemWindowInsets">true</item> + </style> + <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog" parent="ThemeOverlay.AppCompat.Dialog"> + + <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + </style> + <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="ThemeOverlay.AppCompat.Dialog.Alert"> + + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + </style> + <style name="Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="ThemeOverlay.AppCompat.Dialog.Alert"> + + <item name="materialAlertDialogButtonSpacerVisibility">@integer/mtrl_view_invisible</item> + <item name="alertDialogStyle">@style/MaterialAlertDialog.MaterialComponents</item> + <item name="android:checkedTextViewStyle" ns1:ignore="NewApi">@style/Widget.MaterialComponents.CheckedTextView</item> + <item name="android:dialogCornerRadius" ns1:ignore="newApi">@null</item> + <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + <item name="buttonBarPositiveButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + <item name="buttonBarNegativeButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + <item name="buttonBarNeutralButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item> + <item name="android:backgroundDimAmount">0.32</item> + <item name="materialAlertDialogBodyTextStyle">@style/MaterialAlertDialog.MaterialComponents.Body.Text</item> + </style> + <style name="Base.V14.Widget.MaterialComponents.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"> + <item name="enforceMaterialTheme">true</item> + <item name="enforceTextAppearance">true</item> + <item name="android:background">@null</item> + <item name="android:paddingStart" ns1:ignore="NewApi">16dp</item> + <item name="android:paddingEnd" ns1:ignore="NewApi">16dp</item> + <item name="android:paddingLeft">16dp</item> + <item name="android:paddingRight">16dp</item> + + <item name="android:paddingTop">17dp</item> + <item name="android:paddingBottom">17dp</item> + <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item> + <item name="android:dropDownVerticalOffset">@dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset</item> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/mtrl_exposed_dropdown_menu_popup_elevation</item> + </style> + <style name="Base.Widget.Design.TabLayout" parent="android:Widget"> + <item name="android:background">@null</item> + <item name="tabIconTint">@null</item> + <item name="tabMaxWidth">@dimen/design_tab_max_width</item> + <item name="tabIndicatorAnimationDuration">@integer/design_tab_indicator_anim_duration_ms</item> + <item name="tabIndicatorColor">?attr/colorAccent</item> + <item name="tabIndicatorGravity">bottom</item> + <item name="tabIndicatorAnimationMode">linear</item> + <item name="tabIndicator">@drawable/mtrl_tabs_default_indicator</item> + <item name="tabPaddingStart">12dp</item> + <item name="tabPaddingEnd">12dp</item> + <item name="tabTextAppearance">@style/TextAppearance.Design.Tab</item> + <item name="tabTextColor">@null</item> + <item name="tabRippleColor">?attr/colorControlHighlight</item> + <item name="tabUnboundedRipple">false</item> + </style> + <style name="Base.Widget.Material3.ActionBar.Solid" parent="Widget.AppCompat.ActionBar.Solid"> + <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item> + <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item> + <item name="background">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="backgroundStacked">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="backgroundSplit">@macro/m3_comp_top_app_bar_small_container_color</item> + </style> + <style name="Base.Widget.Material3.ActionMode" parent="Widget.AppCompat.ActionMode"> + <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item> + <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item> + <item name="background">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="backgroundSplit">@macro/m3_comp_top_app_bar_small_container_color</item> + </style> + <style name="Base.Widget.Material3.BottomNavigationView" parent="Widget.MaterialComponents.BottomNavigationView"> + <item name="android:background">@macro/m3_comp_navigation_bar_container_color</item> + <item name="backgroundTint">@null</item> + <item name="elevation">@dimen/m3_comp_navigation_bar_container_elevation</item> + <item name="itemActiveIndicatorStyle">@style/Widget.Material3.BottomNavigationView.ActiveIndicator</item> + <item name="itemTextAppearanceInactive">@macro/m3_comp_navigation_bar_label_text_type</item> + <item name="itemTextAppearanceActive">@macro/m3_comp_navigation_bar_label_text_type</item> + <item name="itemRippleColor">@color/m3_navigation_bar_ripple_color_selector</item> + <item name="itemIconSize">@dimen/m3_comp_navigation_bar_icon_size</item> + <item name="itemIconTint">@color/m3_navigation_bar_item_with_indicator_icon_tint</item> + <item name="itemTextColor">@color/m3_navigation_bar_item_with_indicator_label_tint</item> + <item name="itemPaddingTop">@dimen/m3_bottom_nav_item_padding_top</item> + <item name="itemPaddingBottom">@dimen/m3_bottom_nav_item_padding_bottom</item> + <item name="android:minHeight">@dimen/m3_bottom_nav_min_height</item> + </style> + <style name="Base.Widget.Material3.CardView" parent="Widget.MaterialComponents.CardView"> + <item name="enforceMaterialTheme">true</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_card_state_list_anim + </item> + <item name="cardElevation">@dimen/m3_card_elevation</item> + <item name="cardForegroundColor">@color/m3_card_foreground_color</item> + <item name="rippleColor">@color/m3_card_ripple_color</item> + <item name="strokeColor">@color/m3_card_stroke_color</item> + <item name="strokeWidth">@dimen/m3_card_stroke_width</item> + <item name="checkedIconTint">@color/m3_card_stroke_color</item> + <item name="shapeAppearance">?attr/shapeAppearanceCornerMedium</item> + </style> + <style name="Base.Widget.Material3.Chip" parent="Base.Widget.MaterialComponents.Chip"> + <item name="enforceTextAppearance">false</item> + <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item> + <item name="shapeAppearance">?attr/shapeAppearanceCornerSmall</item> + <item name="shapeAppearanceOverlay">@null</item> + <item name="android:textColor">@color/m3_chip_text_color</item> + <item name="closeIconTint">@color/m3_chip_text_color</item> + <item name="chipStrokeColor">@color/m3_chip_stroke_color</item> + <item name="chipSurfaceColor">?attr/colorSurface</item> + <item name="chipBackgroundColor">@color/m3_chip_background_color</item> + <item name="chipStrokeWidth">1dp</item> + <item name="rippleColor">@color/m3_chip_ripple_color</item> + <item name="checkedIcon">@drawable/ic_m3_chip_checked_circle</item> + <item name="closeIcon">@drawable/ic_m3_chip_close</item> + <item name="chipIconSize">@dimen/m3_chip_icon_size</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_chip_state_list_anim + </item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Chip</item> + </style> + <style name="Base.Widget.Material3.CollapsingToolbar" parent="Widget.MaterialComponents.CollapsingToolbar"> + <item name="collapsedTitleTextAppearance">@macro/m3_comp_top_app_bar_small_headline_type</item> + <item name="collapsedTitleTextColor">@macro/m3_comp_top_app_bar_small_headline_color</item> + <item name="expandedTitleTextColor">@macro/m3_comp_top_app_bar_small_headline_color</item> + <item name="expandedTitleMarginStart">@dimen/m3_appbar_expanded_title_margin_horizontal</item> + <item name="expandedTitleMarginEnd">@dimen/m3_appbar_expanded_title_margin_horizontal</item> + <item name="expandedTitleMarginBottom">@dimen/m3_appbar_expanded_title_margin_bottom</item> + <item name="extraMultilineHeightEnabled">true</item> + <item name="forceApplySystemWindowInsetTop">true</item> + + + <item name="titleCollapseMode">fade</item> + <item name="statusBarScrim">@empty</item> + <item name="scrimAnimationDuration">?attr/motionDurationMedium2</item> + + <item name="android:clipToPadding">false</item> + </style> + <style name="Base.Widget.Material3.CompoundButton.CheckBox" parent="Widget.MaterialComponents.CompoundButton.CheckBox"> + + <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item> + <item name="errorAccessibilityLabel">@string/error_a11y_label</item> + <item name="buttonTint">@color/m3_checkbox_button_tint</item> + <item name="buttonIconTint">@color/m3_checkbox_button_icon_tint</item> + + <item name="buttonIcon">@null</item> + </style> + <style name="Base.Widget.Material3.CompoundButton.RadioButton" parent="Widget.MaterialComponents.CompoundButton.RadioButton"> + + <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item> + <item name="buttonTint">@color/m3_radiobutton_button_tint</item> + </style> + <style name="Base.Widget.Material3.CompoundButton.Switch" parent="Widget.MaterialComponents.CompoundButton.Switch"> + + <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item> + <item name="thumbTint">@color/m3_switch_thumb_tint</item> + <item name="trackTint">@color/m3_switch_track_tint</item> + <item name="trackTintMode">src_in</item> + </style> + <style name="Base.Widget.Material3.ExtendedFloatingActionButton" parent="Widget.MaterialComponents.ExtendedFloatingActionButton"> + <item name="backgroundTint">@color/m3_fab_efab_background_color_selector</item> + <item name="iconTint">@color/m3_fab_efab_foreground_color_selector</item> + <item name="android:textColor">@color/m3_fab_efab_foreground_color_selector</item> + <item name="rippleColor">@color/m3_efab_ripple_color_selector</item> + <item name="android:minHeight">@dimen/m3_comp_extended_fab_primary_container_height</item> + <item name="elevation">@dimen/m3_comp_extended_fab_primary_container_elevation</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_extended_fab_state_list_animator + </item> + <item name="iconSize">@dimen/m3_comp_extended_fab_primary_icon_size</item> + <item name="android:textAppearance">@macro/m3_comp_extended_fab_primary_label_text_type</item> + <item name="shapeAppearance">@macro/m3_comp_extended_fab_primary_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + <item name="enforceMaterialTheme">true</item> + <item name="showMotionSpec">@animator/m3_extended_fab_show_motion_spec</item> + <item name="hideMotionSpec">@animator/m3_extended_fab_hide_motion_spec</item> + <item name="extendMotionSpec">@animator/m3_extended_fab_change_size_expand_motion_spec</item> + <item name="shrinkMotionSpec">@animator/m3_extended_fab_change_size_collapse_motion_spec</item> + </style> + <style name="Base.Widget.Material3.ExtendedFloatingActionButton.Icon" parent="Base.Widget.Material3.ExtendedFloatingActionButton"> + <item name="android:paddingStart" ns1:ignore="NewApi"> + @dimen/m3_extended_fab_start_padding + </item> + <item name="android:paddingLeft">@dimen/m3_extended_fab_start_padding</item> + <item name="android:paddingTop">@dimen/m3_extended_fab_top_padding</item> + <item name="android:paddingEnd" ns1:ignore="NewApi"> + @dimen/m3_extended_fab_end_padding + </item> + <item name="android:paddingRight">@dimen/m3_extended_fab_end_padding</item> + <item name="android:paddingBottom">@dimen/m3_extended_fab_bottom_padding</item> + <item name="iconPadding">@dimen/m3_extended_fab_icon_padding</item> + </style> + <style name="Base.Widget.Material3.FloatingActionButton" parent="Widget.MaterialComponents.FloatingActionButton"> + <item name="backgroundTint">@color/m3_fab_efab_background_color_selector</item> + <item name="tint">@color/m3_fab_efab_foreground_color_selector</item> + <item name="rippleColor">@color/m3_fab_ripple_color_selector</item> + <item name="enforceMaterialTheme">true</item> + <item name="borderWidth">@dimen/m3_fab_border_width</item> + <item name="elevation">@dimen/m3_comp_fab_primary_container_elevation</item> + <item name="hoveredFocusedTranslationZ">@dimen/m3_comp_fab_primary_hover_container_elevation</item> + <item name="pressedTranslationZ">@dimen/m3_comp_fab_primary_pressed_container_elevation</item> + <item name="fabCustomSize">@dimen/m3_comp_fab_primary_container_height</item> + <item name="maxImageSize">@dimen/m3_comp_fab_primary_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_fab_primary_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + + <item name="showMotionSpec">@null</item> + <item name="hideMotionSpec">@null</item> + </style> + <style name="Base.Widget.Material3.FloatingActionButton.Large" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="fabCustomSize">@dimen/m3_comp_fab_primary_large_container_height</item> + <item name="maxImageSize">@dimen/m3_comp_fab_primary_large_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_fab_primary_large_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Base.Widget.Material3.FloatingActionButton.Small" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="fabCustomSize">@dimen/m3_comp_fab_primary_small_container_height</item> + <item name="maxImageSize">@dimen/m3_comp_fab_primary_small_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_fab_primary_small_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Base.Widget.Material3.Light.ActionBar.Solid" parent="Widget.AppCompat.Light.ActionBar.Solid"> + <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item> + <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item> + <item name="background">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="backgroundStacked">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="backgroundSplit">@macro/m3_comp_top_app_bar_small_container_color</item> + </style> + <style name="Base.Widget.Material3.MaterialCalendar.NavigationButton" parent="Widget.Material3.Button.TextButton.Dialog.Flush"> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + <item name="iconTint">?attr/colorOnSurfaceVariant</item> + </style> + <style name="Base.Widget.Material3.Snackbar" parent="Base.Widget.MaterialComponents.Snackbar"> + <item name="enforceMaterialTheme">true</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Snackbar</item> + <item name="backgroundTint">?attr/colorSurfaceInverse</item> + <item name="actionTextColorAlpha">@dimen/m3_snackbar_action_text_color_alpha</item> + </style> + <style name="Base.Widget.Material3.TabLayout" parent="Widget.MaterialComponents.TabLayout"> + <item name="android:background">@macro/m3_comp_primary_navigation_tab_container_color</item> + <item name="enforceTextAppearance">false</item> + <item name="tabIconTint">@color/m3_tabs_icon_color</item> + <item name="tabTextAppearance">@macro/m3_comp_primary_navigation_tab_with_label_text_label_text_type</item> + <item name="tabTextColor">@color/m3_tabs_text_color</item> + <item name="tabIndicator">@drawable/m3_tabs_rounded_line_indicator</item> + <item name="tabIndicatorAnimationMode">elastic</item> + <item name="tabIndicatorColor">@macro/m3_comp_primary_navigation_tab_active_indicator_color</item> + <item name="tabRippleColor">@color/m3_tabs_ripple_color</item> + <item name="tabIndicatorFullWidth">false</item> + <item name="tabIndicatorAnimationDuration">?attr/motionDurationLong2</item> + </style> + <style name="Base.Widget.Material3.TabLayout.OnSurface" parent="Widget.Material3.TabLayout"> + <item name="android:background">@android:color/transparent</item> + </style> + <style name="Base.Widget.Material3.TabLayout.Secondary" parent="Widget.Material3.TabLayout"> + <item name="android:background">@macro/m3_comp_secondary_navigation_tab_container_color</item> + <item name="tabIconTint">@color/m3_tabs_icon_color_secondary</item> + <item name="tabTextAppearance">@macro/m3_comp_secondary_navigation_tab_label_text_type</item> + <item name="tabTextColor">@color/m3_tabs_text_color_secondary</item> + <item name="tabIndicator">@drawable/m3_tabs_line_indicator</item> + <item name="tabIndicatorColor">@macro/m3_comp_secondary_navigation_tab_active_indicator_color</item> + <item name="tabRippleColor">@color/m3_tabs_ripple_color_secondary</item> + <item name="tabIndicatorFullWidth">true</item> + </style> + <style name="Base.Widget.MaterialComponents.AutoCompleteTextView" parent="Base.V14.Widget.MaterialComponents.AutoCompleteTextView"/> + <style name="Base.Widget.MaterialComponents.CheckedTextView" parent="android:Widget"/> + <style name="Base.Widget.MaterialComponents.Chip" parent="android:Widget"> + <item name="android:focusable">true</item> + <item name="android:clickable">true</item> + <item name="android:checkable">false</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/mtrl_chip_state_list_anim + </item> + + <item name="chipIconVisible">true</item> + <item name="checkedIconVisible">true</item> + <item name="closeIconVisible">true</item> + + <item name="chipIcon">@null</item> + <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_circle</item> + <item name="closeIcon">@drawable/ic_mtrl_chip_close_circle</item> + + <item name="android:text">@null</item> + <item name="android:includeFontPadding">false</item> + <item name="enforceMaterialTheme">true</item> + <item name="enforceTextAppearance">true</item> + <item name="android:textAppearance">?attr/textAppearanceBody2</item> + <item name="android:textColor">@color/mtrl_chip_text_color</item> + <item name="closeIconTint">@color/mtrl_chip_close_icon_tint</item> + + <item name="chipSurfaceColor">@color/mtrl_chip_surface_color</item> + <item name="chipBackgroundColor">@color/mtrl_chip_background_color</item> + <item name="chipStrokeColor">?attr/colorOnSurface</item> + <item name="chipStrokeWidth">0dp</item> + <item name="rippleColor">@color/mtrl_on_surface_ripple_color</item> + + <item name="chipMinTouchTargetSize">48dp</item> + <item name="ensureMinTouchTargetSize">true</item> + <item name="chipMinHeight">32dp</item> + <item name="chipIconSize">24dp</item> + <item name="closeIconSize">18dp</item> + + <item name="chipStartPadding">4dp</item> + <item name="iconStartPadding">0dp</item> + <item name="iconEndPadding">0dp</item> + <item name="textStartPadding">8dp</item> + <item name="textEndPadding">6dp</item> + <item name="closeIconStartPadding">2dp</item> + <item name="closeIconEndPadding">2dp</item> + <item name="chipEndPadding">6dp</item> + + <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.Chip</item> + </style> + <style name="Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton" parent="Widget.AppCompat.ImageButton"> + <item name="android:background">?attr/actionBarItemBackground</item> + <item name="android:tint">?attr/colorOnPrimary</item> + </style> + <style name="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton" parent="Widget.MaterialComponents.Button.TextButton.Dialog.Flush"> + <item name="android:textColor">@color/material_on_surface_emphasis_medium</item> + <item name="iconTint">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="Base.Widget.MaterialComponents.PopupMenu" parent="Widget.AppCompat.PopupMenu"> + <item name="overlapAnchor">false</item> + <item name="android:dropDownVerticalOffset">1px</item> + </style> + <style name="Base.Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Widget.AppCompat.PopupMenu"/> + <style name="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/> + <style name="Base.Widget.MaterialComponents.PopupMenu.Overflow" parent="Widget.AppCompat.PopupMenu.Overflow"> + <item name="android:dropDownVerticalOffset">1px</item> + </style> + <style name="Base.Widget.MaterialComponents.Slider" parent="android:Widget"> + <item name="haloColor">@color/material_slider_halo_color</item> + <item name="haloRadius">@dimen/mtrl_slider_halo_radius</item> + <item name="labelStyle">@style/Widget.MaterialComponents.Tooltip</item> + <item name="thumbColor">@color/material_slider_thumb_color</item> + <item name="thumbElevation">@dimen/mtrl_slider_thumb_elevation</item> + <item name="thumbRadius">@dimen/mtrl_slider_thumb_radius</item> + <item name="tickColorActive">@color/material_slider_active_tick_marks_color</item> + <item name="tickColorInactive">@color/material_slider_inactive_tick_marks_color</item> + <item name="tickRadiusActive">@dimen/mtrl_slider_tick_radius</item> + <item name="tickRadiusInactive">@dimen/mtrl_slider_tick_radius</item> + <item name="trackColorActive">@color/material_slider_active_track_color</item> + <item name="trackColorInactive">@color/material_slider_inactive_track_color</item> + <item name="trackHeight">@dimen/mtrl_slider_track_height</item> + <item name="minSeparation">0dp</item> + </style> + <style name="Base.Widget.MaterialComponents.Snackbar" parent="Widget.Design.Snackbar"> + + <item name="android:paddingLeft">@dimen/mtrl_snackbar_padding_horizontal</item> + <item name="android:paddingRight">@dimen/mtrl_snackbar_padding_horizontal</item> + <item name="backgroundOverlayColorAlpha">@dimen/mtrl_snackbar_background_overlay_color_alpha</item> + <item name="actionTextColorAlpha">@dimen/mtrl_snackbar_action_text_color_alpha</item> + </style> + <style name="Base.Widget.MaterialComponents.TextInputEditText" parent="Widget.Design.TextInputEditText"> + <item name="enforceMaterialTheme">true</item> + <item name="enforceTextAppearance">true</item> + <item name="android:background">@null</item> + <item name="android:paddingStart" ns1:ignore="NewApi">16dp</item> + <item name="android:paddingEnd" ns1:ignore="NewApi">16dp</item> + <item name="android:paddingLeft">16dp</item> + <item name="android:paddingRight">16dp</item> + + <item name="android:paddingTop">17dp</item> + <item name="android:paddingBottom">17dp</item> + <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item> + <item name="textInputLayoutFocusedRectEnabled">true</item> + </style> + <style name="Base.Widget.MaterialComponents.TextInputLayout" parent="Widget.Design.TextInputLayout"> + <item name="enforceMaterialTheme">true</item> + <item name="enforceTextAppearance">true</item> + + <item name="android:minWidth">@dimen/material_textinput_min_width</item> + <item name="android:maxWidth">@dimen/material_textinput_max_width</item> + <item name="boxBackgroundMode">outline</item> + <item name="boxBackgroundColor">@null</item> + <item name="errorIconDrawable">@drawable/mtrl_ic_error</item> + <item name="errorIconTint">@color/mtrl_error</item> + <item name="endIconTint">@color/mtrl_outlined_icon_tint</item> + <item name="startIconTint">@color/mtrl_outlined_icon_tint</item> + <item name="boxCollapsedPaddingTop">0dp</item> + <item name="boxStrokeColor">@color/mtrl_outlined_stroke_color</item> + <item name="boxStrokeErrorColor">@color/mtrl_error</item> + <item name="boxStrokeWidth">@dimen/mtrl_textinput_box_stroke_width_default</item> + <item name="boxStrokeWidthFocused">@dimen/mtrl_textinput_box_stroke_width_focused</item> + + <item name="counterTextAppearance">?attr/textAppearanceCaption</item> + <item name="counterOverflowTextAppearance">?attr/textAppearanceCaption</item> + <item name="errorTextAppearance">?attr/textAppearanceCaption</item> + <item name="helperTextTextAppearance">?attr/textAppearanceCaption</item> + <item name="hintTextAppearance">?attr/textAppearanceCaption</item> + <item name="placeholderTextAppearance">?attr/textAppearanceSubtitle1</item> + <item name="prefixTextAppearance">?attr/textAppearanceSubtitle1</item> + <item name="suffixTextAppearance">?attr/textAppearanceSubtitle1</item> + + <item name="counterTextColor">@color/mtrl_indicator_text_color</item> + <item name="counterOverflowTextColor">@color/mtrl_error</item> + <item name="errorTextColor">@color/mtrl_error</item> + <item name="helperTextTextColor">@color/mtrl_indicator_text_color</item> + + <item name="hintTextColor">?attr/colorPrimary</item> + <item name="placeholderTextColor">@color/mtrl_indicator_text_color</item> + <item name="prefixTextColor">@color/mtrl_indicator_text_color</item> + <item name="suffixTextColor">@color/mtrl_indicator_text_color</item> + + <item name="android:textColorHint">@color/mtrl_indicator_text_color</item> + + <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Base.Widget.MaterialComponents.TextView" parent="Widget.AppCompat.TextView"/> + <style name="MaterialAlertDialog.Material3" parent="MaterialAlertDialog.MaterialComponents"> + <item name="enforceMaterialTheme">true</item> + <item name="android:layout">@layout/m3_alert_dialog</item> + <item name="shapeAppearance">@macro/m3_comp_dialog_container_shape</item> + </style> + <style name="MaterialAlertDialog.Material3.Animation"> + <item name="android:windowEnterAnimation">@anim/m3_motion_fade_enter</item> + <item name="android:windowExitAnimation">@anim/m3_motion_fade_exit</item> + </style> + <style name="MaterialAlertDialog.Material3.Body.Text" parent=""> + <item name="android:textAppearance">@macro/m3_comp_dialog_supporting_text_type</item> + <item name="android:textColor">@macro/m3_comp_dialog_supporting_text_color</item> + </style> + <style name="MaterialAlertDialog.Material3.Body.Text.CenterStacked"> + <item name="android:layout_gravity">center</item> + <item name="android:gravity">center</item> + <item name="android:textAlignment" ns1:ignore="NewApi">gravity</item> + </style> + <style name="MaterialAlertDialog.Material3.Title.Icon" parent="MaterialAlertDialog.MaterialComponents.Title.Icon"> + <item name="android:layout_width">@dimen/m3_alert_dialog_icon_size</item> + <item name="android:layout_height">@dimen/m3_alert_dialog_icon_size</item> + <item name="android:layout_marginEnd" ns1:ignore="NewApi">@dimen/m3_alert_dialog_icon_margin</item> + <item name="android:layout_marginRight">@dimen/m3_alert_dialog_icon_margin</item> + <item name="android:theme">@style/ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon</item> + </style> + <style name="MaterialAlertDialog.Material3.Title.Icon.CenterStacked"> + <item name="android:layout_marginEnd" ns1:ignore="NewApi">0dp</item> + <item name="android:layout_marginRight">0dp</item> + <item name="android:layout_marginBottom">@dimen/m3_alert_dialog_icon_margin</item> + <item name="android:layout_gravity">center</item> + </style> + <style name="MaterialAlertDialog.Material3.Title.Panel" parent="MaterialAlertDialog.MaterialComponents.Title.Panel"/> + <style name="MaterialAlertDialog.Material3.Title.Panel.CenterStacked"> + <item name="android:orientation">vertical</item> + </style> + <style name="MaterialAlertDialog.Material3.Title.Text" parent="MaterialAlertDialog.MaterialComponents.Title.Text"> + <item name="android:textAppearance">@macro/m3_comp_dialog_headline_type</item> + <item name="android:textColor">@macro/m3_comp_dialog_headline_color</item> + </style> + <style name="MaterialAlertDialog.Material3.Title.Text.CenterStacked"> + <item name="android:layout_gravity">center</item> + <item name="android:gravity">center</item> + <item name="android:textAlignment" ns1:ignore="NewApi">gravity</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents" parent="AlertDialog.AppCompat"> + <item name="android:layout">@layout/mtrl_alert_dialog</item> + <item name="listItemLayout">@layout/mtrl_alert_select_dialog_item</item> + <item name="multiChoiceItemLayout">@layout/mtrl_alert_select_dialog_multichoice</item> + <item name="singleChoiceItemLayout">@layout/mtrl_alert_select_dialog_singlechoice</item> + + <item name="backgroundInsetStart">@dimen/mtrl_alert_dialog_background_inset_start</item> + <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_background_inset_top</item> + <item name="backgroundInsetEnd">@dimen/mtrl_alert_dialog_background_inset_end</item> + <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_background_inset_bottom</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Body.Text" parent="TextAppearance.MaterialComponents.Body2"> + <item name="android:textAppearance">?attr/textAppearanceBody2</item> + <item name="android:textColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar" parent="android:Widget.DeviceDefault.DatePicker"> + <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner" parent="android:Widget.DeviceDefault.DatePicker"> + <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Icon" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Icon"> + <item name="android:layout_gravity">start|center_vertical</item> + <item name="android:layout_marginEnd" ns1:ignore="NewApi">8dip</item> + <item name="android:layout_marginRight">8dip</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Icon"> + <item name="android:layout_gravity">center</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Panel" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Panel"> + <item name="android:orientation">horizontal</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Panel"> + <item name="android:orientation">vertical</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Text" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Text"> + <item name="android:layout_gravity">start|center_vertical</item> + <item name="android:textAlignment" ns1:ignore="NewApi">viewStart</item> + </style> + <style name="MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Text"> + <item name="android:layout_gravity">center</item> + <item name="android:textAlignment" ns1:ignore="NewApi">center</item> + </style> + <style name="Platform.MaterialComponents" parent="Theme.AppCompat"/> + <style name="Platform.MaterialComponents.Dialog" parent="Theme.AppCompat.Dialog"/> + <style name="Platform.MaterialComponents.Light" parent="Theme.AppCompat.Light"/> + <style name="Platform.MaterialComponents.Light.Dialog" parent="Theme.AppCompat.Light.Dialog"/> + <style name="ShapeAppearance.M3.Comp.Badge.Large.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.Badge.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.None"/> + <style name="ShapeAppearance.M3.Comp.FilledButton.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.SearchBar.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.None"/> + <style name="ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.None"/> + <style name="ShapeAppearance.M3.Comp.Switch.Handle.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.Switch.StateLayer.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.Switch.Track.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Comp.TextButton.Container.Shape" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">28dp</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">4dp</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.Full" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">50%</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.Large" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">16dp</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.Medium" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">12dp</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.None" parent=""> + <item name="cornerFamily">rounded</item> + <item name="cornerSize">0dp</item> + </style> + <style name="ShapeAppearance.M3.Sys.Shape.Corner.Small" parent=""> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">8dp</item> + </style> + <style name="ShapeAppearance.Material3.Corner.ExtraLarge" parent="ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge"/> + <style name="ShapeAppearance.Material3.Corner.ExtraSmall" parent="ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall"/> + <style name="ShapeAppearance.Material3.Corner.Full" parent="ShapeAppearance.M3.Sys.Shape.Corner.Full"/> + <style name="ShapeAppearance.Material3.Corner.Large" parent="ShapeAppearance.M3.Sys.Shape.Corner.Large"/> + <style name="ShapeAppearance.Material3.Corner.Medium" parent="ShapeAppearance.M3.Sys.Shape.Corner.Medium"/> + <style name="ShapeAppearance.Material3.Corner.None" parent="ShapeAppearance.M3.Sys.Shape.Corner.None"/> + <style name="ShapeAppearance.Material3.Corner.Small" parent="ShapeAppearance.M3.Sys.Shape.Corner.Small"/> + <style name="ShapeAppearance.Material3.LargeComponent" parent=""> + <item name="cornerFamily">rounded</item> + <item name="cornerSize">8dp</item> + </style> + <style name="ShapeAppearance.Material3.MediumComponent" parent=""> + <item name="cornerFamily">rounded</item> + <item name="cornerSize">8dp</item> + </style> + <style name="ShapeAppearance.Material3.NavigationBarView.ActiveIndicator" parent="ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape"/> + <style name="ShapeAppearance.Material3.SmallComponent" parent=""> + <item name="cornerFamily">rounded</item> + <item name="cornerSize">4dp</item> + </style> + <style name="ShapeAppearance.Material3.Tooltip" parent="ShapeAppearance.Material3.Corner.Full"/> + <style name="ShapeAppearance.MaterialComponents" parent=""> + <item name="cornerFamily">rounded</item> + </style> + <style name="ShapeAppearance.MaterialComponents.Badge"> + <item name="cornerFamily">?attr/shapeCornerFamily</item> + <item name="cornerSize">50%</item> + </style> + <style name="ShapeAppearance.MaterialComponents.LargeComponent"> + <item name="cornerSize">@dimen/mtrl_shape_corner_size_large_component</item> + </style> + <style name="ShapeAppearance.MaterialComponents.MediumComponent"> + <item name="cornerSize">@dimen/mtrl_shape_corner_size_medium_component</item> + </style> + <style name="ShapeAppearance.MaterialComponents.SmallComponent"> + <item name="cornerSize">@dimen/mtrl_shape_corner_size_small_component</item> + </style> + <style name="ShapeAppearance.MaterialComponents.Tooltip" parent=""> + <item name="cornerFamily">rounded</item> + <item name="cornerSize">4dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Button" parent=""> + <item name="cornerSize">50%</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Chip" parent=""> + <item name="cornerSize">8dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Corner.Bottom" parent=""> + <item name="cornerSizeTopLeft">0dp</item> + <item name="cornerSizeTopRight">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Corner.Left" parent=""> + <item name="cornerSizeTopRight">0dp</item> + <item name="cornerSizeBottomRight">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Corner.Right" parent=""> + <item name="cornerSizeTopLeft">0dp</item> + <item name="cornerSizeBottomLeft">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.Corner.Top" parent=""> + <item name="cornerSizeBottomLeft">0dp</item> + <item name="cornerSizeBottomRight">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.FloatingActionButton" parent=""> + <item name="cornerSize">@dimen/m3_fab_corner_size</item> + </style> + <style name="ShapeAppearanceOverlay.Material3.NavigationView.Item" parent="ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape"/> + <style name="ShapeAppearanceOverlay.Material3.SearchBar" parent="ShapeAppearance.M3.Comp.SearchBar.Container.Shape"/> + <style name="ShapeAppearanceOverlay.Material3.SearchView" parent="ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape"/> + <style name="ShapeAppearanceOverlay.MaterialAlertDialog.Material3" parent=""> + <item name="cornerSize">@dimen/m3_alert_dialog_corner_size</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.BottomSheet" parent=""> + <item name="cornerSizeBottomRight">0dp</item> + <item name="cornerSizeBottomLeft">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.Chip" parent=""> + <item name="cornerSize">50%</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton" parent=""> + <item name="cornerSize">@null</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton" parent=""> + <item name="cornerSize">50%</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day" parent=""> + <item name="cornerSize">@dimen/mtrl_calendar_day_corner</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen" parent=""> + <item name="cornerSize">0dp</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year" parent=""> + <item name="cornerSize">@dimen/mtrl_calendar_year_corner</item> + </style> + <style name="ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox" parent=""> + <item name="cornerSizeBottomLeft">@dimen/mtrl_textinput_box_corner_radius_small</item> + <item name="cornerSizeBottomRight">@dimen/mtrl_textinput_box_corner_radius_small</item> + </style> + <style name="TextAppearance.Design.CollapsingToolbar.Expanded" parent="TextAppearance.AppCompat.Display1"> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + <style name="TextAppearance.Design.Counter" parent="TextAppearance.AppCompat.Caption"/> + <style name="TextAppearance.Design.Counter.Overflow" parent="TextAppearance.AppCompat.Caption"> + <item name="android:textColor">@color/design_error</item> + </style> + <style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption"> + <item name="android:textColor">@color/design_error</item> + </style> + <style name="TextAppearance.Design.HelperText" parent="TextAppearance.AppCompat.Caption"/> + <style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption"> + <item name="android:textColor">?attr/colorControlActivated</item> + </style> + <style name="TextAppearance.Design.Placeholder" parent="TextAppearance.AppCompat.Body1"/> + <style name="TextAppearance.Design.Prefix" parent="TextAppearance.AppCompat.Body1"/> + <style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance"> + <item name="android:textSize">@dimen/design_snackbar_text_size</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + <style name="TextAppearance.Design.Suffix" parent="TextAppearance.AppCompat.Body1"/> + <style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button"> + <item name="android:textSize">@dimen/design_tab_text_size</item> + <item name="android:textColor">@color/mtrl_tabs_legacy_text_color_selector</item> + <item name="textAllCaps">true</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodyLarge" parent="TextAppearance.AppCompat.Body2"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.03125</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodyMedium" parent="TextAppearance.AppCompat.Body1"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.01785714</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.BodySmall" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_regular</item> + <item name="android:textSize">12sp</item> + <item name="android:letterSpacing">0.03333333</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplayLarge" parent="TextAppearance.AppCompat.Display3"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">57sp</item> + <item name="android:letterSpacing">-0.00438596</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplayMedium" parent="TextAppearance.AppCompat.Display2"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">45sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.DisplaySmall" parent="TextAppearance.AppCompat.Display1"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">36sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineLarge" parent="TextAppearance.AppCompat.Display1"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">32sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineMedium" parent="TextAppearance.AppCompat.Headline"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">28sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.HeadlineSmall" parent="TextAppearance.AppCompat.Title"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">24sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelLarge" parent="TextAppearance.AppCompat.Body1"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + + <item name="android:textStyle">bold</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.00714286</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelMedium" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + + <item name="android:textStyle">bold</item> + <item name="android:textSize">12sp</item> + <item name="android:letterSpacing">0.04166667</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.LabelSmall" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + + <item name="android:textStyle">bold</item> + <item name="android:textSize">11sp</item> + <item name="android:letterSpacing">0.04545455</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleLarge" parent="TextAppearance.AppCompat.Title"> + <item name="fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:fontFamily">@string/m3_ref_typeface_brand_regular</item> + <item name="android:textSize">22sp</item> + <item name="android:letterSpacing">0</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleMedium" parent="TextAppearance.AppCompat.Subhead"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + + <item name="android:textStyle">bold</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.009375</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.M3.Sys.Typescale.TitleSmall" parent="TextAppearance.AppCompat.Subhead"> + <item name="fontFamily">@string/m3_ref_typeface_plain_medium</item> + <item name="android:fontFamily">@string/m3_ref_typeface_plain_medium</item> + + <item name="android:textStyle">bold</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.00714286</item> + <item name="android:textAllCaps">false</item> + </style> + <style name="TextAppearance.Material3.ActionBar.Subtitle" parent="TextAppearance.Material3.TitleMedium"> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + </style> + <style name="TextAppearance.Material3.ActionBar.Title" parent="TextAppearance.Material3.TitleLarge"> + <item name="android:textColor">@macro/m3_comp_top_app_bar_small_headline_color</item> + </style> + <style name="TextAppearance.Material3.BodyLarge" parent="TextAppearance.M3.Sys.Typescale.BodyLarge"/> + <style name="TextAppearance.Material3.BodyMedium" parent="TextAppearance.M3.Sys.Typescale.BodyMedium"/> + <style name="TextAppearance.Material3.BodySmall" parent="TextAppearance.M3.Sys.Typescale.BodySmall"/> + <style name="TextAppearance.Material3.DisplayLarge" parent="TextAppearance.M3.Sys.Typescale.DisplayLarge"/> + <style name="TextAppearance.Material3.DisplayMedium" parent="TextAppearance.M3.Sys.Typescale.DisplayMedium"/> + <style name="TextAppearance.Material3.DisplaySmall" parent="TextAppearance.M3.Sys.Typescale.DisplaySmall"/> + <style name="TextAppearance.Material3.HeadlineLarge" parent="TextAppearance.M3.Sys.Typescale.HeadlineLarge"/> + <style name="TextAppearance.Material3.HeadlineMedium" parent="TextAppearance.M3.Sys.Typescale.HeadlineMedium"/> + <style name="TextAppearance.Material3.HeadlineSmall" parent="TextAppearance.M3.Sys.Typescale.HeadlineSmall"/> + <style name="TextAppearance.Material3.LabelLarge" parent="TextAppearance.M3.Sys.Typescale.LabelLarge"/> + <style name="TextAppearance.Material3.LabelMedium" parent="TextAppearance.M3.Sys.Typescale.LabelMedium"/> + <style name="TextAppearance.Material3.LabelSmall" parent="TextAppearance.M3.Sys.Typescale.LabelSmall"/> + <style name="TextAppearance.Material3.MaterialTimePicker.Title" parent=""> + <item name="android:textAppearance">@macro/m3_comp_time_picker_headline_type</item> + <item name="android:textColor">@macro/m3_comp_time_picker_headline_color</item> + </style> + <style name="TextAppearance.Material3.SearchBar" parent="Base.TextAppearance.Material3.Search"> + <item name="android:textAppearance">@macro/m3_comp_search_bar_input_text_type</item> + <item name="android:textColor">@macro/m3_comp_search_bar_input_text_color</item> + <item name="android:textColorHint">@macro/m3_comp_search_bar_supporting_text_color</item> + </style> + <style name="TextAppearance.Material3.SearchView" parent="Base.TextAppearance.Material3.Search"> + <item name="android:textAppearance">@macro/m3_comp_search_view_header_input_text_type</item> + <item name="android:textColor">@macro/m3_comp_search_view_header_input_text_color</item> + <item name="android:textColorHint">@macro/m3_comp_search_view_header_supporting_text_color</item> + </style> + <style name="TextAppearance.Material3.SearchView.Prefix"> + <item name="android:textColor">?android:attr/textColorTertiary</item> + </style> + <style name="TextAppearance.Material3.TitleLarge" parent="TextAppearance.M3.Sys.Typescale.TitleLarge"/> + <style name="TextAppearance.Material3.TitleMedium" parent="TextAppearance.M3.Sys.Typescale.TitleMedium"/> + <style name="TextAppearance.Material3.TitleSmall" parent="TextAppearance.M3.Sys.Typescale.TitleSmall"/> + <style name="TextAppearance.MaterialComponents.Badge" parent="Base.TextAppearance.MaterialComponents.Badge"/> + <style name="TextAppearance.MaterialComponents.Body1" parent="TextAppearance.AppCompat.Body2"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.03125</item> + </style> + <style name="TextAppearance.MaterialComponents.Body2" parent="TextAppearance.AppCompat.Body1"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">14sp</item> + <item name="android:letterSpacing">0.0178571429</item> + </style> + <style name="TextAppearance.MaterialComponents.Button" parent="Base.TextAppearance.MaterialComponents.Button"/> + <style name="TextAppearance.MaterialComponents.Caption" parent="TextAppearance.AppCompat.Caption"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">12sp</item> + <item name="android:letterSpacing">0.0333333333</item> + </style> + <style name="TextAppearance.MaterialComponents.Chip" parent="TextAppearance.AppCompat"> + <item name="android:textColor">@color/mtrl_chip_text_color</item> + <item name="android:textSize">@dimen/mtrl_chip_text_size</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline1" parent="TextAppearance.AppCompat.Display4"> + <item name="fontFamily">sans-serif-light</item> + <item name="android:fontFamily">sans-serif-light</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">96sp</item> + <item name="android:letterSpacing">-0.015625</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline2" parent="TextAppearance.AppCompat.Display3"> + <item name="fontFamily">sans-serif-light</item> + <item name="android:fontFamily">sans-serif-light</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">60sp</item> + <item name="android:letterSpacing">-0.00833333333</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline3" parent="TextAppearance.AppCompat.Display2"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">48sp</item> + <item name="android:letterSpacing">0</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline4" parent="TextAppearance.AppCompat.Display1"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">34sp</item> + <item name="android:letterSpacing">0.00735294118</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline5" parent="TextAppearance.AppCompat.Headline"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">24sp</item> + <item name="android:letterSpacing">0</item> + </style> + <style name="TextAppearance.MaterialComponents.Headline6" parent="Base.TextAppearance.MaterialComponents.Headline6"/> + <style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">true</item> + <item name="android:textSize">10sp</item> + <item name="android:letterSpacing">0.166666667</item> + </style> + <style name="TextAppearance.MaterialComponents.Subtitle1" parent="TextAppearance.AppCompat.Subhead"> + <item name="fontFamily">sans-serif</item> + <item name="android:fontFamily">sans-serif</item> + <item name="android:textStyle">normal</item> + <item name="android:textAllCaps">false</item> + <item name="android:textSize">16sp</item> + <item name="android:letterSpacing">0.009375</item> + </style> + <style name="TextAppearance.MaterialComponents.Subtitle2" parent="Base.TextAppearance.MaterialComponents.Subtitle2"/> + <style name="TextAppearance.MaterialComponents.TimePicker.Title" parent="TextAppearance.MaterialComponents.Overline"> + <item name="android:textColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="TextAppearance.MaterialComponents.Tooltip" parent="TextAppearance.MaterialComponents.Body2"> + <item name="android:textColor">?attr/colorOnPrimary</item> + </style> + <style name="Theme.Design" parent="Theme.AppCompat"> + </style> + <style name="Theme.Design.BottomSheetDialog" parent="Theme.AppCompat.Dialog"> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item> + </style> + <style name="Theme.Design.Light" parent="Theme.AppCompat.Light"> + </style> + <style name="Theme.Design.Light.BottomSheetDialog" parent="Theme.AppCompat.Light.Dialog"> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item> + </style> + <style name="Theme.Design.Light.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.Design.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.Material3.Dark" parent="Base.Theme.Material3.Dark"/> + <style name="Theme.Material3.Dark.BottomSheetDialog" parent="Base.Theme.Material3.Dark.BottomSheetDialog"/> + <style name="Theme.Material3.Dark.Dialog" parent="Base.Theme.Material3.Dark.Dialog"/> + <style name="Theme.Material3.Dark.Dialog.Alert" parent="Base.Theme.Material3.Dark.Dialog"> + <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.Material3.Dark.Dialog.MinWidth" parent="Base.Theme.Material3.Dark.Dialog"> + <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.Material3.Dark.DialogWhenLarge" parent="Base.Theme.Material3.Dark.Dialog"/> + <style name="Theme.Material3.Dark.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.Material3.Dark.SideSheetDialog" parent="Base.Theme.Material3.Dark.SideSheetDialog"/> + <style name="Theme.Material3.DayNight" parent="Theme.Material3.Light"/> + <style name="Theme.Material3.DayNight.BottomSheetDialog" parent="Theme.Material3.Light.BottomSheetDialog"/> + <style name="Theme.Material3.DayNight.Dialog" parent="Theme.Material3.Light.Dialog"/> + <style name="Theme.Material3.DayNight.Dialog.Alert" parent="Theme.Material3.Light.Dialog.Alert"/> + <style name="Theme.Material3.DayNight.Dialog.MinWidth" parent="Theme.Material3.Light.Dialog.MinWidth"/> + <style name="Theme.Material3.DayNight.DialogWhenLarge" parent="Theme.Material3.Light.DialogWhenLarge"/> + <style name="Theme.Material3.DayNight.NoActionBar" parent="Theme.Material3.Light.NoActionBar"/> + <style name="Theme.Material3.DayNight.SideSheetDialog" parent="Theme.Material3.Light.SideSheetDialog"/> + <style name="Theme.Material3.DynamicColors.Dark" parent="Theme.Material3.Dark"/> + <style name="Theme.Material3.DynamicColors.DayNight" parent="Theme.Material3.DynamicColors.Light"/> + <style name="Theme.Material3.DynamicColors.Light" parent="Theme.Material3.Light"/> + <style name="Theme.Material3.Light" parent="Base.Theme.Material3.Light"/> + <style name="Theme.Material3.Light.BottomSheetDialog" parent="Base.Theme.Material3.Light.BottomSheetDialog"/> + <style name="Theme.Material3.Light.Dialog" parent="Base.Theme.Material3.Light.Dialog"/> + <style name="Theme.Material3.Light.Dialog.Alert" parent="Base.Theme.Material3.Light.Dialog"> + <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.Material3.Light.Dialog.MinWidth" parent="Base.Theme.Material3.Light.Dialog"> + <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.Material3.Light.DialogWhenLarge" parent="Base.Theme.Material3.Light.Dialog"/> + <style name="Theme.Material3.Light.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.Material3.Light.SideSheetDialog" parent="Base.Theme.Material3.Light.SideSheetDialog"/> + <style name="Theme.MaterialComponents" parent="Base.Theme.MaterialComponents"/> + <style name="Theme.MaterialComponents.BottomSheetDialog" parent="Theme.MaterialComponents.Dialog"> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item> + </style> + <style name="Theme.MaterialComponents.Bridge" parent="Base.Theme.MaterialComponents.Bridge"/> + <style name="Theme.MaterialComponents.CompactMenu" parent="Base.Theme.MaterialComponents.CompactMenu"/> + <style name="Theme.MaterialComponents.DayNight" parent="Theme.MaterialComponents.Light"/> + <style name="Theme.MaterialComponents.DayNight.BottomSheetDialog" parent="Theme.MaterialComponents.Light.BottomSheetDialog"/> + <style name="Theme.MaterialComponents.DayNight.Bridge" parent="Theme.MaterialComponents.Light.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.DarkActionBar" parent="Theme.MaterialComponents.Light.DarkActionBar"/> + <style name="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge" parent="Theme.MaterialComponents.Light.DarkActionBar.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog" parent="Theme.MaterialComponents.Light.Dialog"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Alert" parent="Theme.MaterialComponents.Light.Dialog.Alert"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge" parent="Theme.MaterialComponents.Light.Dialog.Alert.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.Bridge" parent="Theme.MaterialComponents.Light.Dialog.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize" parent="Theme.MaterialComponents.Light.Dialog.FixedSize"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge" parent="Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth" parent="Theme.MaterialComponents.Light.Dialog.MinWidth"/> + <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge" parent="Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge"/> + <style name="Theme.MaterialComponents.DayNight.DialogWhenLarge" parent="Theme.MaterialComponents.Light.DialogWhenLarge"/> + <style name="Theme.MaterialComponents.DayNight.NoActionBar" parent="Theme.MaterialComponents.Light.NoActionBar"/> + <style name="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.NoActionBar.Bridge"/> + <style name="Theme.MaterialComponents.Dialog" parent="Base.Theme.MaterialComponents.Dialog"/> + <style name="Theme.MaterialComponents.Dialog.Alert" parent="Base.Theme.MaterialComponents.Dialog.Alert"/> + <style name="Theme.MaterialComponents.Dialog.Alert.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.MaterialComponents.Dialog.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge"/> + <style name="Theme.MaterialComponents.Dialog.FixedSize" parent="Base.Theme.MaterialComponents.Dialog.FixedSize"/> + <style name="Theme.MaterialComponents.Dialog.FixedSize.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Theme.MaterialComponents.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Dialog.MinWidth"/> + <style name="Theme.MaterialComponents.Dialog.MinWidth.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.DialogWhenLarge"> + </style> + <style name="Theme.MaterialComponents.Light" parent="Base.Theme.MaterialComponents.Light"/> + <style name="Theme.MaterialComponents.Light.BottomSheetDialog" parent="Theme.MaterialComponents.Light.Dialog"> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item> + <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item> + </style> + <style name="Theme.MaterialComponents.Light.Bridge" parent="Base.Theme.MaterialComponents.Light.Bridge"/> + <style name="Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light.DarkActionBar"/> + <style name="Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/> + <style name="Theme.MaterialComponents.Light.Dialog" parent="Base.Theme.MaterialComponents.Light.Dialog"/> + <style name="Theme.MaterialComponents.Light.Dialog.Alert" parent="Base.Theme.MaterialComponents.Light.Dialog.Alert"/> + <style name="Theme.MaterialComponents.Light.Dialog.Alert.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.MaterialComponents.Light.Dialog.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge"/> + <style name="Theme.MaterialComponents.Light.Dialog.FixedSize" parent="Base.Theme.MaterialComponents.Light.Dialog.FixedSize"/> + <style name="Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge"> + <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item> + <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item> + <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item> + <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item> + </style> + <style name="Theme.MaterialComponents.Light.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"/> + <style name="Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge"> + <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item> + <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item> + </style> + <style name="Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.DialogWhenLarge"> + </style> + <style name="Theme.MaterialComponents.Light.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.MaterialComponents.Light.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.Bridge"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.MaterialComponents.NoActionBar"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="Theme.MaterialComponents.NoActionBar.Bridge" parent="Theme.MaterialComponents.Bridge"> + <item name="windowActionBar">false</item> + <item name="windowNoTitle">true</item> + </style> + <style name="ThemeOverlay.Design.TextInputEditText" parent=""/> + <style name="ThemeOverlay.Material3" parent="ThemeOverlay.MaterialComponents"/> + <style name="ThemeOverlay.Material3.ActionBar" parent="ThemeOverlay.MaterialComponents.ActionBar"/> + <style name="ThemeOverlay.Material3.AutoCompleteTextView" parent="Base.ThemeOverlay.Material3.AutoCompleteTextView"> + <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item> + </style> + <style name="ThemeOverlay.Material3.AutoCompleteTextView.FilledBox"> + <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.FilledBox</item> + </style> + <style name="ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense"> + <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.FilledBox.Dense</item> + </style> + <style name="ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox"> + <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.OutlinedBox</item> + </style> + <style name="ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense"> + <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense</item> + </style> + <style name="ThemeOverlay.Material3.BottomAppBar" parent=""> + <item name="colorControlNormal">?attr/colorOnSurface</item> + <item name="actionMenuTextColor">?attr/colorOnSurface</item> + <item name="toolbarNavigationButtonStyle">@style/Widget.Material3.BottomAppBar.Button.Navigation</item> + </style> + <style name="ThemeOverlay.Material3.BottomAppBar.Legacy" parent=""> + <item name="colorControlNormal">?attr/colorOnSurface</item> + <item name="actionMenuTextColor">?attr/colorOnSurface</item> + </style> + <style name="ThemeOverlay.Material3.BottomSheetDialog" parent="Base.ThemeOverlay.Material3.BottomSheetDialog"/> + <style name="ThemeOverlay.Material3.Button" parent=""> + + <item name="colorOnContainer">@macro/m3_comp_filled_button_label_text_color</item> + <item name="colorContainer">@macro/m3_comp_filled_button_container_color</item> + </style> + <style name="ThemeOverlay.Material3.Button.ElevatedButton" parent="ThemeOverlay.Material3.Button.TextButton"> + + <item name="colorContainer">@macro/m3_comp_elevated_button_container_color</item> + </style> + <style name="ThemeOverlay.Material3.Button.IconButton" parent="ThemeOverlay.Material3.Button.TextButton"> + + <item name="colorOnContainer">@macro/m3_comp_icon_button_selected_icon_color</item> + <item name="colorOnContainerUnchecked">@macro/m3_comp_icon_button_unselected_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.Button.IconButton.Filled" parent="ThemeOverlay.Material3.Button"> + + <item name="colorOnContainer">@macro/m3_comp_filled_icon_button_toggle_selected_icon_color</item> + <item name="colorOnContainerUnchecked">@macro/m3_comp_filled_icon_button_toggle_unselected_icon_color</item> + <item name="colorContainer">@macro/m3_comp_filled_icon_button_container_color</item> + </style> + <style name="ThemeOverlay.Material3.Button.IconButton.Filled.Tonal" parent="ThemeOverlay.Material3.Button.TonalButton"> + + <item name="colorOnContainer">@macro/m3_comp_filled_tonal_icon_button_toggle_selected_icon_color</item> + <item name="colorOnContainerUnchecked">@macro/m3_comp_filled_tonal_icon_button_toggle_unselected_icon_color</item> + <item name="colorContainer">@macro/m3_comp_filled_tonal_icon_button_container_color</item> + </style> + <style name="ThemeOverlay.Material3.Button.TextButton" parent=""> + + <item name="colorOnContainer">@macro/m3_comp_text_button_label_text_color</item> + <item name="colorContainer">@android:color/transparent</item> + </style> + <style name="ThemeOverlay.Material3.Button.TextButton.Snackbar"> + + <item name="colorOnContainer">?attr/colorPrimaryInverse</item> + </style> + <style name="ThemeOverlay.Material3.Button.TonalButton"> + + <item name="colorOnContainer">@macro/m3_comp_filled_tonal_button_label_text_color</item> + <item name="colorContainer">@macro/m3_comp_filled_tonal_button_container_color</item> + </style> + <style name="ThemeOverlay.Material3.Chip" parent=""> + + <item name="colorControlNormal">@color/m3_chip_text_color</item> + </style> + <style name="ThemeOverlay.Material3.Chip.Assist" parent=""> + + <item name="colorControlNormal">@color/m3_assist_chip_icon_tint_color</item> + </style> + <style name="ThemeOverlay.Material3.Dark" parent="ThemeOverlay.MaterialComponents.Dark"> + + <item name="android:colorBackground">@color/m3_sys_color_dark_background</item> + <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item> + <item name="colorSurface">@color/m3_sys_color_dark_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_dark_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_dark_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_dark_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_dark_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_dark_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_dark_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_dark_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_dark_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_dark_outline_variant</item> + <item name="colorError">@color/m3_sys_color_dark_error</item> + <item name="colorOnError">@color/m3_sys_color_dark_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item> + </style> + <style name="ThemeOverlay.Material3.Dark.ActionBar" parent="ThemeOverlay.MaterialComponents.Dark.ActionBar"/> + <style name="ThemeOverlay.Material3.DayNight.BottomSheetDialog" parent="ThemeOverlay.Material3.BottomSheetDialog"/> + <style name="ThemeOverlay.Material3.DayNight.SideSheetDialog" parent="ThemeOverlay.Material3.SideSheetDialog"/> + <style name="ThemeOverlay.Material3.Dialog" parent="Base.ThemeOverlay.Material3.Dialog"/> + <style name="ThemeOverlay.Material3.Dialog.Alert" parent="ThemeOverlay.MaterialComponents.Dialog.Alert"> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item> + <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_alert_dialog_elevation</item> + </style> + <style name="ThemeOverlay.Material3.DynamicColors.Dark" parent="ThemeOverlay.Material3.Dark"/> + <style name="ThemeOverlay.Material3.DynamicColors.DayNight" parent="ThemeOverlay.Material3.DynamicColors.Light"/> + <style name="ThemeOverlay.Material3.DynamicColors.Light" parent="ThemeOverlay.Material3.Light"/> + <style name="ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary" parent=""> + <item name="colorContainer">@macro/m3_comp_extended_fab_primary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_extended_fab_primary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary" parent=""> + <item name="colorContainer">@macro/m3_comp_extended_fab_secondary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_extended_fab_secondary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface" parent=""> + <item name="colorContainer">@macro/m3_comp_extended_fab_surface_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_extended_fab_surface_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary" parent=""> + <item name="colorContainer">@macro/m3_comp_extended_fab_tertiary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_extended_fab_tertiary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.FloatingActionButton.Primary" parent=""> + <item name="colorContainer">@macro/m3_comp_fab_primary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_fab_primary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.FloatingActionButton.Secondary" parent=""> + <item name="colorContainer">@macro/m3_comp_fab_secondary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_fab_secondary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.FloatingActionButton.Surface" parent=""> + <item name="colorContainer">@macro/m3_comp_fab_surface_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_fab_surface_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.FloatingActionButton.Tertiary" parent=""> + <item name="colorContainer">@macro/m3_comp_fab_tertiary_container_color</item> + <item name="colorOnContainer">@macro/m3_comp_fab_tertiary_icon_color</item> + </style> + <style name="ThemeOverlay.Material3.HarmonizedColors" parent=""> + <item name="colorError">@color/material_harmonized_color_error</item> + <item name="colorOnError">@color/material_harmonized_color_on_error</item> + <item name="colorErrorContainer">@color/material_harmonized_color_error_container</item> + <item name="colorOnErrorContainer">@color/material_harmonized_color_on_error_container</item> + </style> + <style name="ThemeOverlay.Material3.HarmonizedColors.Empty" parent=""/> + <style name="ThemeOverlay.Material3.Light" parent="ThemeOverlay.MaterialComponents.Light"> + + <item name="android:colorBackground">@color/m3_sys_color_light_background</item> + <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item> + <item name="colorSurface">@color/m3_sys_color_light_surface</item> + <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item> + <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item> + <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item> + <item name="colorSurfaceBright">@color/m3_sys_color_light_surface_bright</item> + <item name="colorSurfaceDim">@color/m3_sys_color_light_surface_dim</item> + <item name="colorSurfaceContainer">@color/m3_sys_color_light_surface_container</item> + <item name="colorSurfaceContainerLow">@color/m3_sys_color_light_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/m3_sys_color_light_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/m3_sys_color_light_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/m3_sys_color_light_surface_container_highest</item> + <item name="colorOutline">@color/m3_sys_color_light_outline</item> + <item name="colorOutlineVariant">@color/m3_sys_color_light_outline_variant</item> + <item name="colorError">@color/m3_sys_color_light_error</item> + <item name="colorOnError">@color/m3_sys_color_light_on_error</item> + <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item> + <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item> + + + <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item> + <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item> + <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item> + <item name="android:textColorHint">@color/m3_hint_foreground</item> + <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item> + <item name="android:textColorHighlight">@color/m3_highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item> + <item name="android:textColorLink">?attr/colorPrimary</item> + <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item> + <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item> + </style> + <style name="ThemeOverlay.Material3.MaterialAlertDialog" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"> + <item name="alertDialogStyle">@style/MaterialAlertDialog.Material3</item> + <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_alert_dialog_elevation</item> + <item name="android:checkedTextViewStyle" ns1:ignore="NewApi">@style/Widget.Material3.CheckedTextView</item> + <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="buttonBarPositiveButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="buttonBarNegativeButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="buttonBarNeutralButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item> + <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.Material3.Title.Panel</item> + <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.Material3.Title.Icon</item> + <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.Material3.Title.Text</item> + <item name="materialAlertDialogBodyTextStyle">@style/MaterialAlertDialog.Material3.Body.Text</item> + <item name="android:windowAnimationStyle">@style/MaterialAlertDialog.Material3.Animation</item> + </style> + <style name="ThemeOverlay.Material3.MaterialAlertDialog.Centered"> + <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.Material3.Title.Panel.CenterStacked</item> + <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.Material3.Title.Icon.CenterStacked</item> + <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.Material3.Title.Text.CenterStacked</item> + </style> + <style name="ThemeOverlay.Material3.MaterialCalendar" parent="ThemeOverlay.Material3.Dialog"> + <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_datepicker_elevation</item> + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item> + + + <item name="materialCalendarHeaderLayout">@style/Widget.Material3.MaterialCalendar.HeaderLayout</item> + <item name="materialCalendarHeaderDivider">@style/Widget.Material3.MaterialCalendar.HeaderDivider</item> + <item name="materialCalendarHeaderTitle">@style/Widget.Material3.MaterialCalendar.HeaderTitle</item> + <item name="materialCalendarHeaderSelection">@style/Widget.Material3.MaterialCalendar.HeaderSelection</item> + <item name="materialCalendarHeaderCancelButton">@style/Widget.Material3.MaterialCalendar.HeaderCancelButton</item> + <item name="materialCalendarHeaderConfirmButton">@style/Widget.Material3.Button.TextButton</item> + <item name="materialCalendarHeaderToggleButton">@style/Widget.Material3.MaterialCalendar.HeaderToggleButton</item> + + + <item name="materialCalendarYearNavigationButton">@style/Widget.Material3.MaterialCalendar.YearNavigationButton</item> + <item name="materialCalendarMonthNavigationButton">@style/Widget.Material3.MaterialCalendar.MonthNavigationButton</item> + + + <item name="materialCalendarDayOfWeekLabel">@style/Widget.Material3.MaterialCalendar.DayOfWeekLabel</item> + <item name="materialCalendarDay">@style/Widget.Material3.MaterialCalendar.DayTextView</item> + <item name="materialCalendarMonth">@style/Widget.Material3.MaterialCalendar.MonthTextView</item> + + + <item name="buttonBarPositiveButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + <item name="buttonBarNegativeButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item> + </style> + <style name="ThemeOverlay.Material3.MaterialCalendar.Fullscreen"> + <item name="android:windowIsFloating">false</item> + <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_datepicker_elevation</item> + <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarHeaderLayout">@style/Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen</item> + <item name="materialCalendarHeaderSelection">@style/Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen</item> + </style> + <style name="ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton" parent="ThemeOverlay.Material3.Button.TextButton"> + <item name="colorOnContainer">?attr/colorOnSurfaceVariant</item> + </style> + <style name="ThemeOverlay.Material3.MaterialTimePicker" parent="ThemeOverlay.Material3.Dialog"> + <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_timepicker_window_elevation</item> + <item name="chipStyle">@style/Widget.Material3.MaterialTimePicker.Display</item> + <item name="textInputStyle">@style/Widget.Material3.MaterialTimePicker.Display.TextInputLayout</item> + <item name="materialDisplayDividerStyle">@style/Widget.Material3.MaterialTimePicker.Display.Divider</item> + <item name="materialButtonOutlinedStyle">@style/Widget.Material3.MaterialTimePicker.Button</item> + <item name="materialClockStyle">@style/Widget.Material3.MaterialTimePicker.Clock</item> + <item name="materialTimePickerStyle">@style/Widget.Material3.MaterialTimePicker</item> + <item name="imageButtonStyle">@style/Widget.Material3.MaterialTimePicker.ImageButton</item> + <item name="materialTimePickerTitleStyle">@style/TextAppearance.Material3.MaterialTimePicker.Title</item> + </style> + <style name="ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText" parent="ThemeOverlay.Material3.TextInputEditText.OutlinedBox"> + <item name="editTextStyle">@style/Widget.Material3.MaterialTimePicker.Display.TextInputEditText</item> + + <item name="android:textViewStyle">@style/Widget.Material3.MaterialTimePicker.Display.HelperText</item> + </style> + <style name="ThemeOverlay.Material3.NavigationView" parent=""> + <item name="android:listDivider">?attr/colorOutline</item> + </style> + <style name="ThemeOverlay.Material3.PersonalizedColors" parent=""> + + <item name="colorPrimary">@color/material_personalized_color_primary</item> + <item name="colorOnPrimary">@color/material_personalized_color_on_primary</item> + <item name="colorPrimaryInverse">@color/material_personalized_color_primary_inverse</item> + <item name="colorPrimaryContainer">@color/material_personalized_color_primary_container</item> + <item name="colorOnPrimaryContainer">@color/material_personalized_color_on_primary_container</item> + <item name="colorSecondary">@color/material_personalized_color_secondary</item> + <item name="colorOnSecondary">@color/material_personalized_color_on_secondary</item> + <item name="colorSecondaryContainer">@color/material_personalized_color_secondary_container</item> + <item name="colorOnSecondaryContainer">@color/material_personalized_color_on_secondary_container</item> + <item name="colorTertiary">@color/material_personalized_color_tertiary</item> + <item name="colorOnTertiary">@color/material_personalized_color_on_tertiary</item> + <item name="colorTertiaryContainer">@color/material_personalized_color_tertiary_container</item> + <item name="colorOnTertiaryContainer">@color/material_personalized_color_on_tertiary_container</item> + <item name="android:colorBackground">@color/material_personalized_color_background</item> + <item name="colorOnBackground">@color/material_personalized_color_on_background</item> + <item name="colorSurface">@color/material_personalized_color_surface</item> + <item name="colorOnSurface">@color/material_personalized_color_on_surface</item> + <item name="colorSurfaceVariant">@color/material_personalized_color_surface_variant</item> + <item name="colorOnSurfaceVariant">@color/material_personalized_color_on_surface_variant</item> + <item name="colorSurfaceInverse">@color/material_personalized_color_surface_inverse</item> + <item name="colorOnSurfaceInverse">@color/material_personalized_color_on_surface_inverse</item> + <item name="colorSurfaceBright">@color/material_personalized_color_surface_bright</item> + <item name="colorSurfaceDim">@color/material_personalized_color_surface_dim</item> + <item name="colorSurfaceContainer">@color/material_personalized_color_surface_container</item> + <item name="colorSurfaceContainerLow">@color/material_personalized_color_surface_container_low</item> + <item name="colorSurfaceContainerHigh">@color/material_personalized_color_surface_container_high</item> + <item name="colorSurfaceContainerLowest">@color/material_personalized_color_surface_container_lowest</item> + <item name="colorSurfaceContainerHighest">@color/material_personalized_color_surface_container_highest</item> + <item name="colorOutline">@color/material_personalized_color_outline</item> + <item name="colorOutlineVariant">@color/material_personalized_color_outline_variant</item> + <item name="colorError">@color/material_personalized_color_error</item> + <item name="colorOnError">@color/material_personalized_color_on_error</item> + <item name="colorErrorContainer">@color/material_personalized_color_error_container</item> + <item name="colorOnErrorContainer">@color/material_personalized_color_on_error_container</item> + + + <item name="android:textColorPrimary">@color/material_personalized_color_primary_text</item> + <item name="android:textColorPrimaryInverse">@color/material_personalized_color_primary_text_inverse</item> + <item name="android:textColorSecondary">@color/material_personalized_color_secondary_text</item> + <item name="android:textColorSecondaryInverse">@color/material_personalized_color_secondary_text_inverse</item> + <item name="android:textColorTertiary">@color/material_personalized_color_secondary_text</item> + <item name="android:textColorTertiaryInverse">@color/material_personalized_color_secondary_text_inverse</item> + <item name="android:textColorPrimaryDisableOnly">@color/material_personalized_primary_text_disable_only</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/material_personalized_primary_inverse_text_disable_only</item> + <item name="android:textColorHint">@color/material_personalized_hint_foreground</item> + <item name="android:textColorHintInverse">@color/material_personalized_hint_foreground_inverse</item> + <item name="android:textColorHighlight">@color/material_personalized__highlighted_text</item> + <item name="android:textColorHighlightInverse">@color/material_personalized__highlighted_text_inverse</item> + <item name="android:textColorAlertDialogListItem">@color/material_personalized_color_primary_text</item> + <item name="android:colorControlActivated">@color/material_personalized_color_control_activated</item> + <item name="android:colorControlNormal">@color/material_personalized_color_control_normal</item> + <item name="android:colorControlHighlight">@color/material_personalized_color_control_highlight</item> + </style> + <style name="ThemeOverlay.Material3.Search" parent=""> + <item name="actionMenuTextColor">?attr/colorOnSurfaceVariant</item> + <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item> + <item name="actionOverflowButtonStyle">@style/Widget.Material3.Search.ActionButton.Overflow</item> + <item name="toolbarNavigationButtonStyle">@style/Widget.Material3.Search.Toolbar.Button.Navigation</item> + </style> + <style name="ThemeOverlay.Material3.SideSheetDialog" parent="Base.ThemeOverlay.Material3.SideSheetDialog"/> + <style name="ThemeOverlay.Material3.Snackbar" parent=""> + <item name="colorOnSurface">?attr/colorOnBackground</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText" parent="Base.ThemeOverlay.Material3.TextInputEditText"> + <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText.FilledBox"> + <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.FilledBox</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense"> + <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.FilledBox.Dense</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText.OutlinedBox"> + <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.OutlinedBox</item> + </style> + <style name="ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense"> + <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.OutlinedBox.Dense</item> + </style> + <style name="ThemeOverlay.Material3.Toolbar.Surface" parent=""> + <item name="actionMenuTextColor">@macro/m3_comp_top_app_bar_small_trailing_icon_color</item> + <item name="colorControlNormal">@macro/m3_comp_top_app_bar_small_trailing_icon_color</item> + </style> + <style name="ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon" parent=""> + <item name="colorControlNormal">?attr/colorSecondary</item> + </style> + <style name="ThemeOverlay.MaterialComponents" parent="ThemeOverlay.AppCompat"/> + <style name="ThemeOverlay.MaterialComponents.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar"/> + <style name="ThemeOverlay.MaterialComponents.ActionBar.Primary" parent="ThemeOverlay.AppCompat.ActionBar"> + <item name="android:textColorPrimary">?attr/colorOnPrimary</item> + <item name="android:textColorSecondary">@color/material_on_primary_emphasis_medium</item> + <item name="actionMenuTextColor">?attr/colorOnPrimary</item> + <item name="colorControlNormal">?attr/colorOnPrimary</item> + + <item name="android:colorBackground">?attr/colorPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.ActionBar.Surface" parent="ThemeOverlay.AppCompat.ActionBar"> + <item name="android:textColorPrimary">@color/material_on_surface_emphasis_high_type</item> + <item name="android:textColorSecondary">@color/material_on_surface_emphasis_medium</item> + <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item> + <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item> + + <item name="android:colorBackground">?attr/colorSurface</item> + </style> + <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView" parent=""> + <item name="colorControlActivated">?attr/colorPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox"> + <item name="autoCompleteTextViewStyle"> + @style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense"> + <item name="autoCompleteTextViewStyle"> + @style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox"> + <item name="autoCompleteTextViewStyle"> + @style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense"> + <item name="autoCompleteTextViewStyle"> + @style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.BottomAppBar.Primary" parent=""> + <item name="colorControlNormal">?attr/colorOnPrimary</item> + <item name="actionMenuTextColor">?attr/colorOnPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.BottomAppBar.Surface" parent=""> + <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item> + <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog"/> + <style name="ThemeOverlay.MaterialComponents.Dark" parent="ThemeOverlay.AppCompat.Dark"> + <item name="android:colorBackground">@color/design_dark_default_color_background</item> + <item name="colorOnBackground">@color/design_dark_default_color_on_background</item> + <item name="colorSurface">@color/design_dark_default_color_surface</item> + <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item> + <item name="colorError">@color/design_dark_default_color_error</item> + <item name="colorOnError">@color/design_dark_default_color_on_error</item> + </style> + <style name="ThemeOverlay.MaterialComponents.Dark.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/> + <style name="ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog" parent="ThemeOverlay.MaterialComponents.BottomSheetDialog"/> + <style name="ThemeOverlay.MaterialComponents.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"/> + <style name="ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert"/> + <style name="ThemeOverlay.MaterialComponents.Light" parent="ThemeOverlay.AppCompat.Light"> + <item name="android:colorBackground">@color/design_default_color_background</item> + <item name="colorOnBackground">@color/design_default_color_on_background</item> + <item name="colorSurface">@color/design_default_color_surface</item> + <item name="colorOnSurface">@color/design_default_color_on_surface</item> + <item name="colorError">@color/design_default_color_error</item> + <item name="colorOnError">@color/design_default_color_on_error</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog"> + <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Panel</item> + <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Icon</item> + <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Text</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered" parent="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog"> + <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked</item> + <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked</item> + <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"/> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar"/> + <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner"/> + <style name="ThemeOverlay.MaterialComponents.MaterialCalendar" parent="ThemeOverlay.MaterialComponents.Dialog"> + <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item> + + + <item name="materialCalendarHeaderLayout">@style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout</item> + <item name="materialCalendarHeaderDivider">@style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider</item> + <item name="materialCalendarHeaderTitle">@style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle</item> + <item name="materialCalendarHeaderSelection">@style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection</item> + <item name="materialCalendarHeaderCancelButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton</item> + <item name="materialCalendarHeaderConfirmButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton</item> + <item name="materialCalendarHeaderToggleButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton</item> + + + <item name="materialCalendarYearNavigationButton">@style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton</item> + <item name="materialCalendarMonthNavigationButton">@style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton</item> + + + <item name="materialCalendarDayOfWeekLabel">@style/Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel</item> + <item name="materialCalendarDay">@style/Widget.MaterialComponents.MaterialCalendar.DayTextView</item> + <item name="materialCalendarMonth">@style/Widget.MaterialComponents.MaterialCalendar.MonthTextView</item> + + + <item name="buttonBarPositiveButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + <item name="buttonBarNegativeButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item> + </style> + <style name="ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen" parent="ThemeOverlay.MaterialComponents.MaterialCalendar"> + <item name="android:windowIsFloating">false</item> + <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar.Fullscreen</item> + <item name="materialCalendarHeaderLayout">@style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen</item> + <item name="materialCalendarHeaderSelection">@style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TextInputEditText" parent="ThemeOverlay.Design.TextInputEditText"> + <item name="colorControlActivated">?attr/colorPrimary</item> + <item name="android:editTextBackground">@null</item> + <item name="editTextBackground">@null</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox"> + <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense"> + <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox"> + <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense"> + <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense + </item> + </style> + <style name="ThemeOverlay.MaterialComponents.TimePicker" parent="ThemeOverlay.MaterialComponents.Dialog"> + <item name="chipStyle">@style/Widget.MaterialComponents.TimePicker.Display</item> + <item name="textInputStyle">@style/Widget.MaterialComponents.TimePicker.Display.TextInputLayout</item> + <item name="materialDisplayDividerStyle">@style/Widget.MaterialComponents.TimePicker.Display.Divider</item> + <item name="materialClockStyle">@style/Widget.MaterialComponents.TimePicker.Clock</item> + <item name="imageButtonStyle">@style/Widget.MaterialComponents.TimePicker.ImageButton</item> + <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.TimePicker.Button</item> + <item name="materialTimePickerTitleStyle">@style/TextAppearance.MaterialComponents.TimePicker.Title</item> + <item name="elevationOverlayEnabled">false</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TimePicker.Display" parent=""> + <item name="elevationOverlayEnabled">false</item> + </style> + <style name="ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText" parent="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox"> + <item name="editTextStyle">@style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText</item> + + <item name="android:textViewStyle">@style/Widget.MaterialComponents.TimePicker.Display.HelperText</item> + </style> + <style name="ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary" parent=""> + <item name="colorControlNormal">?attr/colorOnSurface</item> + </style> + <style name="ThemeOverlay.MaterialComponents.Toolbar.Primary" parent=""> + <item name="colorControlNormal">?attr/colorOnPrimary</item> + <item name="actionMenuTextColor">?attr/colorOnPrimary</item> + </style> + <style name="ThemeOverlay.MaterialComponents.Toolbar.Surface" parent=""> + <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item> + <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="Widget.Design.AppBarLayout" parent="android:Widget"> + <item name="android:background">?attr/colorPrimary</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/design_appbar_state_list_animator + </item> + <item name="android:keyboardNavigationCluster" ns1:ignore="NewApi">true</item> + <item name="android:touchscreenBlocksFocus" ns1:ignore="NewApi">true</item> + </style> + <style name="Widget.Design.BottomNavigationView" parent=""> + <item name="compatShadowEnabled">true</item> + <item name="elevation">@dimen/design_bottom_navigation_elevation</item> + <item name="enforceTextAppearance">false</item> + <item name="enforceMaterialTheme">false</item> + <item name="itemBackground">?attr/selectableItemBackgroundBorderless</item> + <item name="itemHorizontalTranslationEnabled">true</item> + <item name="itemIconSize">@dimen/design_bottom_navigation_icon_size</item> + <item name="labelVisibilityMode">auto</item> + <item name="itemPaddingTop">@dimen/design_bottom_navigation_margin</item> + <item name="itemPaddingBottom">@dimen/design_bottom_navigation_label_padding</item> + <item name="itemActiveIndicatorStyle">@null</item> + <item name="android:minHeight">@dimen/design_bottom_navigation_height</item> + </style> + <style name="Widget.Design.BottomSheet.Modal" parent="android:Widget"> + <item name="enforceMaterialTheme">false</item> + <item name="android:background">?android:attr/colorBackground</item> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/design_bottom_sheet_modal_elevation + </item> + <item name="behavior_peekHeight">auto</item> + <item name="behavior_hideable">true</item> + <item name="behavior_skipCollapsed">false</item> + <item name="shapeAppearance">@null</item> + <item name="shapeAppearanceOverlay">@null</item> + <item name="backgroundTint">@null</item> + </style> + <style name="Widget.Design.CollapsingToolbar" parent="android:Widget"> + <item name="expandedTitleMargin">32dp</item> + <item name="statusBarScrim">?attr/colorPrimaryDark</item> + </style> + <style name="Widget.Design.FloatingActionButton" parent="android:Widget"> + <item name="android:background">@drawable/design_fab_background</item> + <item name="android:clickable">true</item> + <item name="android:focusable">true</item> + <item name="backgroundTint">?attr/colorAccent</item> + <item name="fabSize">auto</item> + <item name="elevation">@dimen/design_fab_elevation</item> + <item name="hoveredFocusedTranslationZ">@dimen/design_fab_translation_z_hovered_focused</item> + <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item> + <item name="rippleColor">?attr/colorControlHighlight</item> + <item name="borderWidth">@dimen/design_fab_border_width</item> + <item name="maxImageSize">@dimen/design_fab_image_size</item> + <item name="showMotionSpec">@animator/design_fab_show_motion_spec</item> + <item name="hideMotionSpec">@animator/design_fab_hide_motion_spec</item> + </style> + <style name="Widget.Design.NavigationView" parent="Widget.Design.ScrimInsetsFrameLayout"> + <item name="elevation">@dimen/design_navigation_elevation</item> + <item name="itemIconPadding">@dimen/design_navigation_item_icon_padding</item> + <item name="itemHorizontalPadding">@dimen/design_navigation_item_horizontal_padding</item> + <item name="android:background">?android:attr/windowBackground</item> + <item name="android:fitsSystemWindows">true</item> + <item name="android:maxWidth">@dimen/design_navigation_max_width</item> + <item name="subheaderInsetStart">?attr/listPreferredItemPaddingLeft</item> + <item name="subheaderInsetEnd">?attr/listPreferredItemPaddingRight</item> + <item name="drawerLayoutCornerSize">0dp</item> + </style> + <style name="Widget.Design.ScrimInsetsFrameLayout" parent=""> + <item name="insetForeground">#4000</item> + </style> + <style name="Widget.Design.Snackbar" parent="android:Widget"> + <item name="android:minWidth">@dimen/design_snackbar_min_width</item> + <item name="android:maxWidth">@dimen/design_snackbar_max_width</item> + <item name="android:background">@drawable/design_snackbar_background</item> + <item name="android:paddingLeft">@dimen/design_snackbar_padding_horizontal</item> + <item name="android:paddingRight">@dimen/design_snackbar_padding_horizontal</item> + <item name="elevation">@dimen/design_snackbar_elevation</item> + <item name="maxActionInlineWidth">@dimen/design_snackbar_action_inline_max_width</item> + <item name="animationMode">slide</item> + <item name="actionTextColorAlpha">@dimen/design_snackbar_action_text_color_alpha</item> + </style> + <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout"> + <item name="tabGravity">fill</item> + <item name="tabMode">fixed</item> + <item name="tabIndicatorFullWidth">true</item> + </style> + <style name="Widget.Design.TextInputEditText" parent="Widget.AppCompat.EditText"> + <item name="enforceMaterialTheme">false</item> + <item name="enforceTextAppearance">false</item> + </style> + <style name="Widget.Design.TextInputLayout" parent="android:Widget"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Design.TextInputEditText</item> + <item name="enforceMaterialTheme">false</item> + <item name="enforceTextAppearance">false</item> + + <item name="boxBackgroundMode">none</item> + <item name="boxStrokeColor">@color/design_box_stroke_color</item> + <item name="errorIconDrawable">@null</item> + <item name="startIconTint">@color/design_icon_tint</item> + <item name="endIconTint">@color/design_icon_tint</item> + <item name="passwordToggleDrawable">@drawable/design_password_eye</item> + <item name="passwordToggleTint">@color/design_icon_tint</item> + <item name="passwordToggleContentDescription">@string/password_toggle_content_description</item> + + <item name="counterTextAppearance">@style/TextAppearance.Design.Counter</item> + <item name="counterOverflowTextAppearance">@style/TextAppearance.Design.Counter.Overflow</item> + <item name="errorTextAppearance">@style/TextAppearance.Design.Error</item> + <item name="helperTextTextAppearance">@style/TextAppearance.Design.HelperText</item> + <item name="hintTextAppearance">@style/TextAppearance.Design.Hint</item> + <item name="placeholderTextAppearance">@style/TextAppearance.Design.Placeholder</item> + <item name="prefixTextAppearance">@style/TextAppearance.Design.Prefix</item> + <item name="suffixTextAppearance">@style/TextAppearance.Design.Suffix</item> + + <item name="counterTextColor">@null</item> + <item name="counterOverflowTextColor">@null</item> + <item name="errorTextColor">@null</item> + <item name="helperTextTextColor">@null</item> + <item name="hintTextColor">@null</item> + <item name="placeholderTextColor">@null</item> + <item name="prefixTextColor">@null</item> + <item name="suffixTextColor">@null</item> + + <item name="shapeAppearance">@null</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Widget.Material3.ActionBar.Solid" parent="Base.Widget.Material3.ActionBar.Solid"/> + <style name="Widget.Material3.ActionMode" parent="Base.Widget.Material3.ActionMode"/> + <style name="Widget.Material3.AppBarLayout" parent="Widget.MaterialComponents.AppBarLayout.Surface"> + <item name="liftOnScroll">true</item> + <item name="android:background">@macro/m3_comp_top_app_bar_small_container_color</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_appbar_state_list_animator + </item> + + + <item name="android:outlineAmbientShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + <item name="android:outlineSpotShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + </style> + <style name="Widget.Material3.AutoCompleteTextView.FilledBox" parent="Widget.MaterialComponents.AutoCompleteTextView.FilledBox"> + <item name="android:textAppearance">@macro/m3_comp_filled_autocomplete_text_field_input_text_type</item> + <item name="simpleItemSelectedColor">@macro/m3_comp_filled_autocomplete_menu_list_item_selected_container_color</item> + <item name="simpleItemSelectedRippleColor">@color/m3_simple_item_ripple_color</item> + <item name="simpleItemLayout">@layout/m3_auto_complete_simple_item</item> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_comp_filled_autocomplete_menu_container_elevation</item> + </style> + <style name="Widget.Material3.AutoCompleteTextView.FilledBox.Dense" parent="Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense"> + <item name="android:textAppearance">@macro/m3_comp_filled_autocomplete_text_field_input_text_type</item> + <item name="simpleItemSelectedColor">@macro/m3_comp_filled_autocomplete_menu_list_item_selected_container_color</item> + <item name="simpleItemSelectedRippleColor">@color/m3_simple_item_ripple_color</item> + <item name="simpleItemLayout">@layout/m3_auto_complete_simple_item</item> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_comp_filled_autocomplete_menu_container_elevation</item> + </style> + <style name="Widget.Material3.AutoCompleteTextView.OutlinedBox" parent="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox"> + <item name="android:textAppearance">@macro/m3_comp_outlined_autocomplete_text_field_input_text_type</item> + <item name="simpleItemSelectedColor">@macro/m3_comp_outlined_autocomplete_menu_list_item_selected_container_color</item> + <item name="simpleItemSelectedRippleColor">@color/m3_simple_item_ripple_color</item> + <item name="simpleItemLayout">@layout/m3_auto_complete_simple_item</item> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_comp_outlined_autocomplete_menu_container_elevation</item> + </style> + <style name="Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense" parent="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense"> + <item name="android:textAppearance">@macro/m3_comp_outlined_autocomplete_text_field_input_text_type</item> + <item name="simpleItemSelectedColor">@macro/m3_comp_outlined_autocomplete_menu_list_item_selected_container_color</item> + <item name="simpleItemSelectedRippleColor">@color/m3_simple_item_ripple_color</item> + <item name="simpleItemLayout">@layout/m3_auto_complete_simple_item</item> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_comp_outlined_autocomplete_menu_container_elevation</item> + </style> + <style name="Widget.Material3.Badge" parent="Widget.MaterialComponents.Badge"> + <item name="backgroundColor">@macro/m3_comp_badge_color</item> + <item name="badgeTextColor">@macro/m3_comp_badge_large_label_text_color</item> + <item name="offsetAlignmentMode">edge</item> + + <item name="horizontalOffset">@dimen/m3_badge_offset</item> + <item name="verticalOffset">@dimen/m3_badge_offset</item> + <item name="badgeWidth">@dimen/m3_badge_size</item> + <item name="badgeHeight">@dimen/m3_badge_size</item> + <item name="badgeShapeAppearance">@style/ShapeAppearance.M3.Comp.Badge.Shape</item> + + + <item name="badgeWithTextWidth">@dimen/m3_badge_with_text_size</item> + <item name="badgeWithTextHeight">@dimen/m3_badge_with_text_size</item> + <item name="horizontalOffsetWithText">@dimen/m3_badge_with_text_offset</item> + <item name="verticalOffsetWithText">@dimen/m3_badge_with_text_offset</item> + <item name="badgeTextAppearance">@macro/m3_comp_badge_large_label_text_type</item> + <item name="badgeWithTextShapeAppearance">@style/ShapeAppearance.M3.Comp.Badge.Shape</item> + </style> + <style name="Widget.Material3.BottomAppBar" parent="Widget.MaterialComponents.BottomAppBar"> + <item name="android:minHeight">@dimen/m3_bottomappbar_height</item> + <item name="maxButtonHeight">@dimen/m3_bottomappbar_height</item> + <item name="fabAnimationMode">slide</item> + <item name="fabAnchorMode">embed</item> + <item name="removeEmbeddedFabElevation">true</item> + <item name="fabAlignmentMode">end</item> + <item name="menuAlignmentMode">start</item> + <item name="fabAlignmentModeEndMargin">@dimen/m3_bottomappbar_fab_end_margin</item> + <item name="fabCradleMargin">@dimen/m3_bottomappbar_fab_cradle_margin</item> + <item name="fabCradleRoundedCornerRadius"> + @dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius + </item> + <item name="fabCradleVerticalOffset"> + @dimen/m3_bottomappbar_fab_cradle_vertical_offset + </item> + <item name="elevation">@dimen/m3_comp_bottom_app_bar_container_elevation</item> + <item name="addElevationShadow">false</item> + + <item name="backgroundTint">@macro/m3_comp_bottom_app_bar_container_color</item> + <item name="navigationIconTint">?attr/colorOnSurfaceVariant</item> + <item name="android:paddingLeft">@dimen/m3_bottomappbar_horizontal_padding</item> + <item name="android:paddingStart">@dimen/m3_bottomappbar_horizontal_padding</item> + <item name="android:paddingRight">@dimen/m3_bottomappbar_horizontal_padding</item> + <item name="android:paddingEnd">@dimen/m3_bottomappbar_horizontal_padding</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.BottomAppBar</item> + </style> + <style name="Widget.Material3.BottomAppBar.Button.Navigation" parent="Widget.AppCompat.Toolbar.Button.Navigation"> + <item name="android:minWidth">@dimen/mtrl_min_touch_target_size</item> + <item name="android:scaleType">center</item> + <item name="android:background">?attr/controlBackground</item> + </style> + <style name="Widget.Material3.BottomAppBar.Legacy" parent="Widget.MaterialComponents.BottomAppBar"> + <item name="fabAnimationMode">slide</item> + <item name="fabAnchorMode">cradle</item> + <item name="removeEmbeddedFabElevation">false</item> + <item name="fabAlignmentMode">center</item> + <item name="menuAlignmentMode">auto</item> + <item name="fabAlignmentModeEndMargin">@null</item> + <item name="fabCradleMargin">@dimen/m3_bottomappbar_fab_cradle_margin</item> + <item name="fabCradleRoundedCornerRadius"> + @dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius + </item> + <item name="fabCradleVerticalOffset"> + @dimen/m3_bottomappbar_fab_cradle_vertical_offset + </item> + <item name="elevation">@dimen/m3_comp_bottom_app_bar_container_elevation</item> + + <item name="backgroundTint">@macro/m3_comp_bottom_app_bar_container_color</item> + <item name="navigationIconTint">?attr/colorOnSurfaceVariant</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.BottomAppBar.Legacy</item> + </style> + <style name="Widget.Material3.BottomNavigationView" parent="Base.Widget.Material3.BottomNavigationView"> + <item name="compatShadowEnabled">false</item> + </style> + <style name="Widget.Material3.BottomNavigationView.ActiveIndicator" parent=""> + <item name="android:width">@dimen/m3_bottom_nav_item_active_indicator_width</item> + <item name="android:height">@dimen/m3_bottom_nav_item_active_indicator_height</item> + <item name="marginHorizontal">@dimen/m3_bottom_nav_item_active_indicator_margin_horizontal</item> + <item name="shapeAppearance">@style/ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape</item> + <item name="android:color">@macro/m3_comp_navigation_bar_active_indicator_color</item> + </style> + <style name="Widget.Material3.BottomSheet" parent="Widget.MaterialComponents.BottomSheet"> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_bottom_sheet_elevation</item> + <item name="marginLeftSystemWindowInsets">true</item> + <item name="marginRightSystemWindowInsets">true</item> + <item name="paddingBottomSystemWindowInsets">true</item> + <item name="paddingTopSystemWindowInsets">true</item> + <item name="paddingLeftSystemWindowInsets">false</item> + <item name="paddingRightSystemWindowInsets">false</item> + <item name="shapeAppearance">@macro/m3_comp_sheet_bottom_docked_container_shape</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Corner.Top</item> + <item name="shouldRemoveExpandedCorners">false</item> + <item name="backgroundTint">@macro/m3_comp_sheet_bottom_docked_container_color</item> + </style> + <style name="Widget.Material3.BottomSheet.DragHandle" parent=""> + <item name="android:scaleType">center</item> + <item name="android:contentDescription">@string/bottomsheet_drag_handle_content_description</item> + <item name="android:minWidth">@dimen/mtrl_min_touch_target_size</item> + <item name="android:minHeight">@dimen/mtrl_min_touch_target_size</item> + <item name="android:paddingBottom">@dimen/m3_bottom_sheet_drag_handle_bottom_padding</item> + <item name="srcCompat">@drawable/mtrl_bottomsheet_drag_handle</item> + <item name="tint">@macro/m3_comp_sheet_bottom_docked_drag_handle_color</item> + </style> + <style name="Widget.Material3.BottomSheet.Modal"> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_bottom_sheet_modal_elevation</item> + </style> + <style name="Widget.Material3.Button" parent="Widget.MaterialComponents.Button"> + <item name="enforceTextAppearance">false</item> + <item name="android:maxWidth">@dimen/m3_btn_max_width</item> + <item name="android:paddingLeft">@dimen/m3_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_padding_right</item> + <item name="android:paddingTop">@dimen/m3_btn_padding_top</item> + <item name="android:paddingBottom">@dimen/m3_btn_padding_bottom</item> + <item name="android:insetTop">@dimen/m3_btn_inset</item> + <item name="android:insetBottom">@dimen/m3_btn_inset</item> + <item name="android:textAppearance">@macro/m3_comp_filled_button_label_text_type</item> + <item name="shapeAppearance">@style/ShapeAppearance.M3.Comp.FilledButton.Container.Shape</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/m3_btn_state_list_anim</item> + <item name="elevation">@dimen/m3_comp_filled_button_container_elevation</item> + <item name="android:textColor">@color/m3_button_foreground_color_selector</item> + <item name="iconTint">@color/m3_button_foreground_color_selector</item> + <item name="iconSize">@dimen/m3_comp_filled_button_with_icon_icon_size</item> + <item name="backgroundTint">@color/m3_button_background_color_selector</item> + <item name="rippleColor">@color/m3_button_ripple_color_selector</item> + </style> + <style name="Widget.Material3.Button.ElevatedButton"> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_btn_elevated_btn_state_list_anim + </item> + <item name="android:textColor">@color/m3_text_button_foreground_color_selector</item> + <item name="elevation">@dimen/m3_btn_elevated_btn_elevation</item> + <item name="iconTint">@color/m3_text_button_foreground_color_selector</item> + <item name="rippleColor">@color/m3_text_button_ripple_color_selector</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.ElevatedButton</item> + </style> + <style name="Widget.Material3.Button.ElevatedButton.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item> + </style> + <style name="Widget.Material3.Button.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item> + </style> + <style name="Widget.Material3.Button.IconButton" parent="Widget.Material3.Button.TextButton"> + <item name="android:minWidth">@dimen/m3_btn_icon_only_min_width</item> + <item name="android:paddingLeft">@dimen/m3_btn_icon_only_default_padding</item> + <item name="android:paddingRight">@dimen/m3_btn_icon_only_default_padding</item> + <item name="android:paddingTop">@dimen/m3_btn_icon_only_default_padding</item> + <item name="android:paddingBottom">@dimen/m3_btn_icon_only_default_padding</item> + <item name="android:insetLeft">@dimen/m3_btn_inset</item> + <item name="android:insetRight">@dimen/m3_btn_inset</item> + <item name="iconSize">@dimen/m3_btn_icon_only_default_size</item> + <item name="iconTint">@color/m3_icon_button_icon_color_selector</item> + <item name="iconPadding">@dimen/m3_btn_icon_only_icon_padding</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.IconButton</item> + </style> + <style name="Widget.Material3.Button.IconButton.Filled"> + <item name="backgroundTint">@color/m3_filled_icon_button_container_color_selector</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.IconButton.Filled</item> + </style> + <style name="Widget.Material3.Button.IconButton.Filled.Tonal"> + <item name="rippleColor">@color/m3_tonal_button_ripple_color_selector</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.IconButton.Filled.Tonal</item> + </style> + <style name="Widget.Material3.Button.IconButton.Outlined"> + <item name="strokeColor">@color/m3_button_outline_color_selector</item> + <item name="strokeWidth">@dimen/m3_comp_outlined_icon_button_unselected_outline_width</item> + </style> + <style name="Widget.Material3.Button.OutlinedButton" parent="Widget.Material3.Button.TextButton"> + <item name="android:paddingLeft">@dimen/m3_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_padding_right</item> + <item name="strokeColor">@color/m3_button_outline_color_selector</item> + <item name="strokeWidth">@dimen/m3_comp_outlined_button_outline_width</item> + </style> + <style name="Widget.Material3.Button.OutlinedButton.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item> + </style> + <style name="Widget.Material3.Button.TextButton" parent="Widget.MaterialComponents.Button.TextButton"> + <item name="enforceTextAppearance">false</item> + <item name="android:maxWidth">@dimen/m3_btn_max_width</item> + <item name="android:paddingLeft">@dimen/m3_btn_text_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_text_btn_padding_right</item> + <item name="android:paddingTop">@dimen/m3_btn_padding_top</item> + <item name="android:paddingBottom">@dimen/m3_btn_padding_bottom</item> + <item name="android:insetTop">@dimen/m3_btn_inset</item> + <item name="android:insetBottom">@dimen/m3_btn_inset</item> + <item name="android:textAppearance">@macro/m3_comp_text_button_label_text_type</item> + <item name="shapeAppearance">@style/ShapeAppearance.M3.Comp.TextButton.Container.Shape</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TextButton</item> + <item name="android:textColor">@color/m3_text_button_foreground_color_selector</item> + <item name="iconTint">@color/m3_text_button_foreground_color_selector</item> + <item name="backgroundTint">@color/m3_text_button_background_color_selector</item> + <item name="rippleColor">@color/m3_text_button_ripple_color_selector</item> + </style> + <style name="Widget.Material3.Button.TextButton.Dialog"> + <item name="android:minWidth">@dimen/m3_btn_dialog_btn_min_width</item> + <item name="android:layout_marginLeft">@dimen/m3_btn_dialog_btn_spacing</item> + <item name="android:layout_marginStart">@dimen/m3_btn_dialog_btn_spacing</item> + <item name="android:lines">1</item> + <item name="android:ellipsize">end</item> + <item name="android:singleLine">true</item> + </style> + <style name="Widget.Material3.Button.TextButton.Dialog.Flush"> + <item name="android:layout_marginStart">0dp</item> + <item name="android:layout_marginLeft">0dp</item> + </style> + <style name="Widget.Material3.Button.TextButton.Dialog.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_text_btn_icon_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_text_btn_icon_padding_right</item> + </style> + <style name="Widget.Material3.Button.TextButton.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_text_btn_icon_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_text_btn_icon_padding_right</item> + </style> + <style name="Widget.Material3.Button.TextButton.Snackbar"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TextButton.Snackbar</item> + </style> + <style name="Widget.Material3.Button.TonalButton"> + <item name="rippleColor">@color/m3_tonal_button_ripple_color_selector</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TonalButton</item> + </style> + <style name="Widget.Material3.Button.TonalButton.Icon"> + <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item> + <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item> + </style> + <style name="Widget.Material3.Button.UnelevatedButton"> + <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item> + <item name="elevation">0dp</item> + </style> + <style name="Widget.Material3.CardView.Elevated" parent="Base.Widget.Material3.CardView"> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_card_elevated_state_list_anim + </item> + <item name="strokeWidth">0dp</item> + <item name="cardElevation">@dimen/m3_card_elevated_elevation</item> + <item name="cardBackgroundColor">@macro/m3_comp_elevated_card_container_color</item> + <item name="checkedIconSize">@dimen/m3_comp_elevated_card_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_elevated_card_container_shape</item> + </style> + <style name="Widget.Material3.CardView.Filled" parent="Base.Widget.Material3.CardView"> + <item name="strokeWidth">0dp</item> + <item name="cardElevation">@dimen/m3_comp_filled_card_container_elevation</item> + <item name="cardBackgroundColor">@macro/m3_comp_filled_card_container_color</item> + <item name="checkedIconSize">@dimen/m3_comp_filled_card_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_filled_card_container_shape</item> + </style> + <style name="Widget.Material3.CardView.Outlined" parent="Base.Widget.Material3.CardView"> + <item name="strokeWidth">@dimen/m3_comp_outlined_card_outline_width</item> + <item name="cardElevation">@dimen/m3_comp_outlined_card_container_elevation</item> + <item name="cardBackgroundColor">@macro/m3_comp_outlined_card_container_color</item> + <item name="checkedIconSize">@dimen/m3_comp_outlined_card_icon_size</item> + <item name="shapeAppearance">@macro/m3_comp_outlined_card_container_shape</item> + </style> + <style name="Widget.Material3.CheckedTextView" parent="Widget.MaterialComponents.CheckedTextView"> + <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + </style> + <style name="Widget.Material3.Chip.Assist" parent="Base.Widget.Material3.Chip"> + <item name="android:checkable">false</item> + <item name="chipIconVisible">true</item> + <item name="checkedIconVisible">false</item> + <item name="closeIconVisible">false</item> + + <item name="android:textColor">@color/m3_chip_assist_text_color</item> + + <item name="shapeAppearance">@macro/m3_comp_assist_chip_container_shape</item> + <item name="android:textAppearance">@macro/m3_comp_assist_chip_label_text_type</item> + <item name="chipMinHeight">@dimen/m3_comp_assist_chip_container_height</item> + <item name="chipIconSize">@dimen/m3_comp_assist_chip_with_icon_icon_size</item> + <item name="chipStrokeWidth">@dimen/m3_comp_assist_chip_flat_outline_width</item> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_comp_assist_chip_flat_container_elevation</item> + + <item name="chipStartPadding">8dp</item> + <item name="iconStartPadding">0dp</item> + <item name="iconEndPadding">0dp</item> + <item name="textStartPadding">8dp</item> + <item name="textEndPadding">8dp</item> + <item name="closeIconStartPadding">0dp</item> + <item name="closeIconEndPadding">0dp</item> + <item name="chipEndPadding">8dp</item> + + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Chip.Assist</item> + </style> + <style name="Widget.Material3.Chip.Assist.Elevated"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/m3_comp_assist_chip_elevated_container_elevation + </item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_elevated_chip_state_list_anim + </item> + <item name="chipStrokeColor">@android:color/transparent</item> + <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item> + </style> + <style name="Widget.Material3.Chip.Filter" parent="Base.Widget.Material3.Chip"> + <item name="android:checkable">true</item> + <item name="chipIconVisible">false</item> + <item name="closeIconVisible">false</item> + + <item name="checkedIcon">@drawable/ic_m3_chip_check</item> + + <item name="shapeAppearance">@macro/m3_comp_filter_chip_container_shape</item> + <item name="android:textAppearance">@macro/m3_comp_filter_chip_label_text_type</item> + <item name="chipMinHeight">@dimen/m3_comp_filter_chip_container_height</item> + <item name="chipIconSize">@dimen/m3_comp_filter_chip_with_icon_icon_size</item> + <item name="chipStrokeWidth">@dimen/m3_comp_filter_chip_flat_unselected_outline_width</item> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_comp_filter_chip_flat_container_elevation</item> + + <item name="chipStartPadding">8dp</item> + <item name="iconStartPadding">0dp</item> + + <item name="iconEndPadding">-2dp</item> + <item name="textStartPadding">8dp</item> + <item name="textEndPadding">6dp</item> + + <item name="closeIconStartPadding">-2dp</item> + <item name="closeIconEndPadding">0dp</item> + <item name="chipEndPadding">10dp</item> + </style> + <style name="Widget.Material3.Chip.Filter.Elevated"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/m3_comp_filter_chip_elevated_container_elevation</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_elevated_chip_state_list_anim + </item> + <item name="chipStrokeColor">@android:color/transparent</item> + <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item> + </style> + <style name="Widget.Material3.Chip.Input" parent="Base.Widget.Material3.Chip"> + <item name="android:checkable">true</item> + + <item name="shapeAppearance">@macro/m3_comp_input_chip_container_shape</item> + <item name="android:textAppearance">@macro/m3_comp_input_chip_label_text_type</item> + <item name="chipMinHeight">@dimen/m3_comp_input_chip_container_height</item> + <item name="chipIconSize">@dimen/m3_comp_input_chip_with_avatar_avatar_size</item> + <item name="chipStrokeWidth">@dimen/m3_comp_input_chip_unselected_outline_width</item> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_comp_input_chip_container_elevation</item> + + <item name="chipStartPadding">4dp</item> + <item name="iconStartPadding">0dp</item> + + <item name="iconEndPadding">0dp</item> + <item name="textStartPadding">8dp</item> + <item name="textEndPadding">8dp</item> + <item name="closeIconStartPadding">0dp</item> + <item name="closeIconEndPadding">4dp</item> + <item name="chipEndPadding">4dp</item> + </style> + <style name="Widget.Material3.Chip.Input.Elevated"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/m3_chip_elevated_elevation + </item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_elevated_chip_state_list_anim + </item> + <item name="chipStrokeColor">@android:color/transparent</item> + <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item> + </style> + <style name="Widget.Material3.Chip.Input.Icon" parent="Widget.Material3.Chip.Input"> + <item name="chipIconSize">@dimen/m3_comp_input_chip_with_leading_icon_leading_icon_size</item> + <item name="iconStartPadding">4dp</item> + </style> + <style name="Widget.Material3.Chip.Input.Icon.Elevated"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/m3_chip_elevated_elevation + </item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_elevated_chip_state_list_anim + </item> + <item name="chipStrokeColor">@android:color/transparent</item> + <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item> + </style> + <style name="Widget.Material3.Chip.Suggestion" parent="Base.Widget.Material3.Chip"> + <item name="android:checkable">true</item> + + <item name="chipIconVisible">false</item> + <item name="checkedIconVisible">false</item> + <item name="closeIconVisible">false</item> + + <item name="shapeAppearance">@macro/m3_comp_suggestion_chip_container_shape</item> + <item name="android:textAppearance">@macro/m3_comp_suggestion_chip_label_text_type</item> + <item name="chipMinHeight">@dimen/m3_comp_suggestion_chip_container_height</item> + <item name="chipIconSize">@dimen/m3_comp_suggestion_chip_with_leading_icon_leading_icon_size</item> + <item name="chipStrokeWidth">@dimen/m3_comp_suggestion_chip_flat_outline_width</item> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_comp_suggestion_chip_flat_container_elevation</item> + + <item name="chipStartPadding">8dp</item> + <item name="iconStartPadding">0dp</item> + + <item name="iconEndPadding">-2dp</item> + <item name="textStartPadding">8dp</item> + <item name="textEndPadding">6dp</item> + + <item name="closeIconStartPadding">-2dp</item> + <item name="closeIconEndPadding">0dp</item> + <item name="chipEndPadding">10dp</item> + </style> + <style name="Widget.Material3.Chip.Suggestion.Elevated"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/m3_comp_suggestion_chip_elevated_container_elevation + </item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/m3_elevated_chip_state_list_anim + </item> + <item name="chipStrokeColor">@android:color/transparent</item> + <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item> + </style> + <style name="Widget.Material3.ChipGroup" parent="Widget.MaterialComponents.ChipGroup"> + <item name="chipSpacingVertical">8dp</item> + </style> + <style name="Widget.Material3.CircularProgressIndicator" parent="Widget.MaterialComponents.CircularProgressIndicator"> + <item name="trackThickness">@dimen/m3_comp_circular_progress_indicator_active_indicator_width</item> + <item name="indicatorColor">@macro/m3_comp_circular_progress_indicator_active_indicator_color</item> + </style> + <style name="Widget.Material3.CircularProgressIndicator.ExtraSmall" parent="Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall"/> + <style name="Widget.Material3.CircularProgressIndicator.Medium" parent="Widget.MaterialComponents.CircularProgressIndicator.Medium"/> + <style name="Widget.Material3.CircularProgressIndicator.Small" parent="Widget.MaterialComponents.CircularProgressIndicator.Small"/> + <style name="Widget.Material3.CollapsingToolbar" parent="Base.Widget.Material3.CollapsingToolbar"> + <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger</item> + <item name="expandedTitleTextAppearance">?attr/textAppearanceHeadlineSmall</item> + </style> + <style name="Widget.Material3.CollapsingToolbar.Large" parent="Base.Widget.Material3.CollapsingToolbar"> + <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger_large</item> + <item name="collapsedTitleTextColor">@macro/m3_comp_top_app_bar_large_headline_color</item> + <item name="expandedTitleTextColor">@macro/m3_comp_top_app_bar_large_headline_color</item> + <item name="expandedTitleTextAppearance">@macro/m3_comp_top_app_bar_large_headline_type</item> + </style> + <style name="Widget.Material3.CollapsingToolbar.Medium" parent="Base.Widget.Material3.CollapsingToolbar"> + <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger_medium</item> + <item name="collapsedTitleTextColor">@macro/m3_comp_top_app_bar_medium_headline_color</item> + <item name="expandedTitleTextColor">@macro/m3_comp_top_app_bar_medium_headline_color</item> + <item name="expandedTitleTextAppearance">@macro/m3_comp_top_app_bar_medium_headline_type</item> + </style> + <style name="Widget.Material3.CompoundButton.CheckBox" parent="Base.Widget.Material3.CompoundButton.CheckBox"/> + <style name="Widget.Material3.CompoundButton.MaterialSwitch" parent="Widget.AppCompat.CompoundButton.Switch"> + <item name="android:thumb">@drawable/mtrl_switch_thumb</item> + <item name="track">@drawable/mtrl_switch_track</item> + <item name="trackDecoration">@drawable/mtrl_switch_track_decoration</item> + <item name="thumbTint">@color/mtrl_switch_thumb_tint</item> + <item name="thumbIconTint">@color/mtrl_switch_thumb_icon_tint</item> + <item name="trackTint">@color/mtrl_switch_track_tint</item> + <item name="trackDecorationTint">@color/mtrl_switch_track_decoration_tint</item> + <item name="switchPadding">@dimen/mtrl_switch_text_padding</item> + <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item> + <item name="android:minHeight">?attr/minTouchTargetSize</item> + </style> + <style name="Widget.Material3.CompoundButton.RadioButton" parent="Base.Widget.Material3.CompoundButton.RadioButton"/> + <style name="Widget.Material3.CompoundButton.Switch" parent="Base.Widget.Material3.CompoundButton.Switch"/> + <style name="Widget.Material3.DrawerLayout" parent="android:Widget"> + <item name="elevation">@dimen/m3_comp_navigation_drawer_modal_container_elevation</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Primary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Surface" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Primary" parent="Base.Widget.Material3.ExtendedFloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Secondary" parent="Base.Widget.Material3.ExtendedFloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Surface" parent="Base.Widget.Material3.ExtendedFloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface</item> + </style> + <style name="Widget.Material3.ExtendedFloatingActionButton.Tertiary" parent="Base.Widget.Material3.ExtendedFloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Large.Primary" parent="Base.Widget.Material3.FloatingActionButton.Large"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Large.Secondary" parent="Base.Widget.Material3.FloatingActionButton.Large"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Large.Surface" parent="Base.Widget.Material3.FloatingActionButton.Large"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Large.Tertiary" parent="Base.Widget.Material3.FloatingActionButton.Large"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Primary" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Primary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Secondary" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Secondary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Small.Primary" parent="Base.Widget.Material3.FloatingActionButton.Small"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Small.Secondary" parent="Base.Widget.Material3.FloatingActionButton.Small"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Small.Surface" parent="Base.Widget.Material3.FloatingActionButton.Small"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Small.Tertiary" parent="Base.Widget.Material3.FloatingActionButton.Small"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Surface" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Surface</item> + </style> + <style name="Widget.Material3.FloatingActionButton.Tertiary" parent="Base.Widget.Material3.FloatingActionButton"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Tertiary</item> + </style> + <style name="Widget.Material3.Light.ActionBar.Solid" parent="Base.Widget.Material3.Light.ActionBar.Solid"/> + <style name="Widget.Material3.LinearProgressIndicator" parent="Widget.MaterialComponents.LinearProgressIndicator"> + <item name="trackThickness">@dimen/m3_comp_linear_progress_indicator_active_indicator_height</item> + <item name="trackColor">@macro/m3_comp_linear_progress_indicator_track_color</item> + <item name="indicatorColor">@macro/m3_comp_linear_progress_indicator_active_indicator_color</item> + </style> + <style name="Widget.Material3.MaterialButtonToggleGroup" parent="Widget.MaterialComponents.MaterialButtonToggleGroup"/> + <style name="Widget.Material3.MaterialCalendar" parent="Widget.MaterialComponents.MaterialCalendar"> + <item name="android:windowFullscreen">false</item> + <item name="dayStyle">@style/Widget.Material3.MaterialCalendar.Day</item> + <item name="dayInvalidStyle">@style/Widget.Material3.MaterialCalendar.Day.Invalid</item> + <item name="daySelectedStyle">@style/Widget.Material3.MaterialCalendar.Day.Selected</item> + <item name="dayTodayStyle">@style/Widget.Material3.MaterialCalendar.Day.Today</item> + <item name="yearStyle">@style/Widget.Material3.MaterialCalendar.Year</item> + <item name="yearSelectedStyle">@style/Widget.Material3.MaterialCalendar.Year.Selected</item> + <item name="yearTodayStyle">@style/Widget.Material3.MaterialCalendar.Year.Today</item> + <item name="rangeFillColor">?attr/colorSurfaceVariant</item> + <item name="shapeAppearance">?attr/shapeAppearanceCornerExtraLarge</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Day" parent="Widget.Material3.MaterialCalendar.Item"> + <item name="android:width">@dimen/mtrl_calendar_day_width</item> + <item name="android:height">@dimen/mtrl_calendar_day_height</item> + <item name="android:insetTop">@dimen/mtrl_calendar_day_vertical_padding</item> + <item name="android:insetBottom">@dimen/mtrl_calendar_day_vertical_padding</item> + <item name="android:insetLeft">@dimen/mtrl_calendar_day_horizontal_padding</item> + <item name="android:insetRight">@dimen/mtrl_calendar_day_horizontal_padding</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Day.Invalid"> + <item name="itemTextColor">@color/m3_calendar_item_disabled_text</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Day.Selected"> + <item name="itemFillColor">?attr/colorPrimary</item> + <item name="itemTextColor">?attr/colorOnPrimary</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Day.Today"> + <item name="itemTextColor">?attr/colorPrimary</item> + <item name="itemStrokeColor">?attr/colorPrimary</item> + <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item> + </style> + <style name="Widget.Material3.MaterialCalendar.DayOfWeekLabel" parent="Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel"> + <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + </style> + <style name="Widget.Material3.MaterialCalendar.DayTextView" parent="Widget.MaterialComponents.MaterialCalendar.DayTextView"> + <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Fullscreen"> + <item name="android:windowFullscreen">true</item> + <item name="shapeAppearance">@style/ShapeAppearance.Material3.Corner.None</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderCancelButton" parent="Widget.Material3.Button.TextButton"> + <item name="iconTint">?attr/colorOnSurfaceVariant</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderDivider" parent="Widget.MaterialComponents.MaterialCalendar.HeaderDivider"> + <item name="android:visibility">gone</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderLayout" parent="Widget.MaterialComponents.MaterialCalendar.HeaderLayout"> + <item name="android:background">@android:color/transparent</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen"> + <item name="android:layout_height">@dimen/mtrl_calendar_header_height_fullscreen</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderSelection" parent="Widget.MaterialComponents.MaterialCalendar.HeaderSelection"> + <item name="android:textAppearance">?attr/textAppearanceHeadlineLarge</item> + <item name="android:textColor">?attr/colorOnSurface</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen"> + <item name="android:textAppearance">?attr/textAppearanceHeadlineSmall</item> + <item name="android:maxLines">1</item> + <item name="autoSizeMaxTextSize">20sp</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderTitle" parent="Widget.MaterialComponents.MaterialCalendar.HeaderTitle"> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item> + <item name="autoSizeMaxTextSize">14sp</item> + </style> + <style name="Widget.Material3.MaterialCalendar.HeaderToggleButton" parent="Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton"> + <item name="android:tint">?attr/colorOnSurfaceVariant</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Item" parent=""> + <item name="itemFillColor">@android:color/transparent</item> + <item name="itemTextColor">?attr/colorOnSurface</item> + <item name="itemStrokeColor">@color/m3_calendar_item_stroke_color</item> + <item name="itemStrokeWidth">1dp</item> + <item name="itemShapeAppearance">@style/ShapeAppearance.Material3.Corner.Full</item> + </style> + <style name="Widget.Material3.MaterialCalendar.MonthNavigationButton" parent="Base.Widget.Material3.MaterialCalendar.NavigationButton"> + <item name="iconPadding">0dp</item> + <item name="iconGravity">textStart</item> + </style> + <style name="Widget.Material3.MaterialCalendar.MonthTextView" parent="Widget.MaterialComponents.MaterialCalendar.MonthTextView"> + <item name="android:textAppearance">?attr/textAppearanceTitleSmall</item> + <item name="android:textColor">?attr/colorOnSurfaceVariant</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Year" parent="Widget.Material3.MaterialCalendar.Item"> + <item name="android:width">@dimen/mtrl_calendar_year_width</item> + <item name="android:height">@dimen/mtrl_calendar_year_height</item> + <item name="android:insetTop">@dimen/mtrl_calendar_year_vertical_padding</item> + <item name="android:insetBottom">@dimen/mtrl_calendar_year_vertical_padding</item> + <item name="android:insetLeft">@dimen/mtrl_calendar_year_horizontal_padding</item> + <item name="android:insetRight">@dimen/mtrl_calendar_year_horizontal_padding</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Year.Selected"> + <item name="itemFillColor">?attr/colorPrimary</item> + <item name="itemTextColor">?attr/colorOnPrimary</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.Material3.MaterialCalendar.Year.Today"> + <item name="itemTextColor">?attr/colorPrimary</item> + <item name="itemStrokeColor">?attr/colorPrimary</item> + <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item> + </style> + <style name="Widget.Material3.MaterialCalendar.YearNavigationButton" parent="Base.Widget.Material3.MaterialCalendar.NavigationButton"/> + <style name="Widget.Material3.MaterialDivider" parent="Widget.MaterialComponents.MaterialDivider"> + <item name="dividerColor">@macro/m3_comp_divider_color</item> + <item name="dividerThickness">@dimen/m3_comp_divider_thickness</item> + </style> + <style name="Widget.Material3.MaterialDivider.Heavy"> + <item name="dividerThickness">@dimen/m3_divider_heavy_thickness</item> + </style> + <style name="Widget.Material3.MaterialTimePicker" parent="Widget.MaterialComponents.TimePicker"> + <item name="shapeAppearance">@macro/m3_comp_time_picker_container_shape</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Button" parent="Widget.MaterialComponents.TimePicker.Button"> + <item name="android:textAppearance">@macro/m3_comp_time_picker_period_selector_label_text_type</item> + <item name="android:textColor">@color/m3_timepicker_button_text_color</item> + <item name="backgroundTint">@color/m3_timepicker_button_background_color</item> + <item name="iconTint">@color/m3_timepicker_button_text_color</item> + <item name="rippleColor">@color/m3_timepicker_button_ripple_color</item> + <item name="strokeColor">@macro/m3_comp_time_picker_period_selector_outline_color</item> + <item name="strokeWidth">@dimen/m3_comp_time_picker_period_selector_outline_width</item> + <item name="shapeAppearance">@macro/m3_comp_time_picker_period_selector_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + + <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Clock" parent="Widget.MaterialComponents.TimePicker.Clock"> + <item name="clockFaceBackgroundColor">@macro/m3_comp_time_picker_clock_dial_color</item> + <item name="clockHandColor">@macro/m3_comp_time_picker_clock_dial_selector_handle_container_color</item> + <item name="clockNumberTextColor">@color/m3_timepicker_clock_text_color</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Display" parent="Widget.MaterialComponents.TimePicker.Display"> + <item name="android:textAppearance">@macro/m3_comp_time_picker_time_selector_label_text_type</item> + <item name="android:textColor">@color/m3_timepicker_display_text_color</item> + <item name="chipBackgroundColor">@color/m3_timepicker_display_background_color</item> + <item name="rippleColor">@color/m3_timepicker_display_ripple_color</item> + <item name="shapeAppearance">@macro/m3_comp_time_picker_time_selector_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Display.Divider" parent="Widget.MaterialComponents.TimePicker.Display.Divider"> + <item name="android:textAppearance">@macro/m3_comp_time_picker_time_selector_separator_type</item> + <item name="android:textColor">@macro/m3_comp_time_picker_time_selector_separator_color</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Display.HelperText" parent="Widget.MaterialComponents.TimePicker.Display.HelperText"> + <item name="android:textAppearance">@macro/m3_comp_time_input_time_input_field_supporting_text_type</item> + <item name="android:textColor">@macro/m3_comp_time_input_time_input_field_supporting_text_color</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Display.TextInputEditText" parent="Widget.Material3.TextInputEditText.OutlinedBox"> + <item name="android:textAppearance">?attr/textAppearanceDisplayLarge</item> + <item name="android:textColor">@macro/m3_comp_time_input_time_input_field_label_text_color</item> + <item name="android:textSize" ns1:ignore="SpUsage">56dp</item> + <item name="android:paddingTop">0dp</item> + <item name="android:paddingBottom">0dp</item> + <item name="android:inputType">number</item> + <item name="android:maxLength">2</item> + <item name="android:textAlignment">center</item> + <item name="android:minEms">2</item> + <item name="android:gravity">center</item> + <item name="android:paddingStart">0dp</item> + <item name="android:paddingEnd">0dp</item> + <item name="android:includeFontPadding">false</item> + <item name="boxStrokeColor">@color/m3_timepicker_time_input_stroke_color</item> + <item name="boxStrokeWidthFocused">@dimen/m3_comp_time_input_time_input_field_focus_outline_width</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.Display.TextInputLayout" parent="Widget.Material3.TextInputLayout.OutlinedBox"> + <item name="shapeAppearance">@macro/m3_comp_time_input_time_input_field_container_shape</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText</item> + </style> + <style name="Widget.Material3.MaterialTimePicker.ImageButton" parent="Widget.MaterialComponents.TimePicker.ImageButton"> + <item name="iconTint">@color/m3_timepicker_secondary_text_button_text_color</item> + <item name="rippleColor">@color/m3_timepicker_secondary_text_button_ripple_color</item> + <item name="shapeAppearance">@style/ShapeAppearance.Material3.Corner.Full</item> + </style> + <style name="Widget.Material3.NavigationRailView" parent="Widget.MaterialComponents.NavigationRailView"> + <item name="android:minWidth">@dimen/m3_navigation_rail_default_width</item> + <item name="android:background">@macro/m3_comp_navigation_rail_container_color</item> + <item name="backgroundTint">@null</item> + <item name="elevation">@dimen/m3_navigation_rail_elevation</item> + <item name="itemActiveIndicatorStyle">@style/Widget.Material3.NavigationRailView.ActiveIndicator</item> + <item name="itemRippleColor">@color/m3_navigation_rail_ripple_color_selector</item> + <item name="itemIconSize">@dimen/m3_comp_navigation_rail_icon_size</item> + <item name="itemIconTint">@color/m3_navigation_rail_item_with_indicator_icon_tint</item> + <item name="itemTextColor">@color/m3_navigation_rail_item_with_indicator_label_tint</item> + <item name="itemPaddingTop">@dimen/m3_navigation_rail_item_padding_top</item> + <item name="itemPaddingBottom">@dimen/m3_navigation_rail_item_padding_bottom</item> + <item name="itemMinHeight">@dimen/m3_navigation_rail_item_min_height</item> + <item name="itemTextAppearanceInactive">@macro/m3_comp_navigation_rail_label_text_type</item> + <item name="itemTextAppearanceActive">@macro/m3_comp_navigation_rail_label_text_type</item> + </style> + <style name="Widget.Material3.NavigationRailView.ActiveIndicator" parent=""> + <item name="android:width">@dimen/m3_navigation_rail_item_active_indicator_width</item> + <item name="android:height">@dimen/m3_navigation_rail_item_active_indicator_height</item> + <item name="marginHorizontal">@dimen/m3_navigation_rail_item_active_indicator_margin_horizontal</item> + <item name="shapeAppearance">@style/ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape</item> + <item name="android:color">@macro/m3_comp_navigation_rail_active_indicator_color</item> + </style> + <style name="Widget.Material3.NavigationView" parent="Widget.MaterialComponents.NavigationView"> + <item name="android:background">@macro/m3_comp_navigation_drawer_container_color</item> + <item name="android:maxWidth">@dimen/m3_comp_navigation_drawer_container_width</item> + <item name="subheaderColor">@macro/m3_comp_navigation_drawer_headline_color</item> + <item name="subheaderTextAppearance">@macro/m3_comp_navigation_drawer_headline_type</item> + <item name="elevation">@dimen/m3_comp_navigation_drawer_standard_container_elevation</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.NavigationView</item> + <item name="itemShapeAppearance">@style/ShapeAppearance.Material3.Corner.Full</item> + <item name="itemShapeInsetStart">@dimen/m3_navigation_item_shape_inset_start</item> + <item name="itemShapeInsetTop">@dimen/m3_navigation_item_shape_inset_top</item> + <item name="itemShapeInsetEnd">@dimen/m3_navigation_item_shape_inset_end</item> + <item name="itemShapeInsetBottom">@dimen/m3_navigation_item_shape_inset_bottom</item> + <item name="itemIconPadding">@dimen/m3_navigation_item_icon_padding</item> + <item name="itemHorizontalPadding">@dimen/m3_navigation_item_horizontal_padding</item> + <item name="itemVerticalPadding">@dimen/m3_navigation_item_vertical_padding</item> + <item name="itemTextAppearance">@macro/m3_comp_navigation_drawer_label_text_type</item> + <item name="itemIconSize">@dimen/m3_comp_navigation_drawer_icon_size</item> + <item name="itemIconTint">@color/m3_navigation_item_icon_tint</item> + <item name="itemRippleColor">@color/m3_navigation_item_ripple_color</item> + <item name="itemShapeFillColor">@color/m3_navigation_item_background_color</item> + <item name="itemTextColor">@color/m3_navigation_item_text_color</item> + <item name="topInsetScrimEnabled">false</item> + <item name="bottomInsetScrimEnabled">false</item> + <item name="dividerInsetStart">@dimen/m3_navigation_menu_divider_horizontal_padding</item> + <item name="dividerInsetEnd">@dimen/m3_navigation_menu_divider_horizontal_padding</item> + <item name="subheaderInsetStart">@dimen/m3_navigation_menu_headline_horizontal_padding</item> + <item name="subheaderInsetEnd">@dimen/m3_navigation_menu_headline_horizontal_padding</item> + <item name="drawerLayoutCornerSize">@dimen/m3_navigation_drawer_layout_corner_size</item> + </style> + <style name="Widget.Material3.PopupMenu" parent="Widget.MaterialComponents.PopupMenu"> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item> + </style> + <style name="Widget.Material3.PopupMenu.ContextMenu" parent="Widget.MaterialComponents.PopupMenu.ContextMenu"> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item> + </style> + <style name="Widget.Material3.PopupMenu.ListPopupWindow" parent="Widget.MaterialComponents.PopupMenu.ListPopupWindow"> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item> + </style> + <style name="Widget.Material3.PopupMenu.Overflow" parent="Widget.MaterialComponents.PopupMenu.Overflow"> + <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item> + </style> + <style name="Widget.Material3.Search.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"> + <item name="android:minWidth">@dimen/mtrl_min_touch_target_size</item> + </style> + <style name="Widget.Material3.Search.Toolbar.Button.Navigation" parent="Widget.AppCompat.Toolbar.Button.Navigation"> + <item name="android:minWidth">@dimen/mtrl_min_touch_target_size</item> + </style> + <style name="Widget.Material3.SearchBar" parent="android:Widget"> + <item name="enforceMaterialTheme">true</item> + <item name="android:minHeight">@dimen/m3_searchbar_height</item> + <item name="android:paddingStart">@dimen/m3_searchbar_padding_start</item> + <item name="android:textAppearance">@style/TextAppearance.Material3.SearchBar</item> + <item name="elevation">@dimen/m3_searchbar_elevation</item> + <item name="maxButtonHeight">@dimen/m3_searchbar_height</item> + <item name="defaultMarginsEnabled">true</item> + <item name="defaultScrollFlagsEnabled">true</item> + <item name="hideNavigationIcon">false</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.SearchBar</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Search</item> + + + <item name="android:outlineAmbientShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + <item name="android:outlineSpotShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + </style> + <style name="Widget.Material3.SearchBar.Outlined"> + <item name="elevation">0dp</item> + <item name="strokeWidth">@dimen/m3_searchbar_outlined_stroke_width</item> + <item name="strokeColor">?attr/colorOutline</item> + </style> + <style name="Widget.Material3.SearchView" parent="android:Widget"> + <item name="enforceMaterialTheme">true</item> + <item name="android:elevation">@dimen/m3_searchview_elevation</item> + <item name="android:textAppearance">@style/TextAppearance.Material3.SearchView</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.SearchView</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Search</item> + </style> + <style name="Widget.Material3.SearchView.Prefix" parent="android:Widget.TextView"> + <item name="android:textAppearance">@style/TextAppearance.Material3.SearchView.Prefix</item> + <item name="android:paddingTop">8dp</item> + <item name="android:paddingBottom">8dp</item> + <item name="android:paddingEnd">16dp</item> + <item name="android:paddingRight">16dp</item> + </style> + <style name="Widget.Material3.SearchView.Toolbar" parent="Widget.AppCompat.Toolbar"> + + <item name="android:paddingLeft">0dp</item> + <item name="android:paddingStart">0dp</item> + <item name="android:paddingRight">0dp</item> + <item name="android:paddingEnd">0dp</item> + <item name="contentInsetStartWithNavigation">0dp</item> + <item name="navigationIconTint">?attr/colorOnSurface</item> + <item name="android:minHeight">@dimen/m3_searchview_height</item> + <item name="maxButtonHeight">@dimen/m3_searchview_height</item> + </style> + <style name="Widget.Material3.SideSheet" parent=""> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">@macro/m3_comp_sheet_side_docked_container_color</item> + + <item name="android:layout_gravity">right</item> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_side_sheet_standard_elevation</item> + <item name="shapeAppearance">@style/ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape</item> + </style> + <style name="Widget.Material3.SideSheet.Detached"> + + <item name="android:layout_margin">@dimen/m3_side_sheet_margin_detached</item> + <item name="shapeAppearance">@macro/m3_comp_sheet_side_detached_container_shape</item> + </style> + <style name="Widget.Material3.SideSheet.Modal"> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_side_sheet_modal_elevation</item> + <item name="shapeAppearance">@macro/m3_comp_sheet_side_docked_modal_container_shape</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Corner.Left</item> + </style> + <style name="Widget.Material3.SideSheet.Modal.Detached"> + <item name="android:layout_margin">@dimen/m3_side_sheet_margin_detached</item> + <item name="shapeAppearance">@macro/m3_comp_sheet_side_detached_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Widget.Material3.Slider" parent="Widget.MaterialComponents.Slider"> + <item name="haloColor">@color/m3_slider_halo_color</item> + <item name="labelStyle">@style/Widget.Material3.Slider.Label</item> + <item name="thumbColor">@color/m3_slider_thumb_color</item> + <item name="tickColorActive">@color/m3_slider_inactive_track_color</item> + <item name="tickColorInactive">@color/m3_slider_active_track_color</item> + <item name="trackColorActive">@color/m3_slider_active_track_color</item> + <item name="trackColorInactive">@color/m3_slider_inactive_track_color</item> + <item name="trackHeight">@dimen/m3_slider_inactive_track_height</item> + <item name="thumbElevation">@dimen/m3_slider_thumb_elevation</item> + </style> + <style name="Widget.Material3.Slider.Label" parent="Widget.Material3.Tooltip"> + <item name="android:textColor">@macro/m3_comp_slider_label_label_text_color</item> + <item name="backgroundTint">@macro/m3_comp_slider_label_container_color</item> + </style> + <style name="Widget.Material3.Snackbar" parent="Base.Widget.Material3.Snackbar"> + + <item name="android:background">@null</item> + <item name="android:layout_margin">@dimen/m3_snackbar_margin</item> + <item name="animationMode">fade</item> + <item name="shapeAppearance">@macro/m3_comp_snackbar_container_shape</item> + <item name="elevation">@dimen/m3_comp_snackbar_container_elevation</item> + </style> + <style name="Widget.Material3.Snackbar.FullWidth" parent="Base.Widget.Material3.Snackbar"> + <item name="shapeAppearance">@style/ShapeAppearance.Material3.Corner.None</item> + </style> + <style name="Widget.Material3.Snackbar.TextView" parent="Widget.MaterialComponents.Snackbar.TextView"> + <item name="android:alpha">@dimen/m3_snackbar_action_text_color_alpha</item> + <item name="android:textColor">@macro/m3_comp_snackbar_supporting_text_color</item> + <item name="android:textAppearance">@macro/m3_comp_snackbar_supporting_text_type</item> + </style> + <style name="Widget.Material3.TabLayout" parent="Base.Widget.Material3.TabLayout"/> + <style name="Widget.Material3.TabLayout.OnSurface" parent="Base.Widget.Material3.TabLayout.OnSurface"/> + <style name="Widget.Material3.TabLayout.Secondary" parent="Base.Widget.Material3.TabLayout.Secondary"/> + <style name="Widget.Material3.TextInputEditText.FilledBox" parent="Widget.MaterialComponents.TextInputEditText.FilledBox"> + <item name="android:textAppearance">@macro/m3_comp_filled_text_field_input_text_type</item> + <item name="android:textColor">@color/m3_textfield_input_text_color</item> + </style> + <style name="Widget.Material3.TextInputEditText.FilledBox.Dense" parent="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense"> + <item name="android:textAppearance">@macro/m3_comp_filled_text_field_input_text_type</item> + <item name="android:textColor">@color/m3_textfield_input_text_color</item> + </style> + <style name="Widget.Material3.TextInputEditText.OutlinedBox" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox"> + <item name="android:textAppearance">@macro/m3_comp_outlined_text_field_input_text_type</item> + <item name="android:textColor">@color/m3_textfield_input_text_color</item> + </style> + <style name="Widget.Material3.TextInputEditText.OutlinedBox.Dense" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense"> + <item name="android:textAppearance">@macro/m3_comp_outlined_text_field_input_text_type</item> + <item name="android:textColor">@color/m3_textfield_input_text_color</item> + </style> + <style name="Widget.Material3.TextInputLayout.FilledBox" parent="Widget.MaterialComponents.TextInputLayout.FilledBox"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.FilledBox</item> + + <item name="boxStrokeColor">@color/m3_textfield_stroke_color</item> + <item name="boxStrokeErrorColor">@macro/m3_comp_filled_text_field_error_active_indicator_color</item> + <item name="boxBackgroundColor">@color/m3_textfield_filled_background_color</item> + <item name="helperTextTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="counterTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="counterOverflowTextColor">@macro/m3_comp_filled_text_field_error_supporting_text_color</item> + <item name="hintTextColor">@color/m3_textfield_label_color</item> + <item name="android:textColorHint">@color/m3_textfield_label_color</item> + <item name="placeholderTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="prefixTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="suffixTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="errorTextColor">@macro/m3_comp_filled_text_field_error_supporting_text_color</item> + <item name="errorIconTint">@macro/m3_comp_filled_text_field_error_trailing_icon_color</item> + <item name="startIconTint">@color/m3_textfield_indicator_text_color</item> + <item name="endIconTint">@color/m3_textfield_indicator_text_color</item> + <item name="passwordToggleDrawable">@drawable/m3_password_eye</item> + + + <item name="counterTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="counterOverflowTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="errorTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="helperTextTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="hintTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + + <item name="placeholderTextAppearance">@macro/m3_comp_filled_text_field_input_text_type</item> + <item name="prefixTextAppearance">?attr/textAppearanceTitleMedium</item> + <item name="suffixTextAppearance">?attr/textAppearanceTitleMedium</item> + <item name="shapeAppearance">@macro/m3_comp_filled_text_field_container_shape</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Corner.Top</item> + </style> + <style name="Widget.Material3.TextInputLayout.FilledBox.Dense"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense</item> + </style> + <style name="Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense</item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox</item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.Material3.TextInputLayout.OutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox</item> + + <item name="boxStrokeColor">@color/m3_textfield_stroke_color</item> + <item name="boxStrokeErrorColor">@macro/m3_comp_outlined_text_field_error_outline_color</item> + <item name="helperTextTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="counterTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="counterOverflowTextColor">@macro/m3_comp_outlined_text_field_error_supporting_text_color</item> + <item name="hintTextColor">@color/m3_textfield_label_color</item> + <item name="android:textColorHint">@color/m3_textfield_label_color</item> + <item name="placeholderTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="prefixTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="suffixTextColor">@color/m3_textfield_indicator_text_color</item> + <item name="errorTextColor">@macro/m3_comp_outlined_text_field_error_supporting_text_color</item> + <item name="errorIconTint">@macro/m3_comp_outlined_text_field_error_trailing_icon_color</item> + <item name="startIconTint">@color/m3_textfield_indicator_text_color</item> + <item name="endIconTint">@color/m3_textfield_indicator_text_color</item> + <item name="passwordToggleDrawable">@drawable/m3_password_eye</item> + + <item name="counterTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="counterOverflowTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="errorTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="helperTextTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + <item name="hintTextAppearance">@macro/m3_comp_outlined_text_field_supporting_text_type</item> + + <item name="placeholderTextAppearance">@macro/m3_comp_outlined_text_field_input_text_type</item> + <item name="prefixTextAppearance">?attr/textAppearanceTitleMedium</item> + <item name="suffixTextAppearance">?attr/textAppearanceTitleMedium</item> + <item name="shapeAppearance">@macro/m3_comp_outlined_text_field_container_shape</item> + <item name="shapeAppearanceOverlay">@null</item> + </style> + <style name="Widget.Material3.TextInputLayout.OutlinedBox.Dense"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense</item> + </style> + <style name="Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense</item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu"> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox</item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.Material3.Toolbar" parent="Widget.AppCompat.Toolbar"> + <item name="titleTextAppearance">@macro/m3_comp_top_app_bar_small_headline_type</item> + <item name="subtitleTextAppearance">?attr/textAppearanceTitleMedium</item> + <item name="contentInsetStartWithNavigation">0dp</item> + + + <item name="android:outlineAmbientShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + <item name="android:outlineSpotShadowColor" ns1:ignore="NewApi">@android:color/transparent</item> + </style> + <style name="Widget.Material3.Toolbar.OnSurface"> + <item name="titleTextColor">@macro/m3_comp_top_app_bar_small_headline_color</item> + <item name="subtitleTextColor">?attr/colorOnSurfaceVariant</item> + <item name="navigationIconTint">@macro/m3_comp_top_app_bar_small_leading_icon_color</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Toolbar.Surface</item> + </style> + <style name="Widget.Material3.Toolbar.Surface" parent="Widget.Material3.Toolbar.OnSurface"> + <item name="android:background">@macro/m3_comp_top_app_bar_small_container_color</item> + </style> + <style name="Widget.Material3.Tooltip" parent="Widget.MaterialComponents.Tooltip"> + <item name="android:layout_margin">2dp</item> + <item name="android:textAppearance">@macro/m3_comp_plain_tooltip_supporting_text_type</item> + <item name="android:textColor">?attr/colorOnPrimary</item> + <item name="backgroundTint">?attr/colorPrimary</item> + <item name="android:padding">4dp</item> + <item name="android:minWidth">28dp</item> + <item name="android:minHeight">28dp</item> + <item name="shapeAppearance">@style/ShapeAppearance.Material3.Tooltip</item> + </style> + <style name="Widget.MaterialComponents.ActionBar.Primary" parent="Widget.AppCompat.ActionBar.Solid"> + <item name="background">?attr/colorPrimary</item> + <item name="elevation">@dimen/design_appbar_elevation</item> + </style> + <style name="Widget.MaterialComponents.ActionBar.PrimarySurface" parent="Widget.MaterialComponents.ActionBar.Primary"/> + <style name="Widget.MaterialComponents.ActionBar.Solid" parent="Widget.AppCompat.ActionBar.Solid"> + <item name="titleTextStyle">?attr/textAppearanceHeadline6</item> + <item name="subtitleTextStyle">?attr/textAppearanceSubtitle1</item> + + <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item> + <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item> + </style> + <style name="Widget.MaterialComponents.ActionBar.Surface" parent="Widget.AppCompat.Light.ActionBar.Solid"> + <item name="background">?attr/colorSurface</item> + <item name="elevation">0dp</item> + </style> + <style name="Widget.MaterialComponents.ActionMode" parent="Widget.AppCompat.ActionMode"> + <item name="titleTextStyle">?attr/textAppearanceHeadline6</item> + <item name="subtitleTextStyle">?attr/textAppearanceSubtitle1</item> + + <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item> + <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item> + </style> + <style name="Widget.MaterialComponents.AppBarLayout.Primary" parent="Widget.Design.AppBarLayout"/> + <style name="Widget.MaterialComponents.AppBarLayout.PrimarySurface" parent="Widget.MaterialComponents.AppBarLayout.Primary"/> + <style name="Widget.MaterialComponents.AppBarLayout.Surface" parent="Widget.Design.AppBarLayout"> + <item name="android:background">?attr/colorSurface</item> + </style> + <style name="Widget.MaterialComponents.AutoCompleteTextView.FilledBox" parent="Base.Widget.MaterialComponents.AutoCompleteTextView"> + + <item name="android:paddingTop">24dp</item> + <item name="android:paddingBottom">10dp</item> + </style> + <style name="Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense"> + + <item name="android:paddingTop">24dp</item> + <item name="android:paddingBottom">8dp</item> + </style> + <style name="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox" parent="Base.Widget.MaterialComponents.AutoCompleteTextView"/> + <style name="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense"> + <item name="android:paddingTop">13dp</item> + <item name="android:paddingBottom">13dp</item> + </style> + <style name="Widget.MaterialComponents.Badge" parent="android:Widget"> + <item name="badgeWidth">@dimen/mtrl_badge_size</item> + <item name="badgeHeight">@dimen/mtrl_badge_size</item> + <item name="badgeWithTextWidth">@dimen/mtrl_badge_with_text_size</item> + <item name="badgeWithTextHeight">@dimen/mtrl_badge_with_text_size</item> + <item name="badgeWidePadding">@dimen/mtrl_badge_long_text_horizontal_padding</item> + <item name="backgroundColor">?attr/colorError</item> + <item name="maxCharacterCount">@integer/mtrl_badge_max_character_count</item> + <item name="badgeGravity">TOP_END</item> + <item name="offsetAlignmentMode">legacy</item> + <item name="badgeTextAppearance">@style/TextAppearance.MaterialComponents.Badge</item> + <item name="badgeShapeAppearance">@style/ShapeAppearance.MaterialComponents.Badge</item> + <item name="badgeWithTextShapeAppearance">@style/ShapeAppearance.MaterialComponents.Badge</item> + </style> + <style name="Widget.MaterialComponents.BottomAppBar" parent="Widget.AppCompat.Toolbar"> + <item name="enforceMaterialTheme">true</item> + <item name="backgroundTint">?attr/colorSurface</item> + <item name="fabCradleMargin">@dimen/mtrl_bottomappbar_fab_cradle_margin</item> + <item name="fabCradleRoundedCornerRadius"> + @dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius + </item> + <item name="fabCradleVerticalOffset">@dimen/mtrl_bottomappbar_fab_cradle_vertical_offset</item> + <item name="android:minHeight">@dimen/mtrl_bottomappbar_height</item> + <item name="maxButtonHeight">@dimen/mtrl_bottomappbar_height</item> + <item name="elevation">8dp</item> + <item name="paddingBottomSystemWindowInsets">true</item> + <item name="paddingLeftSystemWindowInsets">true</item> + <item name="paddingRightSystemWindowInsets">true</item> + <item name="fabAnchorMode">cradle</item> + <item name="fabAlignmentMode">center</item> + <item name="menuAlignmentMode">auto</item> + <item name="addElevationShadow">true</item> + </style> + <style name="Widget.MaterialComponents.BottomAppBar.Colored" parent="Widget.MaterialComponents.BottomAppBar"> + <item name="backgroundTint">?attr/colorPrimary</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary</item> + </style> + <style name="Widget.MaterialComponents.BottomAppBar.PrimarySurface" parent="Widget.MaterialComponents.BottomAppBar.Colored"/> + <style name="Widget.MaterialComponents.BottomNavigationView" parent="Widget.Design.BottomNavigationView"> + <item name="enforceTextAppearance">true</item> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">?attr/colorSurface</item> + <item name="itemBackground">@null</item> + <item name="itemHorizontalTranslationEnabled">false</item> + <item name="itemIconTint">@color/mtrl_navigation_bar_item_tint</item> + <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item> + <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item> + <item name="itemTextColor">@color/mtrl_navigation_bar_item_tint</item> + <item name="itemRippleColor">@color/mtrl_navigation_bar_ripple_color</item> + </style> + <style name="Widget.MaterialComponents.BottomNavigationView.Colored"> + <item name="enforceTextAppearance">true</item> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">?attr/colorPrimary</item> + <item name="itemIconTint">@color/mtrl_navigation_bar_colored_item_tint</item> + <item name="itemRippleColor">@color/mtrl_navigation_bar_colored_ripple_color</item> + <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item> + <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item> + <item name="itemTextColor">@color/mtrl_navigation_bar_colored_item_tint</item> + </style> + <style name="Widget.MaterialComponents.BottomNavigationView.PrimarySurface" parent="Widget.MaterialComponents.BottomNavigationView.Colored"/> + <style name="Widget.MaterialComponents.BottomSheet" parent="Widget.Design.BottomSheet.Modal"> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">@null</item> + <item name="android:layout_gravity">center_horizontal</item> + <item name="shapeAppearance">?attr/shapeAppearanceLargeComponent</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet</item> + <item name="backgroundTint">?attr/colorSurface</item> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/design_bottom_sheet_elevation + </item> + <item name="android:maxWidth">@dimen/material_bottom_sheet_max_width</item> + </style> + <style name="Widget.MaterialComponents.BottomSheet.Modal" parent="Widget.MaterialComponents.BottomSheet"> + <item name="android:elevation" ns1:ignore="NewApi"> + @dimen/design_bottom_sheet_modal_elevation + </item> + </style> + <style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button"> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">@empty</item> + <item name="enforceTextAppearance">true</item> + <item name="android:textAppearance">?attr/textAppearanceButton</item> + <item name="android:textColor">@color/mtrl_btn_text_color_selector</item> + <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item> + <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item> + <item name="android:paddingTop">@dimen/mtrl_btn_padding_top</item> + <item name="android:paddingBottom">@dimen/mtrl_btn_padding_bottom</item> + <item name="android:insetLeft">0dp</item> + <item name="android:insetRight">0dp</item> + <item name="android:insetTop">@dimen/mtrl_btn_inset</item> + <item name="android:insetBottom">@dimen/mtrl_btn_inset</item> + <item name="android:maxWidth">@dimen/mtrl_btn_max_width</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_state_list_anim</item> + <item name="cornerRadius">@null</item> + <item name="elevation">@dimen/mtrl_btn_elevation</item> + <item name="iconPadding">@dimen/mtrl_btn_icon_padding</item> + <item name="iconTint">@color/mtrl_btn_text_color_selector</item> + <item name="rippleColor">@color/mtrl_btn_ripple_color</item> + <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item> + <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item> + </style> + <style name="Widget.MaterialComponents.Button.Icon"> + <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item> + </style> + <style name="Widget.MaterialComponents.Button.OutlinedButton" parent="Widget.MaterialComponents.Button.TextButton"> + <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item> + <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item> + <item name="strokeColor">@color/mtrl_btn_stroke_color_selector</item> + <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item> + </style> + <style name="Widget.MaterialComponents.Button.OutlinedButton.Icon"> + <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item> + </style> + <style name="Widget.MaterialComponents.Button.TextButton" parent="Widget.MaterialComponents.Button.UnelevatedButton"> + <item name="android:textColor">@color/mtrl_text_btn_text_color_selector</item> + <item name="android:paddingLeft">@dimen/mtrl_btn_text_btn_padding_left</item> + <item name="android:paddingRight">@dimen/mtrl_btn_text_btn_padding_right</item> + <item name="iconTint">@color/mtrl_text_btn_text_color_selector</item> + <item name="iconPadding">@dimen/mtrl_btn_text_btn_icon_padding</item> + <item name="backgroundTint">@color/mtrl_btn_text_btn_bg_color_selector</item> + <item name="rippleColor">@color/mtrl_btn_text_btn_ripple_color</item> + </style> + <style name="Widget.MaterialComponents.Button.TextButton.Dialog"> + <item name="android:minWidth">@dimen/mtrl_btn_dialog_btn_min_width</item> + <item name="android:lines">1</item> + <item name="android:ellipsize">end</item> + <item name="android:singleLine">true</item> + <item name="android:layout_marginStart">@dimen/mtrl_btn_text_btn_padding_left</item> + <item name="android:layout_marginLeft">@dimen/mtrl_btn_text_btn_padding_left</item> + </style> + <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Flush"> + <item name="android:layout_marginStart">0dp</item> + <item name="android:layout_marginLeft">0dp</item> + </style> + <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Icon"> + + </style> + <style name="Widget.MaterialComponents.Button.TextButton.Icon"> + + </style> + <style name="Widget.MaterialComponents.Button.TextButton.Snackbar"> + <item name="android:textColor">?attr/colorPrimary</item> + </style> + <style name="Widget.MaterialComponents.Button.UnelevatedButton"> + <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item> + <item name="elevation">0dp</item> + </style> + <style name="Widget.MaterialComponents.Button.UnelevatedButton.Icon"> + <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item> + </style> + <style name="Widget.MaterialComponents.CardView" parent="CardView"> + <item name="enforceMaterialTheme">true</item> + + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/mtrl_card_state_list_anim + </item> + <item name="cardBackgroundColor">?attr/colorSurface</item> + <item name="cardCornerRadius">@null</item> + <item name="cardElevation">@dimen/mtrl_card_elevation</item> + <item name="cardForegroundColor">@color/mtrl_card_view_foreground</item> + <item name="checkedIcon">@drawable/ic_mtrl_checked_circle</item> + <item name="checkedIconTint">?attr/colorPrimary</item> + <item name="checkedIconSize">@dimen/mtrl_card_checked_icon_size</item> + <item name="checkedIconMargin">@dimen/mtrl_card_checked_icon_margin</item> + <item name="rippleColor">@color/mtrl_card_view_ripple</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + </style> + <style name="Widget.MaterialComponents.CheckedTextView" parent="Base.Widget.MaterialComponents.CheckedTextView"> + <item name="android:textAppearance">?attr/textAppearanceBody1</item> + <item name="android:textColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="Widget.MaterialComponents.Chip.Action" parent="Base.Widget.MaterialComponents.Chip"> + <item name="closeIconVisible">false</item> + </style> + <style name="Widget.MaterialComponents.Chip.Choice" parent="Base.Widget.MaterialComponents.Chip"> + <item name="android:checkable">true</item> + + <item name="chipIconVisible">false</item> + <item name="checkedIconVisible">false</item> + <item name="closeIconVisible">false</item> + + <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item> + + <item name="android:textColor">@color/mtrl_choice_chip_text_color</item> + + <item name="chipBackgroundColor">@color/mtrl_choice_chip_background_color</item> + <item name="rippleColor">@color/mtrl_choice_chip_ripple_color</item> + + </style> + <style name="Widget.MaterialComponents.Chip.Entry" parent="Base.Widget.MaterialComponents.Chip"> + <item name="android:checkable">true</item> + </style> + <style name="Widget.MaterialComponents.Chip.Filter" parent="Base.Widget.MaterialComponents.Chip"> + <item name="android:checkable">true</item> + + <item name="chipIconVisible">false</item> + <item name="closeIconVisible">false</item> + + <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item> + </style> + <style name="Widget.MaterialComponents.ChipGroup" parent="android:Widget"> + <item name="chipSpacingHorizontal">8dp</item> + <item name="singleLine">false</item> + <item name="singleSelection">false</item> + </style> + <style name="Widget.MaterialComponents.CircularProgressIndicator" parent="Widget.MaterialComponents.ProgressIndicator"> + <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_medium</item> + <item name="indicatorSize">@dimen/mtrl_progress_circular_size_medium</item> + <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_medium</item> + <item name="trackColor">@android:color/transparent</item> + <item name="indicatorDirectionCircular">clockwise</item> + </style> + <style name="Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall"> + <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_extra_small</item> + <item name="indicatorSize">@dimen/mtrl_progress_circular_size_extra_small</item> + <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_extra_small</item> + </style> + <style name="Widget.MaterialComponents.CircularProgressIndicator.Medium"/> + <style name="Widget.MaterialComponents.CircularProgressIndicator.Small"> + <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_small</item> + <item name="indicatorSize">@dimen/mtrl_progress_circular_size_small</item> + <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_small</item> + </style> + <style name="Widget.MaterialComponents.CollapsingToolbar" parent="Widget.Design.CollapsingToolbar"/> + <style name="Widget.MaterialComponents.CompoundButton.CheckBox" parent="Widget.AppCompat.CompoundButton.CheckBox"> + <item name="enforceMaterialTheme">true</item> + <item name="useMaterialThemeColors">true</item> + <item name="android:minWidth">?attr/minTouchTargetSize</item> + <item name="android:minHeight">?attr/minTouchTargetSize</item> + </style> + <style name="Widget.MaterialComponents.CompoundButton.RadioButton" parent="Widget.AppCompat.CompoundButton.RadioButton"> + <item name="enforceMaterialTheme">true</item> + <item name="useMaterialThemeColors">true</item> + <item name="android:minWidth">?attr/minTouchTargetSize</item> + <item name="android:minHeight">?attr/minTouchTargetSize</item> + </style> + <style name="Widget.MaterialComponents.CompoundButton.Switch" parent="Widget.AppCompat.CompoundButton.Switch"> + <item name="enforceMaterialTheme">true</item> + <item name="useMaterialThemeColors">true</item> + <item name="android:minWidth">?attr/minTouchTargetSize</item> + <item name="android:minHeight">?attr/minTouchTargetSize</item> + </style> + <style name="Widget.MaterialComponents.ExtendedFloatingActionButton" parent="Widget.MaterialComponents.Button"> + <item name="android:insetTop">0dp</item> + <item name="android:insetBottom">0dp</item> + <item name="android:maxLines">1</item> + <item name="android:minHeight">@dimen/mtrl_extended_fab_min_height</item> + <item name="android:minWidth">@dimen/mtrl_extended_fab_min_width</item> + <item name="android:paddingTop">@dimen/mtrl_extended_fab_top_padding</item> + <item name="android:paddingBottom">@dimen/mtrl_extended_fab_bottom_padding</item> + <item name="android:paddingStart" ns1:ignore="NewApi"> + @dimen/mtrl_extended_fab_start_padding + </item> + <item name="android:paddingEnd" ns1:ignore="NewApi"> + @dimen/mtrl_extended_fab_end_padding + </item> + <item name="android:paddingLeft">@dimen/mtrl_extended_fab_start_padding</item> + <item name="android:paddingRight">@dimen/mtrl_extended_fab_end_padding</item> + <item name="android:stateListAnimator" ns1:ignore="NewApi"> + @animator/mtrl_extended_fab_state_list_animator + </item> + <item name="android:textColor">@color/mtrl_fab_icon_text_color_selector</item> + <item name="backgroundTint">@color/mtrl_fab_bg_color_selector</item> + <item name="elevation">@dimen/mtrl_extended_fab_elevation</item> + <item name="extendStrategy">wrap_content</item> + <item name="iconPadding">@dimen/mtrl_extended_fab_icon_text_spacing</item> + <item name="iconSize">@dimen/mtrl_extended_fab_icon_size</item> + <item name="iconTint">@color/mtrl_fab_icon_text_color_selector</item> + <item name="rippleColor">@color/mtrl_fab_ripple_color</item> + <item name="shapeAppearanceOverlay"> + @style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton + </item> + <item name="collapsedSize">@dimen/design_fab_size_normal</item> + </style> + <style name="Widget.MaterialComponents.ExtendedFloatingActionButton.Icon" parent="Widget.MaterialComponents.ExtendedFloatingActionButton"> + <item name="android:gravity">start|center_vertical</item> + <item name="android:paddingStart" ns1:ignore="NewApi"> + @dimen/mtrl_extended_fab_start_padding_icon + </item> + <item name="android:paddingEnd" ns1:ignore="NewApi"> + @dimen/mtrl_extended_fab_end_padding_icon + </item> + <item name="android:paddingLeft">@dimen/mtrl_extended_fab_start_padding_icon</item> + <item name="android:paddingRight">@dimen/mtrl_extended_fab_end_padding_icon</item> + </style> + <style name="Widget.MaterialComponents.FloatingActionButton" parent="Widget.Design.FloatingActionButton"> + <item name="android:background">@null</item> + <item name="enforceMaterialTheme">true</item> + <item name="ensureMinTouchTargetSize">true</item> + <item name="elevation">@dimen/mtrl_fab_elevation</item> + <item name="backgroundTint">@color/mtrl_fab_bg_color_selector</item> + <item name="tint">@color/mtrl_fab_icon_text_color_selector</item> + <item name="hoveredFocusedTranslationZ">@dimen/mtrl_fab_translation_z_hovered_focused</item> + <item name="pressedTranslationZ">@dimen/mtrl_fab_translation_z_pressed</item> + <item name="rippleColor">@color/mtrl_fab_ripple_color</item> + <item name="showMotionSpec">@animator/mtrl_fab_show_motion_spec</item> + <item name="hideMotionSpec">@animator/mtrl_fab_hide_motion_spec</item> + <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item> + <item name="shapeAppearanceOverlay"> + @style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton + </item> + </style> + <style name="Widget.MaterialComponents.Light.ActionBar.Solid" parent="Widget.AppCompat.Light.ActionBar.Solid"> + <item name="titleTextStyle">?attr/textAppearanceHeadline6</item> + <item name="subtitleTextStyle">?attr/textAppearanceSubtitle1</item> + + <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item> + <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item> + </style> + <style name="Widget.MaterialComponents.LinearProgressIndicator" parent="Widget.MaterialComponents.ProgressIndicator"> + <item name="indeterminateAnimationType">disjoint</item> + <item name="indicatorDirectionLinear">startToEnd</item> + </style> + <style name="Widget.MaterialComponents.MaterialButtonToggleGroup" parent="android:Widget"> + <item name="singleSelection">false</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar" parent="android:Widget"> + <item name="android:windowFullscreen">false</item> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + <item name="dayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day</item> + <item name="dayInvalidStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid</item> + <item name="daySelectedStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Selected</item> + <item name="dayTodayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Today</item> + <item name="yearStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year</item> + <item name="yearSelectedStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year.Selected</item> + <item name="yearTodayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year.Today</item> + <item name="rangeFillColor">@color/mtrl_calendar_selected_range</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Day" parent="Widget.MaterialComponents.MaterialCalendar.Item"> + <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item> + <item name="android:width">@dimen/mtrl_calendar_day_width</item> + <item name="android:height">@dimen/mtrl_calendar_day_height</item> + <item name="android:insetTop">@dimen/mtrl_calendar_day_vertical_padding</item> + <item name="android:insetBottom">@dimen/mtrl_calendar_day_vertical_padding</item> + <item name="android:insetLeft">@dimen/mtrl_calendar_day_horizontal_padding</item> + <item name="android:insetRight">@dimen/mtrl_calendar_day_horizontal_padding</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Day.Invalid"> + <item name="itemTextColor">@color/material_on_surface_disabled</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Day.Selected"> + <item name="itemFillColor">?attr/colorPrimary</item> + <item name="itemTextColor">?attr/colorOnPrimary</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Day.Today"> + <item name="itemStrokeColor">@color/material_on_surface_emphasis_high_type</item> + <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel" parent=""> + <item name="android:textAppearance">?attr/textAppearanceBody2</item> + <item name="android:gravity">center</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.DayTextView" parent="Widget.AppCompat.TextView"> + <item name="android:textAppearance">?attr/textAppearanceCaption</item> + <item name="android:gravity">center</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Fullscreen" parent="Widget.MaterialComponents.MaterialCalendar"> + <item name="android:windowFullscreen">true</item> + <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton" parent="Widget.MaterialComponents.Button.TextButton"> + <item name="iconTint">?attr/colorOnPrimary</item> + <item name="rippleColor">@color/mtrl_btn_ripple_color</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton" parent="Widget.MaterialComponents.Button.TextButton"> + <item name="android:textColor">@color/mtrl_on_primary_text_btn_text_color_selector</item> + <item name="rippleColor">@color/mtrl_btn_ripple_color</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderDivider" parent="android:Widget"> + <item name="android:visibility">gone</item> + <item name="android:background">?attr/colorOnPrimary</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderLayout" parent="android:Widget"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">@dimen/mtrl_calendar_header_height</item> + <item name="android:background">?attr/colorPrimary</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen"> + <item name="android:layout_height">@dimen/mtrl_calendar_header_height_fullscreen</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection" parent="Widget.AppCompat.TextView"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_gravity">top|start</item> + <item name="android:textAppearance">?attr/textAppearanceHeadline4</item> + <item name="android:textColor">?attr/colorOnPrimary</item> + <item name="android:maxLines">@integer/mtrl_calendar_selection_text_lines</item> + <item name="android:ellipsize">end</item> + <item name="autoSizeTextType">uniform</item> + <item name="autoSizeMaxTextSize">34sp</item> + <item name="autoSizeMinTextSize">2sp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen"> + <item name="android:textAppearance">?attr/textAppearanceHeadline6</item> + <item name="android:maxLines">1</item> + <item name="autoSizeMaxTextSize">20sp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderTitle" parent="Widget.AppCompat.TextView"> + <item name="android:textAppearance">?attr/textAppearanceOverline</item> + <item name="android:textColor">?attr/colorOnPrimary</item> + <item name="android:maxLines">1</item> + <item name="android:ellipsize">end</item> + <item name="autoSizeTextType">uniform</item> + <item name="autoSizeMaxTextSize">10sp</item> + <item name="autoSizeMinTextSize">2sp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton"> + <item name="android:layout_gravity">bottom|end</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Item" parent=""> + <item name="itemFillColor">@android:color/transparent</item> + <item name="itemTextColor">@color/material_on_surface_emphasis_high_type</item> + <item name="itemStrokeColor">@color/mtrl_calendar_item_stroke_color</item> + <item name="itemStrokeWidth">1dp</item> + <item name="itemShapeAppearance">?attr/shapeAppearanceSmallComponent</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton"/> + <style name="Widget.MaterialComponents.MaterialCalendar.MonthTextView" parent="Widget.AppCompat.TextView"> + <item name="android:textAppearance">?attr/textAppearanceSubtitle2</item> + <item name="android:textColor">@color/material_on_surface_emphasis_medium</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Year" parent="Widget.MaterialComponents.MaterialCalendar.Item"> + <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year</item> + <item name="android:width">@dimen/mtrl_calendar_year_width</item> + <item name="android:height">@dimen/mtrl_calendar_year_height</item> + <item name="android:insetTop">@dimen/mtrl_calendar_year_vertical_padding</item> + <item name="android:insetBottom">@dimen/mtrl_calendar_year_vertical_padding</item> + <item name="android:insetLeft">@dimen/mtrl_calendar_year_horizontal_padding</item> + <item name="android:insetRight">@dimen/mtrl_calendar_year_horizontal_padding</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Year.Selected" parent="Widget.MaterialComponents.MaterialCalendar.Year"> + <item name="itemFillColor">?attr/colorPrimary</item> + <item name="itemTextColor">?attr/colorOnPrimary</item> + <item name="itemStrokeColor">?attr/colorOnPrimary</item> + <item name="itemStrokeWidth">0dp</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.Year.Today" parent="Widget.MaterialComponents.MaterialCalendar.Year"> + <item name="itemStrokeColor">@color/material_on_surface_emphasis_high_type</item> + <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item> + </style> + <style name="Widget.MaterialComponents.MaterialCalendar.YearNavigationButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton"/> + <style name="Widget.MaterialComponents.MaterialDivider" parent="android:Widget"> + <item name="dividerColor">@color/material_divider_color</item> + <item name="dividerThickness">@dimen/material_divider_thickness</item> + </style> + <style name="Widget.MaterialComponents.NavigationRailView" parent=""> + <item name="elevation">@dimen/mtrl_navigation_rail_elevation</item> + <item name="enforceTextAppearance">true</item> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">?attr/colorSurface</item> + <item name="android:minWidth">@dimen/mtrl_navigation_rail_default_width</item> + <item name="itemActiveIndicatorStyle">@null</item> + <item name="itemPaddingTop">@dimen/mtrl_navigation_rail_icon_margin</item> + <item name="itemPaddingBottom">@dimen/mtrl_navigation_rail_text_bottom_margin</item> + <item name="itemBackground">@null</item> + <item name="itemIconSize">@dimen/mtrl_navigation_rail_icon_size</item> + <item name="itemIconTint">@color/mtrl_navigation_bar_item_tint</item> + <item name="itemMinHeight">@null</item> + <item name="itemRippleColor">@color/mtrl_navigation_bar_ripple_color</item> + <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item> + <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item> + <item name="itemTextColor">@color/mtrl_navigation_bar_item_tint</item> + <item name="labelVisibilityMode">auto</item> + <item name="menuGravity">top</item> + <item name="android:fitsSystemWindows">true</item> + </style> + <style name="Widget.MaterialComponents.NavigationRailView.Colored"> + <item name="android:background">?attr/colorPrimary</item> + <item name="itemIconTint">@color/mtrl_navigation_bar_colored_item_tint</item> + <item name="itemRippleColor">@color/mtrl_navigation_bar_colored_ripple_color</item> + <item name="itemTextColor">@color/mtrl_navigation_bar_colored_item_tint</item> + </style> + <style name="Widget.MaterialComponents.NavigationRailView.Colored.Compact"> + <item name="android:minWidth">@dimen/mtrl_navigation_rail_compact_width</item> + <item name="labelVisibilityMode">unlabeled</item> + </style> + <style name="Widget.MaterialComponents.NavigationRailView.Compact"> + <item name="android:minWidth">@dimen/mtrl_navigation_rail_compact_width</item> + <item name="labelVisibilityMode">unlabeled</item> + </style> + <style name="Widget.MaterialComponents.NavigationRailView.PrimarySurface" parent="Widget.MaterialComponents.NavigationRailView.Colored"/> + <style name="Widget.MaterialComponents.NavigationView" parent="Widget.Design.NavigationView"> + <item name="enforceMaterialTheme">true</item> + <item name="android:background">?attr/colorSurface</item> + + <item name="itemBackground">@null</item> + <item name="itemIconPadding">@dimen/mtrl_navigation_item_icon_padding</item> + <item name="itemIconTint">@color/mtrl_navigation_item_icon_tint</item> + <item name="itemIconSize">@dimen/mtrl_navigation_item_icon_size</item> + <item name="itemHorizontalPadding">@dimen/mtrl_navigation_item_horizontal_padding</item> + <item name="itemShapeAppearance">?attr/shapeAppearanceSmallComponent</item> + <item name="itemShapeFillColor">@color/mtrl_navigation_item_background_color</item> + <item name="itemShapeInsetStart">@dimen/mtrl_navigation_item_shape_horizontal_margin</item> + <item name="itemShapeInsetTop">@dimen/mtrl_navigation_item_shape_vertical_margin</item> + <item name="itemShapeInsetEnd">@dimen/mtrl_navigation_item_shape_horizontal_margin</item> + <item name="itemShapeInsetBottom">@dimen/mtrl_navigation_item_shape_vertical_margin</item> + <item name="itemTextAppearance">?attr/textAppearanceSubtitle2</item> + <item name="itemTextColor">@color/mtrl_navigation_item_text_color</item> + </style> + <style name="Widget.MaterialComponents.PopupMenu" parent="Base.Widget.MaterialComponents.PopupMenu"/> + <style name="Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Base.Widget.MaterialComponents.PopupMenu.ContextMenu"/> + <style name="Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow"/> + <style name="Widget.MaterialComponents.PopupMenu.Overflow" parent="Base.Widget.MaterialComponents.PopupMenu.Overflow"/> + <style name="Widget.MaterialComponents.ProgressIndicator" parent="android:Widget"> + <item name="indicatorColor">?attr/colorPrimary</item> + <item name="trackThickness">@dimen/mtrl_progress_track_thickness</item> + <item name="android:indeterminateOnly">false</item> + </style> + <style name="Widget.MaterialComponents.ShapeableImageView" parent="android:Widget"> + <item name="strokeColor">@color/material_on_surface_stroke</item> + </style> + <style name="Widget.MaterialComponents.Slider" parent="Base.Widget.MaterialComponents.Slider"/> + <style name="Widget.MaterialComponents.Snackbar" parent="Base.Widget.MaterialComponents.Snackbar"> + + <item name="android:background">@null</item> + <item name="android:layout_margin">@dimen/mtrl_snackbar_margin</item> + <item name="animationMode">fade</item> + </style> + <style name="Widget.MaterialComponents.Snackbar.FullWidth" parent="Base.Widget.MaterialComponents.Snackbar"/> + <style name="Widget.MaterialComponents.Snackbar.TextView" parent="Widget.AppCompat.TextView"> + <item name="android:alpha">@dimen/material_emphasis_high_type</item> + <item name="android:ellipsize">end</item> + <item name="android:maxLines">@integer/design_snackbar_text_max_lines</item> + <item name="android:textAlignment" ns1:ignore="NewApi">viewStart</item> + <item name="android:textAppearance">?attr/textAppearanceBody2</item> + <item name="android:textColor">?attr/colorSurface</item> + <item name="android:paddingTop">@dimen/design_snackbar_padding_vertical</item> + <item name="android:paddingBottom">@dimen/design_snackbar_padding_vertical</item> + <item name="android:layout_marginLeft">@dimen/mtrl_snackbar_message_margin_horizontal</item> + <item name="android:layout_marginRight">@dimen/mtrl_snackbar_message_margin_horizontal</item> + </style> + <style name="Widget.MaterialComponents.TabLayout" parent="Widget.Design.TabLayout"> + <item name="enforceMaterialTheme">true</item> + <item name="enforceTextAppearance">true</item> + <item name="android:background">?attr/colorSurface</item> + <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector</item> + <item name="tabIndicatorAnimationDuration">@integer/mtrl_tab_indicator_anim_duration_ms</item> + <item name="tabIndicatorColor">?attr/colorPrimary</item> + <item name="tabTextAppearance">?attr/textAppearanceButton</item> + <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector</item> + <item name="tabRippleColor">@color/mtrl_tabs_ripple_color</item> + <item name="tabUnboundedRipple">true</item> + </style> + <style name="Widget.MaterialComponents.TabLayout.Colored"> + <item name="android:background">?attr/colorPrimary</item> + <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector_colored</item> + <item name="tabIndicatorColor">?attr/colorOnPrimary</item> + <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector_colored</item> + <item name="tabRippleColor">@color/mtrl_tabs_colored_ripple_color</item> + </style> + <style name="Widget.MaterialComponents.TabLayout.PrimarySurface" parent="Widget.MaterialComponents.TabLayout.Colored"/> + <style name="Widget.MaterialComponents.TextInputEditText.FilledBox" parent="Base.Widget.MaterialComponents.TextInputEditText"> + + <item name="android:paddingTop">24dp</item> + <item name="android:paddingBottom">10dp</item> + </style> + <style name="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense"> + + <item name="android:paddingTop">24dp</item> + <item name="android:paddingBottom">8dp</item> + </style> + <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputEditText"/> + <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense"> + <item name="android:paddingTop">13dp</item> + <item name="android:paddingBottom">13dp</item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.FilledBox" parent="Base.Widget.MaterialComponents.TextInputLayout"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox + </item> + <item name="boxBackgroundMode">filled</item> + <item name="boxBackgroundColor">@color/mtrl_filled_background_color</item> + <item name="endIconTint">@color/mtrl_filled_icon_tint</item> + <item name="startIconTint">@color/mtrl_filled_icon_tint</item> + <item name="boxCollapsedPaddingTop">10dp</item> + <item name="boxStrokeColor">@color/mtrl_filled_stroke_color</item> + <item name="shapeAppearanceOverlay"> + @style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox + </item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense + </item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense + </item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox + </item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputLayout"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox + </item> + <item name="boxCollapsedPaddingTop">0dp</item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense + </item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense + </item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"> + <item name="materialThemeOverlay"> + @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox + </item> + <item name="endIconMode">dropdown_menu</item> + </style> + <style name="Widget.MaterialComponents.TextView" parent="Base.Widget.MaterialComponents.TextView"/> + <style name="Widget.MaterialComponents.TimePicker" parent=""> + <item name="shapeAppearance">?shapeAppearanceMediumComponent</item> + <item name="keyboardIcon">@drawable/ic_keyboard_black_24dp</item> + <item name="clockIcon">@drawable/ic_clock_black_24dp</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Button" parent="Widget.MaterialComponents.Button.OutlinedButton"> + <item name="backgroundTint"> + @color/material_timepicker_button_background + </item> + <item name="android:layout_height">48dp</item> + <item name="android:padding">0dp</item> + <item name="android:insetTop">0dp</item> + <item name="android:insetBottom">0dp</item> + <item name="android:textAppearance">?attr/textAppearanceSubtitle2</item> + <item name="android:textSize">16sp</item> + <item name="android:textAlignment">center</item> + <item name="strokeColor">@color/material_timepicker_button_stroke</item> + <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item> + <item name="shapeAppearanceOverlay">?attr/shapeAppearanceMediumComponent</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Clock" parent=""> + <item name="clockFaceBackgroundColor">@color/material_timepicker_clockface</item> + <item name="clockHandColor">?attr/colorPrimary</item> + <item name="clockNumberTextColor">@color/material_timepicker_clock_text_color</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Display" parent="Widget.MaterialComponents.Chip.Choice"> + <item name="ensureMinTouchTargetSize">false</item> + <item name="android:textAlignment">center</item> + <item name="android:textAppearance">?attr/textAppearanceHeadline3</item> + + <item name="android:textSize" ns1:ignore="SpUsage">56dp</item> + <item name="shapeAppearanceOverlay">?shapeAppearanceMediumComponent</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Display.Divider" parent=""> + <item name="android:includeFontPadding">false</item> + <item name="android:lineSpacingExtra">0dp</item> + <item name="android:maxEms">1</item> + <item name="android:text">@string/material_clock_display_divider</item> + <item name="android:textAppearance">?attr/textAppearanceHeadline3</item> + <item name="android:textColor">?attr/colorOnSurface</item> + <item name="android:textSize">56dp</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Display.HelperText" parent="Widget.MaterialComponents.TextView"> + <item name="android:textAppearance">?attr/textAppearanceCaption</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Display.TextInputEditText" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox"> + <item name="android:textAppearance">?attr/textAppearanceHeadline3</item> + <item name="android:textSize" ns1:ignore="SpUsage">56dp</item> + <item name="android:paddingTop">0dp</item> + <item name="android:paddingBottom">0dp</item> + <item name="android:inputType">number</item> + <item name="android:maxLength">2</item> + <item name="android:textAlignment">center</item> + <item name="android:minEms">2</item> + <item name="android:gravity">center</item> + <item name="android:paddingStart">0dp</item> + <item name="android:paddingEnd">0dp</item> + <item name="android:includeFontPadding">false</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.Display.TextInputLayout" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox"> + <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item> + <item name="shapeAppearanceOverlay">@null</item> + <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.ImageButton" parent=""> + <item name="android:insetTop">0dp</item> + <item name="android:insetBottom">0dp</item> + <item name="android:minWidth">?attr/minTouchTargetSize</item> + <item name="android:minHeight">?attr/minTouchTargetSize</item> + <item name="iconGravity">textStart</item> + <item name="iconPadding">0dp</item> + <item name="iconTint">@color/material_timepicker_modebutton_tint</item> + <item name="rippleColor">@color/mtrl_on_surface_ripple_color</item> + <item name="shapeAppearance">@style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance</item> + </style> + <style name="Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance" parent=""> + <item name="cornerSize">50%</item> + <item name="cornerFamily">rounded</item> + </style> + <style name="Widget.MaterialComponents.Toolbar" parent="Widget.AppCompat.Toolbar"> + <item name="titleTextAppearance">?attr/textAppearanceHeadline6</item> + <item name="titleTextColor">?android:attr/textColorPrimary</item> + <item name="subtitleTextAppearance">?attr/textAppearanceSubtitle1</item> + <item name="subtitleTextColor">?android:attr/textColorSecondary</item> + + <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item> + <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item> + </style> + <style name="Widget.MaterialComponents.Toolbar.Primary"> + <item name="android:elevation" ns1:ignore="NewApi">@dimen/design_appbar_elevation</item> + <item name="android:background">?attr/colorPrimary</item> + <item name="titleTextColor">?attr/colorOnPrimary</item> + <item name="subtitleTextColor">@color/material_on_primary_emphasis_medium</item> + + <item name="android:theme">@style/ThemeOverlay.MaterialComponents.Toolbar.Primary</item> + <item name="popupTheme">@style/ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary</item> + </style> + <style name="Widget.MaterialComponents.Toolbar.PrimarySurface" parent="Widget.MaterialComponents.Toolbar.Primary"/> + <style name="Widget.MaterialComponents.Toolbar.Surface"> + <item name="android:background">?attr/colorSurface</item> + <item name="titleTextColor">@color/material_on_surface_emphasis_high_type</item> + <item name="subtitleTextColor">@color/material_on_surface_emphasis_medium</item> + + <item name="android:theme">@style/ThemeOverlay.MaterialComponents.Toolbar.Surface</item> + </style> + <style name="Widget.MaterialComponents.Tooltip" parent="android:Widget"> + <item name="android:layout_margin">8dp</item> + <item name="android:minWidth">@dimen/mtrl_tooltip_minWidth</item> + <item name="android:minHeight">@dimen/mtrl_tooltip_minHeight</item> + <item name="android:padding">@dimen/mtrl_tooltip_padding</item> + <item name="android:textAppearance">@style/TextAppearance.MaterialComponents.Tooltip</item> + <item name="shapeAppearance">@style/ShapeAppearance.MaterialComponents.Tooltip</item> + </style> + <declare-styleable name="AppBarLayout"> + + <attr name="elevation"/> + <attr name="android:background"/> + + <attr format="boolean" name="expanded"/> + <attr name="android:keyboardNavigationCluster"/> + <attr name="android:touchscreenBlocksFocus"/> + + <attr format="boolean" name="liftOnScroll"/> + + <attr format="reference" name="liftOnScrollTargetViewId"/> + + <attr format="color" name="liftOnScrollColor"/> + + <attr format="color" name="statusBarForeground"/> + </declare-styleable> + <declare-styleable name="AppBarLayoutStates"> + + <attr format="boolean" name="state_collapsed"/> + + <attr format="boolean" name="state_collapsible"/> + + <attr format="boolean" name="state_lifted"/> + + <attr format="boolean" name="state_liftable"/> + </declare-styleable> + <declare-styleable name="AppBarLayout_Layout"> + <attr name="layout_scrollFlags"> + <!-- Disable scrolling on the view. This flag should not be combined with any of the other + scroll flags. --> + <flag name="noScroll" value="0x0"/> + + <!-- The view will be scroll in direct relation to scroll events. This flag needs to be + set for any of the other flags to take effect. If any sibling views + before this one do not have this flag, then this value has no effect. --> + <flag name="scroll" value="0x1"/> + + <!-- When exiting (scrolling off screen) the view will be scrolled until it is + 'collapsed'. The collapsed height is defined by the view's minimum height. --> + <flag name="exitUntilCollapsed" value="0x2"/> + + <!-- When entering (scrolling on screen) the view will scroll on any downwards + scroll event, regardless of whether the scrolling view is also scrolling. This + is commonly referred to as the 'quick return' pattern. --> + <flag name="enterAlways" value="0x4"/> + + <!-- An additional flag for 'enterAlways' which modifies the returning view to + only initially scroll back to it's collapsed height. Once the scrolling view has + reached the end of it's scroll range, the remainder of this view will be scrolled + into view. --> + <flag name="enterAlwaysCollapsed" value="0x8"/> + + <!-- Upon a scroll ending, if the view is only partially visible then it will be + snapped and scrolled to it's closest edge. --> + <flag name="snap" value="0x10"/> + + <!-- An additional flag to be used with 'snap'. If set, the view will be snapped to its + top and bottom margins, as opposed to the edges of the view itself. --> + <flag name="snapMargins" value="0x20"/> + </attr> + + <attr format="enum" name="layout_scrollEffect"> + <!-- No effect will be applied to this child when its parent + AppBarLayout's offset changes.--> + <enum name="none" value="0"/> + <!-- This view will be compressed (masked and parallaxed) when it reaches + the top of the screen and continues to scroll out of view.--> + <enum name="compress" value="1"/> + </attr> + + + <attr format="reference" name="layout_scrollInterpolator"/> + </declare-styleable> + <declare-styleable name="Badge"> + + <attr format="dimension" name="badgeRadius"/> + + <attr format="dimension" name="badgeWidePadding"/> + + <attr format="dimension" name="badgeWithTextRadius"/> + + <attr format="dimension" name="badgeWidth"/> + + <attr format="dimension" name="badgeWithTextWidth"/> + + <attr format="dimension" name="badgeHeight"/> + + <attr format="dimension" name="badgeWithTextHeight"/> + <attr format="color" name="backgroundColor"/> + <attr format="color" name="badgeTextColor"/> + <attr format="integer" name="maxCharacterCount"/> + <attr format="integer" name="number"/> + <attr name="badgeGravity"> + <!-- Gravity.TOP | Gravity.END --> + <enum name="TOP_END" value="8388661"/> + <!-- Gravity.TOP | Gravity.START --> + <enum name="TOP_START" value="8388659"/> + <!-- Gravity.BOTTOM | Gravity.END --> + <enum name="BOTTOM_END" value="8388693"/> + <!-- Gravity.BOTTOM | Gravity.START --> + <enum name="BOTTOM_START" value="8388691"/> + </attr> + + <attr format="reference" name="badgeTextAppearance"/> + + <attr format="reference" name="badgeShapeAppearance"/> + + <attr format="reference" name="badgeShapeAppearanceOverlay"/> + + <attr format="reference" name="badgeWithTextShapeAppearance"/> + + <attr format="reference" name="badgeWithTextShapeAppearanceOverlay"/> + + + <attr name="offsetAlignmentMode"> + <!-- The offsets begin at the edge of the anchor. --> + <enum name="edge" value="0"/> + <!-- Follows the legacy offset alignment behavior. The horizontal offset begins at a variable + permanent inset from the edge of the anchor, and the vertical offset begins at the center + of the badge aligned with the edge of the anchor. --> + <enum name="legacy" value="1"/> + </attr> + + + <attr format="dimension" name="horizontalOffset"/> + + <attr format="dimension" name="verticalOffset"/> + + <attr format="dimension" name="horizontalOffsetWithText"/> + + <attr format="dimension" name="verticalOffsetWithText"/> + </declare-styleable> + <declare-styleable name="BaseProgressIndicator"> + + <attr name="android:indeterminate"/> + + <attr format="dimension" name="trackThickness"/> + + <attr format="dimension" name="trackCornerRadius"/> + + <attr format="color|reference" name="indicatorColor"/> + + <attr name="trackColor"/> + + <attr name="showAnimationBehavior"> + <!-- No animation used; appears immediately. --> + <enum name="none" value="0"/> + <!-- + Expands from the bottom edge to the top edge for the linear type; + expands from the inner edge to the outer edge for the circular type. + --> + <enum name="outward" value="1"/> + <!-- + Expands from the top edge to the bottom edge for the linear type; + expands from the outer edge to the inner edge for the circular type. + --> + <enum name="inward" value="2"/> + </attr> + + <attr name="hideAnimationBehavior"> + <!-- No animation used; disappears immediately. --> + <enum name="none" value="0"/> + <!-- + Collapses from the bottom edge to the top edge for the linear type; + collapses from the inner edge to the outer edge for the circular type. + --> + <enum name="outward" value="1"/> + <!-- + Collapses from the top edge to the bottom edge for the linear type; + collapses from the outer edge to the inner edge for the circular type. + --> + <enum name="inward" value="2"/> + </attr> + + <attr format="integer" name="showDelay"/> + + <attr format="integer" name="minHideDelay"/> + </declare-styleable> + <declare-styleable name="BottomAppBar"> + + <attr name="backgroundTint"/> + + <attr name="navigationIconTint"/> + + <attr name="elevation"/> + + <attr name="fabAlignmentMode"> + <!-- Mode that aligns the fab to the center. --> + <enum name="center" value="0"/> + <!-- Mode that aligns the fab to the end. --> + <enum name="end" value="1"/> + </attr> + + <attr name="fabAnchorMode"> + <!-- Mode that anchors the fab embedded inside the BottomAppBar. --> + <enum name="embed" value="0"/> + <!-- Mode that anchors the fab to be cradled within the top edge of the BottomAppBar. --> + <enum name="cradle" value="1"/> + </attr> + + <attr name="fabAnimationMode"> + <!-- Mode that scales the fab down to a point, moves it, then scales the fab back to its normal size. --> + <enum name="scale" value="0"/> + <!-- Mode that slides the fab from one alignment mode to the next. --> + <enum name="slide" value="1"/> + </attr> + + <attr format="dimension" name="fabCradleMargin"/> + + <attr format="dimension" name="fabCradleRoundedCornerRadius"/> + + <attr format="dimension" name="fabCradleVerticalOffset"/> + + <attr format="dimension" name="fabAlignmentModeEndMargin"/> + + <attr format="boolean" name="removeEmbeddedFabElevation"/> + + <attr format="boolean" name="addElevationShadow"/> + + <attr format="boolean" name="hideOnScroll"/> + + <attr name="paddingBottomSystemWindowInsets"/> + + <attr name="paddingLeftSystemWindowInsets"/> + + <attr name="paddingRightSystemWindowInsets"/> + + <attr name="menuAlignmentMode"> + <!-- Mode that aligns the menu automatically to avoid the FAB. Menu will be aligned at the end + when the FAB is center aligned, and start when the FAB is end aligned. --> + <enum name="auto" value="0"/> + <!-- Mode that aligns the menu to the start. --> + <enum name="start" value="1"/> + </attr> + </declare-styleable> + <declare-styleable name="BottomNavigationView"> + + <attr format="boolean" name="itemHorizontalTranslationEnabled"/> + + <attr name="android:minHeight"/> + + <attr format="boolean" name="compatShadowEnabled"/> + </declare-styleable> + <declare-styleable name="BottomSheetBehavior_Layout"> + + <attr format="dimension" name="behavior_peekHeight"> + <!-- Peek at the 16:9 ratio keyline of its parent --> + <enum name="auto" value="-1"/> + </attr> + + <attr format="boolean" name="behavior_hideable"/> + + <attr format="boolean" name="behavior_skipCollapsed"/> + + <attr format="boolean" name="behavior_fitToContents"/> + + <attr name="behavior_draggable"/> + + <attr format="reference|float" name="behavior_halfExpandedRatio"/> + + <attr format="reference|dimension" name="behavior_expandedOffset"/> + + <attr format="dimension" name="behavior_significantVelocityThreshold"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + <attr name="backgroundTint"/> + + <attr name="behavior_saveFlags"> + <!-- This flag will preserve the peekHeight on configuration change. --> + <flag name="peekHeight" value="0x1"/> + <!-- This flag will preserve the fitToContents boolean value on configuration change. --> + <flag name="fitToContents" value="0x2"/> + <!-- This flag will preserve the hideable boolean value on configuration change. --> + <flag name="hideable" value="0x4"/> + <!-- This flag will preserve the skipCollapsed boolean value on configuration change. --> + <flag name="skipCollapsed" value="0x8"/> + <!-- This flag will preserve the all the aforementioned values on configuration change. --> + <flag name="all" value="-1"/> + <!-- This flag will not preserve the aforementioned values on configuration change. The only + value preserved will be the positional state, e.g. collapsed, hidden, expanded, etc. + This is the default behavior. --> + <flag name="none" value="0"/> + </attr> + + <attr format="boolean" name="gestureInsetBottomIgnored"/> + <attr name="paddingBottomSystemWindowInsets"/> + <attr name="paddingLeftSystemWindowInsets"/> + <attr name="paddingRightSystemWindowInsets"/> + <attr name="paddingTopSystemWindowInsets"/> + <attr name="marginLeftSystemWindowInsets"/> + <attr name="marginRightSystemWindowInsets"/> + <attr name="marginTopSystemWindowInsets"/> + <attr format="boolean" name="shouldRemoveExpandedCorners"/> + <attr name="android:elevation"/> + <attr name="android:maxWidth"/> + <attr name="android:maxHeight"/> + + </declare-styleable> + <declare-styleable name="Chip"> + + + <attr format="color" name="chipSurfaceColor"/> + + <attr format="color" name="chipBackgroundColor"/> + + <attr format="dimension" name="chipMinHeight"/> + + <attr format="dimension" name="chipCornerRadius"/> + + <attr format="color" name="chipStrokeColor"/> + + <attr format="dimension" name="chipStrokeWidth"/> + + <attr name="rippleColor"/> + + <attr format="dimension" name="chipMinTouchTargetSize"/> + + <attr name="ensureMinTouchTargetSize"/> + + + <attr name="android:text"/> + + <attr name="android:textAppearance"/> + + <attr name="android:textColor"/> + + <attr name="android:textSize"/> + + <attr name="android:ellipsize"/> + + <attr name="android:maxWidth"/> + + + <attr format="boolean" name="chipIconVisible"/> + + <attr format="boolean" name="chipIconEnabled"/> + + <attr format="reference" name="chipIcon"/> + + <attr format="color" name="chipIconTint"/> + + <attr format="dimension" name="chipIconSize"/> + + + <attr format="boolean" name="closeIconVisible"/> + + <attr format="boolean" name="closeIconEnabled"/> + + <attr format="reference" name="closeIcon"/> + + <attr format="color" name="closeIconTint"/> + + <attr format="dimension" name="closeIconSize"/> + + + <attr name="android:checkable"/> + + <attr format="boolean" name="checkedIconVisible"/> + + <attr format="boolean" name="checkedIconEnabled"/> + + <attr name="checkedIcon"/> + + <attr name="checkedIconTint"/> + + + <attr name="showMotionSpec"/> + + <attr name="hideMotionSpec"/> + + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + + + + + + <attr format="dimension" name="chipStartPadding"/> + + <attr format="dimension" name="iconStartPadding"/> + + + + + <attr format="dimension" name="iconEndPadding"/> + + <attr format="dimension" name="textStartPadding"/> + + + + + <attr format="dimension" name="textEndPadding"/> + + <attr format="dimension" name="closeIconStartPadding"/> + + + + + <attr format="dimension" name="closeIconEndPadding"/> + + <attr format="dimension" name="chipEndPadding"/> + + + </declare-styleable> + <declare-styleable name="ChipGroup"> + + + <attr format="dimension" name="chipSpacing"/> + + <attr format="dimension" name="chipSpacingHorizontal"/> + + <attr format="dimension" name="chipSpacingVertical"/> + + + <attr format="boolean" name="singleLine"/> + + + <attr name="singleSelection"/> + + <attr name="selectionRequired"/> + + <attr format="reference" name="checkedChip"/> + + </declare-styleable> + <declare-styleable name="CircularProgressIndicator"> + + <attr format="dimension" name="indicatorSize"/> + + <attr format="dimension" name="indicatorInset"/> + + <attr name="indicatorDirectionCircular"> + <!-- + In the indeterminate mode, the spinner will spin clockwise; in the + determinate mode, the indicator will progress from the top (12 o'clock) + clockwise. + --> + <enum name="clockwise" value="0"/> + <!-- + In the indeterminate mode, the spinner will spin counter-clockwise; in + the determinate mode, the indicator will progress from the top (12 + o'clock) counter-clockwise. + --> + <enum name="counterclockwise" value="1"/> + </attr> + </declare-styleable> + <declare-styleable name="ClockFaceView"> + + <attr format="color" name="clockNumberTextColor"/> + <attr format="color" name="clockFaceBackgroundColor"/> + + </declare-styleable> + <declare-styleable name="ClockHandView"> + + <attr format="color" name="clockHandColor"/> + + <attr name="materialCircleRadius"/> + + <attr format="dimension" name="selectorSize"/> + </declare-styleable> + <declare-styleable name="CollapsingToolbarLayout"> + + <attr format="dimension" name="expandedTitleMargin"/> + + <attr format="dimension" name="expandedTitleMarginStart"/> + + <attr format="dimension" name="expandedTitleMarginTop"/> + + <attr format="dimension" name="expandedTitleMarginEnd"/> + + <attr format="dimension" name="expandedTitleMarginBottom"/> + + <attr format="reference" name="expandedTitleTextAppearance"/> + + <attr format="reference" name="collapsedTitleTextAppearance"/> + + <attr format="enum" name="titleTextEllipsize"> + <enum name="start" value="0"/> + <enum name="middle" value="1"/> + <enum name="end" value="2"/> + <enum name="marquee" value="3"/> + </attr> + + <attr format="color|reference" name="expandedTitleTextColor"/> + + <attr format="color|reference" name="collapsedTitleTextColor"/> + + <attr format="color" name="contentScrim"/> + + <attr format="color" name="statusBarScrim"/> + + <attr format="reference" name="toolbarId"/> + + <attr format="dimension" name="scrimVisibleHeightTrigger"/> + + <attr format="integer" name="scrimAnimationDuration"/> + + + <attr name="collapsedTitleGravity"> + <!-- Push title to the top of its container, not changing its size. --> + <flag name="top" value="0x30"/> + <!-- Push title to the bottom of its container, not changing its size. --> + <flag name="bottom" value="0x50"/> + <!-- Push title to the left of its container, not changing its size. --> + <flag name="left" value="0x03"/> + <!-- Push title to the right of its container, not changing its size. --> + <flag name="right" value="0x05"/> + <!-- Place title in the vertical center of its container, not changing its size. --> + <flag name="center_vertical" value="0x10"/> + <!-- Grow the vertical size of the title if needed so it completely fills its container. --> + <flag name="fill_vertical" value="0x70"/> + <!-- Place title in the horizontal center of its container, not changing its size. --> + <flag name="center_horizontal" value="0x01"/> + <!-- Place the title in the center of its container in both the vertical and horizontal axis, not changing its size. --> + <flag name="center" value="0x11"/> + <!-- Push title to the beginning of its container, not changing its size. --> + <flag name="start" value="0x00800003"/> + <!-- Push title to the end of its container, not changing its size. --> + <flag name="end" value="0x00800005"/> + </attr> + + + <attr name="expandedTitleGravity"> + <!-- Push title to the top of its container, not changing its size. --> + <flag name="top" value="0x30"/> + <!-- Push title to the bottom of its container, not changing its size. --> + <flag name="bottom" value="0x50"/> + <!-- Push title to the left of its container, not changing its size. --> + <flag name="left" value="0x03"/> + <!-- Push title to the right of its container, not changing its size. --> + <flag name="right" value="0x05"/> + <!-- Place title in the vertical center of its container, not changing its size. --> + <flag name="center_vertical" value="0x10"/> + <!-- Grow the vertical size of the title if needed so it completely fills its container. --> + <flag name="fill_vertical" value="0x70"/> + <!-- Place title in the horizontal center of its container, not changing its size. --> + <flag name="center_horizontal" value="0x01"/> + <!-- Place the title in the center of its container in both the vertical and horizontal axis, not changing its size. --> + <flag name="center" value="0x11"/> + <!-- Push title to the beginning of its container, not changing its size. --> + <flag name="start" value="0x00800003"/> + <!-- Push title to the end of its container, not changing its size. --> + <flag name="end" value="0x00800005"/> + </attr> + + + <attr format="boolean" name="titleEnabled"/> + + <attr name="title"/> + + <attr name="titleCollapseMode"> + <!-- The expanded title will continuously scale and translate to its final collapsed position. --> + <enum name="scale" value="0"/> + <!-- The expanded title will fade out and translate, and the collapsed title will fade in. --> + <enum name="fade" value="1"/> + </attr> + + <attr format="integer" name="maxLines"/> + + <attr format="boolean" name="forceApplySystemWindowInsetTop"/> + + <attr format="boolean" name="extraMultilineHeightEnabled"/> + + + <attr format="reference" name="titlePositionInterpolator"/> + </declare-styleable> + <declare-styleable name="CollapsingToolbarLayout_Layout"> + <attr name="layout_collapseMode"> + <!-- The view will act as normal with no collapsing behavior. --> + <enum name="none" value="0"/> + <!-- The view will pin in place. --> + <enum name="pin" value="1"/> + <!-- The view will scroll in a parallax fashion. See the + layout_collapseParallaxMultiplier attribute to change the multiplier. --> + <enum name="parallax" value="2"/> + </attr> + + + <attr format="float" name="layout_collapseParallaxMultiplier"/> + </declare-styleable> + <declare-styleable name="ExtendedFloatingActionButton"> + + <attr name="elevation"/> + + <attr name="extendStrategy"> + <!-- Strategy to extend FAB back to the width it shrunk from. --> + <enum name="auto" value="0"/> + <!-- Strategy to extend FAB to wrap content. --> + <enum name="wrap_content" value="1"/> + <!-- Strategy to extend FAB to match parent. --> + <enum name="match_parent" value="2"/> + </attr> + + <attr name="showMotionSpec"/> + + <attr name="hideMotionSpec"/> + + <attr format="reference" name="extendMotionSpec"/> + + <attr format="reference" name="shrinkMotionSpec"/> + + <attr format="dimension" name="collapsedSize"/> + </declare-styleable> + <declare-styleable name="ExtendedFloatingActionButton_Behavior_Layout"> + + <attr name="behavior_autoHide"/> + + <attr format="boolean" name="behavior_autoShrink"/> + </declare-styleable> + <declare-styleable name="FloatingActionButton"> + + <attr name="android:enabled"/> + + <attr name="backgroundTint"/> + <attr name="backgroundTintMode"/> + + + <attr name="rippleColor"/> + + + <attr name="fabSize"> + <!-- A size which will change based on the window size. --> + <enum name="auto" value="-1"/> + <!-- The normal sized button. --> + <enum name="normal" value="0"/> + <!-- The mini sized button. --> + <enum name="mini" value="1"/> + </attr> + + <attr format="dimension" name="fabCustomSize"/> + + <attr name="elevation"/> + + <attr name="ensureMinTouchTargetSize"/> + + <attr format="dimension" name="hoveredFocusedTranslationZ"/> + + <attr format="dimension" name="pressedTranslationZ"/> + + <attr format="dimension" name="borderWidth"/> + + <attr format="boolean" name="useCompatPadding"/> + + <attr format="dimension" name="maxImageSize"/> + + <attr name="showMotionSpec"/> + + <attr name="hideMotionSpec"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + </declare-styleable> + <declare-styleable name="FloatingActionButton_Behavior_Layout"> + + <attr format="boolean" name="behavior_autoHide"/> + </declare-styleable> + <declare-styleable name="FlowLayout"> + + <attr format="dimension" name="itemSpacing"/> + + <attr format="dimension" name="lineSpacing"/> + </declare-styleable> + <declare-styleable name="ForegroundLinearLayout"> + <attr name="android:foreground"/> + <attr name="android:foregroundGravity"/> + + <attr format="boolean" name="foregroundInsidePadding"/> + </declare-styleable> + <declare-styleable name="Insets"> + + <attr format="boolean" name="paddingBottomSystemWindowInsets"/> + <attr format="boolean" name="paddingLeftSystemWindowInsets"/> + <attr format="boolean" name="paddingRightSystemWindowInsets"/> + <attr format="boolean" name="paddingTopSystemWindowInsets"/> + <attr format="boolean" name="marginLeftSystemWindowInsets"/> + <attr format="boolean" name="marginRightSystemWindowInsets"/> + <attr format="boolean" name="marginTopSystemWindowInsets"/> + </declare-styleable> + <declare-styleable name="LinearProgressIndicator"> + + <attr name="indeterminateAnimationType"> + <!-- + The track will be filled with three adjacent segments in iterative different colors. + This type is only available when there are three or more indicator + colors. + --> + <enum name="contiguous" value="0"/> + <!-- + There will be two disjoint segments in the same color per cycle. The color iterates between cycles. + --> + <enum name="disjoint" value="1"/> + </attr> + + <attr name="indicatorDirectionLinear"> + <!-- Animated from the left end to the right end of the track. --> + <enum name="leftToRight" value="0"/> + <!-- Animated from the right end to the left end of the track. --> + <enum name="rightToLeft" value="1"/> + <!-- + Animated from the start position to the end position of the track. + This will be same as the leftToRight for API before 17. + --> + <enum name="startToEnd" value="2"/> + <!-- + Animated from the end position to the start position of the track. + This will be same as the rightToLeft for API before 17. + --> + <enum name="endToStart" value="3"/> + </attr> + </declare-styleable> + <declare-styleable name="MaterialAlertDialog"> + <attr format="dimension" name="backgroundInsetStart"/> + <attr format="dimension" name="backgroundInsetTop"/> + <attr format="dimension" name="backgroundInsetEnd"/> + <attr format="dimension" name="backgroundInsetBottom"/> + </declare-styleable> + <declare-styleable name="MaterialAlertDialogTheme"> + <attr format="reference" name="materialAlertDialogTheme"/> + <attr format="reference" name="materialAlertDialogTitlePanelStyle"/> + <attr format="reference" name="materialAlertDialogTitleIconStyle"/> + <attr format="reference" name="materialAlertDialogTitleTextStyle"/> + <attr format="reference" name="materialAlertDialogBodyTextStyle"/> + <attr format="integer" name="materialAlertDialogButtonSpacerVisibility"/> + </declare-styleable> + <declare-styleable name="MaterialAutoCompleteTextView" parent="AppCompatAutoCompleteTextView"> + <attr name="android:inputType"/> + <attr name="android:popupElevation"/> + + + <attr format="reference" name="simpleItemLayout"/> + + <attr format="reference" name="simpleItems"/> + + <attr format="color" name="simpleItemSelectedColor"/> + + <attr format="color" name="simpleItemSelectedRippleColor"/> + </declare-styleable> + <declare-styleable name="MaterialButton"> + + <attr name="android:checkable"/> + <attr name="android:insetLeft"/> + <attr name="android:insetRight"/> + <attr name="android:insetTop"/> + <attr name="android:insetBottom"/> + + <attr name="android:background"/> + <attr name="backgroundTint"/> + <attr name="backgroundTintMode"/> + + <attr name="elevation"/> + + <attr format="reference" name="icon"/> + + <attr format="dimension" name="iconSize"/> + + <attr format="dimension" name="iconPadding"/> + + <attr name="iconGravity"> + <!-- Push icon to the start of the button. --> + <flag name="start" value="0x1"/> + <!-- Push the icon to the start of the text keeping a distance equal to + {@code iconPadding} from the text. --> + <flag name="textStart" value="0x2"/> + <!-- Push icon to the end of the button. --> + <flag name="end" value="0x3"/> + <!-- Push the icon to the end of the text keeping a distance equal to + {@code iconPadding} from the text. --> + <flag name="textEnd" value="0x4"/> + <!-- Push the icon to the top of the button. --> + <flag name="top" value="0x10"/> + <!-- Push the icon to the top of the text keeping a distance equal to + {@code iconPadding} from the text. --> + <flag name="textTop" value="0x20"/> + </attr> + + <attr format="color" name="iconTint"/> + + <attr name="iconTintMode"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + <attr name="strokeColor"/> + + <attr name="strokeWidth"/> + + <attr format="dimension" name="cornerRadius"/> + + <attr name="rippleColor"/> + + <attr format="boolean" name="toggleCheckedStateOnClick"/> + </declare-styleable> + <declare-styleable name="MaterialButtonToggleGroup"> + + <attr name="singleSelection"/> + + + <attr name="selectionRequired"/> + + <attr format="reference" name="checkedButton"/> + + <attr name="android:enabled"/> + </declare-styleable> + <declare-styleable name="MaterialCalendar"> + <attr name="android:windowFullscreen"/> + <attr format="reference" name="dayStyle"/> + <attr format="reference" name="dayInvalidStyle"/> + <attr format="reference" name="daySelectedStyle"/> + <attr format="reference" name="dayTodayStyle"/> + <attr format="reference" name="yearStyle"/> + <attr format="reference" name="yearSelectedStyle"/> + <attr format="reference" name="yearTodayStyle"/> + <attr format="color" name="rangeFillColor"/> + <attr format="boolean" name="nestedScrollable"/> + </declare-styleable> + <declare-styleable name="MaterialCalendarItem"> + <attr name="android:insetLeft"/> + <attr name="android:insetTop"/> + <attr name="android:insetRight"/> + <attr name="android:insetBottom"/> + <attr format="color" name="itemFillColor"/> + <attr name="itemTextColor"/> + <attr format="color" name="itemStrokeColor"/> + <attr format="dimension" name="itemStrokeWidth"/> + <attr name="itemShapeAppearance"/> + <attr name="itemShapeAppearanceOverlay"/> + </declare-styleable> + <declare-styleable name="MaterialCardView"> + + <attr name="android:checkable"/> + + <attr format="color" name="cardForegroundColor"/> + + <attr name="checkedIcon"/> + + <attr name="checkedIconTint"/> + + <attr format="dimension" name="checkedIconSize"/> + + <attr format="dimension" name="checkedIconMargin"/> + + <attr name="checkedIconGravity"> + <!-- Gravity.TOP | Gravity.END --> + <enum name="TOP_END" value="8388661"/> + <!-- Gravity.TOP | Gravity.START --> + <enum name="TOP_START" value="8388659"/> + <!-- Gravity.BOTTOM | Gravity.END --> + <enum name="BOTTOM_END" value="8388693"/> + <!-- Gravity.BOTTOM | Gravity.START --> + <enum name="BOTTOM_START" value="8388691"/> + </attr> + + <attr name="rippleColor"/> + + <attr format="boolean" name="state_dragged"/> + + <attr name="strokeColor"/> + + <attr name="strokeWidth"/> + + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + </declare-styleable> + <declare-styleable name="MaterialCheckBox"> + <attr name="android:button"/> + <attr name="buttonCompat"/> + + <attr name="useMaterialThemeColors"/> + + <attr name="buttonTint"/> + + <attr format="reference" name="buttonIcon"/> + + <attr format="reference|color" name="buttonIconTint"/> + + <attr name="buttonIconTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + <attr format="boolean" name="centerIfNoTextEnabled"/> + + <attr format="boolean" name="errorShown"/> + + <attr format="string" name="errorAccessibilityLabel"/> + + <attr name="checkedState"> + <!-- The unchecked state of the checkbox. --> + <enum name="unchecked" value="0"/> + <!-- The checked state of the checkbox. --> + <enum name="checked" value="1"/> + <!-- The indeterminate state of the checkbox. --> + <enum name="indeterminate" value="2"/> + </attr> + </declare-styleable> + <declare-styleable name="MaterialCheckBoxStates"> + + <attr format="boolean" name="state_error"/> + + <attr format="boolean" name="state_indeterminate"/> + </declare-styleable> + <declare-styleable name="MaterialDivider"> + + <attr format="color|reference" name="dividerColor"/> + + <attr format="dimension" name="dividerThickness"/> + + <attr name="dividerInsetEnd"/> + + <attr name="dividerInsetStart"/> + + <attr format="boolean" name="lastItemDecorated"/> + </declare-styleable> + <declare-styleable name="MaterialRadioButton"> + + <attr name="useMaterialThemeColors"/> + + <attr name="buttonTint"/> + </declare-styleable> + <declare-styleable name="MaterialShape"> + + <attr format="reference" name="shapeAppearance"/> + + <attr format="reference" name="shapeAppearanceOverlay"/> + </declare-styleable> + <declare-styleable name="MaterialSwitch"> + + <attr format="reference" name="thumbIcon"/> + + <attr format="color" name="thumbIconTint"/> + + <attr name="thumbIconTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + + <attr format="reference" name="trackDecoration"/> + + <attr format="color" name="trackDecorationTint"/> + + <attr name="trackDecorationTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + <!-- Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D) --> + <enum name="add" value="16"/> + </attr> + </declare-styleable> + <declare-styleable name="MaterialTextAppearance" parent="TextAppearance"> + <attr name="android:lineHeight"/> + <attr format="dimension" name="lineHeight"/> + <attr name="android:letterSpacing"/> + </declare-styleable> + <declare-styleable name="MaterialTextView" parent="AppCompatTextView"> + <attr name="android:textAppearance"/> + <attr name="android:lineHeight"/> + <attr name="lineHeight"/> + </declare-styleable> + <declare-styleable name="MaterialTimePicker"> + + <attr name="keyboardIcon"/> + <attr name="clockIcon"/> + + </declare-styleable> + <declare-styleable name="MaterialToolbar"> + + <attr name="navigationIconTint"/> + + <attr format="boolean" name="titleCentered"/> + + <attr format="boolean" name="subtitleCentered"/> + + <attr format="boolean" name="logoAdjustViewBounds"/> + + <attr name="logoScaleType"> + <!-- Scale using the image matrix when drawing. See + {@link android.widget.ImageView#setImageMatrix(Matrix)}. --> + <enum name="matrix" value="0"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}. --> + <enum name="fitXY" value="1"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}. --> + <enum name="fitStart" value="2"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}. --> + <enum name="fitCenter" value="3"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}. --> + <enum name="fitEnd" value="4"/> + <!-- Center the image in the view, but perform no scaling. --> + <enum name="center" value="5"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + (width and height) of the image will be equal to or larger than the corresponding + dimension of the view (minus padding). The image is then centered in the view. --> + <enum name="centerCrop" value="6"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so that both + dimensions (width and height) of the image will be equal to or less than the + corresponding dimension of the view (minus padding). The image is then centered in + the view. --> + <enum name="centerInside" value="7"/> + </attr> + </declare-styleable> + <declare-styleable name="NavigationBarActiveIndicator"> + + <attr name="android:color"/> + + <attr name="android:width"/> + + <attr name="android:height"/> + + <attr name="shapeAppearance"/> + + <attr format="dimension" name="marginHorizontal"/> + </declare-styleable> + <declare-styleable name="NavigationBarView"> + + <attr name="backgroundTint"/> + + <attr name="menu"/> + + <attr name="labelVisibilityMode"> + <!-- Label behaves as "labeled" when there are 3 items or less, or "selected" when there are + 4 items or more. --> + <enum name="auto" value="-1"/> + <!-- Label is shown on the selected navigation item. --> + <enum name="selected" value="0"/> + <!-- Label is shown on all navigation items. --> + <enum name="labeled" value="1"/> + <!-- Label is not shown on any navigation items. --> + <enum name="unlabeled" value="2"/> + </attr> + + <attr name="itemBackground"/> + + <attr name="itemRippleColor"/> + + <attr name="itemIconSize"/> + + <attr name="itemIconTint"/> + + <attr format="reference" name="itemTextAppearanceInactive"/> + + <attr format="reference" name="itemTextAppearanceActive"/> + + <attr name="itemTextColor"/> + + <attr format="dimension" name="itemPaddingTop"/> + + <attr format="dimension" name="itemPaddingBottom"/> + + + <attr format="reference" name="itemActiveIndicatorStyle"/> + + + <attr name="elevation"/> + </declare-styleable> + <declare-styleable name="NavigationRailView"> + + + <attr format="dimension" name="itemMinHeight"/> + + <attr name="headerLayout"/> + + <attr name="menuGravity"> + <!-- Navigation rail destinations will be aligned as a group at the top. This is the default behavior. --> + <!-- Gravity.TOP | Gravity.CENTER_HORIZONTAL--> + <enum name="top" value="49"/> + <!-- Navigation rail destinations will be aligned as a group at the center. --> + <!-- Gravity.CENTER --> + <enum name="center" value="17"/> + <!-- Navigation rail destinations will be aligned as a group at the bottom. --> + <!-- Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL --> + <enum name="bottom" value="81"/> + </attr> + + <attr name="paddingTopSystemWindowInsets"/> + + <attr name="paddingBottomSystemWindowInsets"/> + </declare-styleable> + <declare-styleable name="NavigationView"> + <attr name="android:background"/> + <attr name="android:fitsSystemWindows"/> + <attr name="android:layout_gravity"/> + <attr name="android:maxWidth"/> + <attr name="elevation"/> + + <attr format="reference" name="menu"/> + <attr format="reference|color" name="subheaderColor"/> + <attr format="reference" name="subheaderTextAppearance"/> + <attr format="color" name="itemIconTint"/> + <attr name="itemTextColor"/> + + <attr format="reference" name="itemBackground"/> + <attr name="itemRippleColor"/> + <attr format="reference" name="itemTextAppearance"/> + + <attr name="headerLayout"/> + + <attr format="dimension" name="itemHorizontalPadding"/> + + <attr format="dimension" name="itemVerticalPadding"/> + + <attr format="dimension" name="itemIconPadding"/> + + <attr format="dimension" name="itemIconSize"/> + + <attr format="integer" min="1" name="itemMaxLines"/> + + <attr name="itemShapeAppearance"/> + + <attr name="itemShapeAppearanceOverlay"/> + + <attr format="dimension" name="itemShapeInsetStart"/> + + <attr format="dimension" name="itemShapeInsetTop"/> + + <attr format="dimension" name="itemShapeInsetEnd"/> + + <attr format="dimension" name="itemShapeInsetBottom"/> + + <attr format="color" name="itemShapeFillColor"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + <attr format="boolean" name="topInsetScrimEnabled"/> + + <attr format="boolean" name="bottomInsetScrimEnabled"/> + + <attr name="dividerInsetStart"/> + + <attr name="dividerInsetEnd"/> + + <attr format="dimension" name="subheaderInsetStart"/> + + <attr format="dimension" name="subheaderInsetEnd"/> + + <attr format="dimension" name="drawerLayoutCornerSize"/> + </declare-styleable> + <declare-styleable name="RadialViewGroup"> + + + <attr name="materialCircleRadius"/> + </declare-styleable> + <declare-styleable name="RangeSlider"> + <attr format="reference" name="values"/> + + + <attr format="dimension" name="minSeparation"/> + </declare-styleable> + <declare-styleable name="ScrimInsetsFrameLayout"> + <attr format="color|reference" name="insetForeground"/> + </declare-styleable> + <declare-styleable name="ScrollingViewBehavior_Layout"> + + <attr format="dimension" name="behavior_overlapTop"/> + </declare-styleable> + <declare-styleable name="SearchBar"> + + <attr name="android:textAppearance"/> + + <attr name="android:text"/> + + <attr name="android:hint"/> + + <attr name="elevation"/> + + <attr format="boolean" name="defaultMarginsEnabled"/> + + <attr format="boolean" name="defaultScrollFlagsEnabled"/> + + <attr name="hideNavigationIcon"/> + + <attr format="boolean" name="forceDefaultNavigationOnClickListener"/> + + <attr format="boolean" name="tintNavigationIcon"/> + + <attr name="navigationIconTint"/> + + <attr name="strokeColor"/> + + <attr name="strokeWidth"/> + </declare-styleable> + <declare-styleable name="SearchView"> + + <attr name="android:textAppearance"/> + + <attr name="android:text"/> + + <attr name="android:hint"/> + + <attr format="string" name="searchPrefixText"/> + + <attr format="boolean" name="useDrawerArrowDrawable"/> + + <attr format="boolean" name="animateNavigationIcon"/> + + <attr format="boolean" name="animateMenuItems"/> + + <attr name="hideNavigationIcon"/> + + <attr format="boolean" name="autoShowKeyboard"/> + + <attr name="headerLayout"/> + </declare-styleable> + <declare-styleable name="ShapeAppearance"> + + <attr format="dimension|fraction" name="cornerSize"/> + + <attr format="dimension|fraction" name="cornerSizeTopLeft"/> + + <attr format="dimension|fraction" name="cornerSizeTopRight"/> + + <attr format="dimension|fraction" name="cornerSizeBottomRight"/> + + <attr format="dimension|fraction" name="cornerSizeBottomLeft"/> + + + <attr format="enum" name="cornerFamily"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + + <attr format="enum" name="cornerFamilyTopLeft"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + + <attr format="enum" name="cornerFamilyTopRight"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + + <attr format="enum" name="cornerFamilyBottomRight"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + + <attr format="enum" name="cornerFamilyBottomLeft"> + <enum name="rounded" value="0"/> + <enum name="cut" value="1"/> + </attr> + </declare-styleable> + <declare-styleable name="ShapeableImageView"> + <attr name="strokeWidth"/> + <attr name="strokeColor"/> + + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + + <attr name="contentPadding"/> + <attr name="contentPaddingBottom"/> + <attr format="dimension" name="contentPaddingEnd"/> + <attr name="contentPaddingLeft"/> + <attr name="contentPaddingRight"/> + <attr format="dimension" name="contentPaddingStart"/> + <attr name="contentPaddingTop"/> + </declare-styleable> + <declare-styleable name="SideSheetBehavior_Layout"> + + <attr name="behavior_draggable"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + <attr name="backgroundTint"/> + + <attr name="android:elevation"/> + <attr name="android:maxWidth"/> + <attr name="android:maxHeight"/> + + + <attr format="reference" name="coplanarSiblingViewId"/> + + </declare-styleable> + <declare-styleable name="Slider"> + <attr name="android:value"/> + <attr name="android:valueFrom"/> + <attr name="android:valueTo"/> + <attr name="android:stepSize"/> + + <attr name="android:enabled"/> + + <attr format="color" name="haloColor"/> + + <attr format="dimension" name="haloRadius"/> + + <attr name="labelBehavior"> + <!-- Mode that draws the label floating above the bounds of this view. --> + <enum name="floating" value="0"/> + <!-- Mode that draws the label within the bounds of the view. --> + <enum name="withinBounds" value="1"/> + <!-- Mode that prevents the label from being drawn. --> + <enum name="gone" value="2"/> + <!-- Mode that always draws the label. --> + <enum name="visible" value="3"/> + </attr> + + <attr format="reference" name="labelStyle"/> + + <attr format="color" name="thumbColor"/> + + <attr format="dimension" name="thumbElevation"/> + + <attr format="dimension" name="thumbRadius"/> + + <attr format="color" name="thumbStrokeColor"/> + + <attr format="dimension" name="thumbStrokeWidth"/> + + <attr name="minTouchTargetSize"/> + + <attr format="color" name="tickColor"/> + + <attr format="color" name="tickColorActive"/> + + <attr format="color" name="tickColorInactive"/> + + <attr format="dimension" name="tickRadiusActive"/> + + <attr format="dimension" name="tickRadiusInactive"/> + + <attr format="boolean" name="tickVisible"/> + + <attr name="trackColor"/> + + <attr format="color" name="trackColorActive"/> + + <attr format="color" name="trackColorInactive"/> + + <attr format="dimension" name="trackHeight"/> + </declare-styleable> + <declare-styleable name="Snackbar"> + + <attr format="reference" name="snackbarStyle"/> + + <attr format="reference" name="snackbarButtonStyle"/> + + <attr format="reference" name="snackbarTextViewStyle"/> + </declare-styleable> + <declare-styleable name="SnackbarLayout"> + <attr name="android:maxWidth"/> + <attr name="elevation"/> + <attr format="dimension" name="maxActionInlineWidth"/> + + <attr format="enum" name="animationMode"> + <!-- Mode that corresponds to the slide in and out animations. --> + <enum name="slide" value="0"/> + <!-- Mode that corresponds to the fade in and out animations. --> + <enum name="fade" value="1"/> + </attr> + + <attr format="float" name="backgroundOverlayColorAlpha"/> + + <attr name="backgroundTint"/> + + <attr name="backgroundTintMode"/> + + <attr format="float" name="actionTextColorAlpha"/> + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + </declare-styleable> + <declare-styleable name="SwitchMaterial"> + + <attr name="useMaterialThemeColors"/> + </declare-styleable> + <declare-styleable name="TabItem"> + + <attr name="android:text"/> + + <attr name="android:icon"/> + + <attr name="android:layout"/> + </declare-styleable> + <declare-styleable name="TabLayout"> + + <attr format="color" name="tabIndicatorColor"/> + + <attr format="dimension" name="tabIndicatorHeight"/> + + <attr format="dimension" name="tabContentStart"/> + + <attr format="reference" name="tabBackground"/> + + <attr format="reference" name="tabIndicator"/> + + <attr name="tabIndicatorGravity"> + <!-- Align indicator to the bottom of this tab layout. --> + <enum name="bottom" value="0"/> + <!-- Align indicator along the center of this tab layout. --> + <enum name="center" value="1"/> + <!-- Align indicator to the top of this tab layout. --> + <enum name="top" value="2"/> + <!-- Stretch indicator to match the height and width of a tab item in this layout. --> + <enum name="stretch" value="3"/> + </attr> + + <attr format="integer" name="tabIndicatorAnimationDuration"/> + + <attr format="boolean" name="tabIndicatorFullWidth"/> + + <attr name="tabIndicatorAnimationMode"> + <!-- Animate the selection indicator's left and right bounds in step with + each other. --> + <enum name="linear" value="0"/> + <!-- Animate the selection indicator's left and right bounds out of step + with each other, decelerating the front and accelerating the back. + This causes the indicator to look like it stretches between destinations + an then shrinks back down to fit the size of it's target tab. --> + <enum name="elastic" value="1"/> + <!-- Animate the selection indicator by sequentially fading it out from + its current destination and then fading it in at its new + destination. --> + <enum name="fade" value="2"/> + </attr> + + <attr name="tabMode"> + <enum name="scrollable" value="0"/> + <enum name="fixed" value="1"/> + <enum name="auto" value="2"/> + </attr> + + <attr name="tabGravity"> + <enum name="fill" value="0"/> + <enum name="center" value="1"/> + <enum name="start" value="2"/> + </attr> + + <attr format="boolean" name="tabInlineLabel"/> + + <attr format="dimension" name="tabMinWidth"/> + + <attr format="dimension" name="tabMaxWidth"/> + + <attr format="reference" name="tabTextAppearance"/> + + <attr format="color" name="tabTextColor"/> + + <attr format="color" name="tabSelectedTextColor"/> + + <attr format="reference" name="tabSelectedTextAppearance"/> + + <attr format="dimension" name="tabPaddingStart"/> + + <attr format="dimension" name="tabPaddingTop"/> + + <attr format="dimension" name="tabPaddingEnd"/> + + <attr format="dimension" name="tabPaddingBottom"/> + + <attr format="dimension" name="tabPadding"/> + + <attr format="color" name="tabIconTint"/> + + <attr name="tabIconTintMode"> + <enum name="src_over" value="3"/> + <enum name="src_in" value="5"/> + <enum name="src_atop" value="9"/> + <enum name="multiply" value="14"/> + <enum name="screen" value="15"/> + <enum name="add" value="16"/> + </attr> + + <attr format="color" name="tabRippleColor"/> + + <attr format="boolean" name="tabUnboundedRipple"/> + </declare-styleable> + <declare-styleable name="TextInputEditText"> + + <attr format="boolean" name="textInputLayoutFocusedRectEnabled"/> + </declare-styleable> + <declare-styleable name="TextInputLayout"> + + <attr name="android:enabled"/> + + <attr name="android:hint"/> + + <attr name="android:textColorHint"/> + + <attr name="android:minEms"/> + + <attr name="android:maxEms"/> + + <attr name="android:minWidth"/> + + <attr name="android:maxWidth"/> + + + <attr format="boolean" name="hintEnabled"/> + + <attr format="boolean" name="hintAnimationEnabled"/> + + <attr format="reference" name="hintTextAppearance"/> + + <attr format="color" name="hintTextColor"/> + + <attr format="boolean" name="expandedHintEnabled"/> + + + <attr format="string" name="helperText"/> + + <attr format="boolean" name="helperTextEnabled"/> + + <attr format="reference" name="helperTextTextAppearance"/> + + <attr format="color" name="helperTextTextColor"/> + + + <attr format="boolean" name="errorEnabled"/> + + <attr format="reference" name="errorTextAppearance"/> + + <attr format="color" name="errorTextColor"/> + + <attr format="string" name="errorContentDescription"/> + + <attr format="integer" name="errorAccessibilityLiveRegion"/> + + <attr format="reference" name="errorIconDrawable"/> + + <attr format="reference" name="errorIconTint"/> + + <attr name="errorIconTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + </attr> + + + <attr format="boolean" name="counterEnabled"/> + + <attr format="integer" name="counterMaxLength"/> + + <attr format="reference" name="counterTextAppearance"/> + + <attr format="reference" name="counterTextColor"/> + + <attr format="reference" name="counterOverflowTextAppearance"/> + + <attr format="reference" name="counterOverflowTextColor"/> + + + <attr format="string" name="placeholderText"/> + + <attr format="reference" name="placeholderTextAppearance"/> + + <attr format="color" name="placeholderTextColor"/> + + + <attr format="string" name="prefixText"/> + + <attr format="reference" name="prefixTextAppearance"/> + + <attr format="color" name="prefixTextColor"/> + + <attr format="string" name="suffixText"/> + + <attr format="reference" name="suffixTextAppearance"/> + + <attr format="color" name="suffixTextColor"/> + + + <attr format="reference" name="startIconDrawable"/> + + <attr format="string" name="startIconContentDescription"/> + + <attr format="boolean" name="startIconCheckable"/> + + <attr format="color" name="startIconTint"/> + + <attr name="startIconTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + </attr> + + <attr format="dimension" name="startIconMinSize"/> + + <attr name="startIconScaleType"> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}. --> + <enum name="fitXY" value="0"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}. --> + <enum name="fitStart" value="1"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}. --> + <enum name="fitCenter" value="2"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}. --> + <enum name="fitEnd" value="3"/> + <!-- Center the image in the view, but perform no scaling. --> + <enum name="center" value="4"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + (width and height) of the image will be equal to or larger than the corresponding + dimension of the view (minus padding). The image is then centered in the view. --> + <enum name="centerCrop" value="5"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so that both + dimensions (width and height) of the image will be equal to or less than the + corresponding dimension of the view (minus padding). The image is then centered in + the view. --> + <enum name="centerInside" value="6"/> + </attr> + + <attr name="endIconMode"> + <!-- The view will display a custom icon specified by the user. --> + <enum name="custom" value="-1"/> + <!-- No end icon. --> + <enum name="none" value="0"/> + <!-- The view will display a toggle when the EditText has a password. --> + <enum name="password_toggle" value="1"/> + <!-- The view will display a clear text button while the EditText contains input. --> + <enum name="clear_text" value="2"/> + <!-- The view will display a toggle that displays/hides a dropdown menu. --> + <enum name="dropdown_menu" value="3"/> + </attr> + + <attr format="reference" name="endIconDrawable"/> + + <attr format="string" name="endIconContentDescription"/> + + <attr format="boolean" name="endIconCheckable"/> + + <attr format="color" name="endIconTint"/> + + <attr name="endIconTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + </attr> + + <attr format="dimension" name="endIconMinSize"/> + + <attr name="endIconScaleType"> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}. --> + <enum name="fitXY" value="0"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}. --> + <enum name="fitStart" value="1"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}. --> + <enum name="fitCenter" value="2"/> + <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}. --> + <enum name="fitEnd" value="3"/> + <!-- Center the image in the view, but perform no scaling. --> + <enum name="center" value="4"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + (width and height) of the image will be equal to or larger than the corresponding + dimension of the view (minus padding). The image is then centered in the view. --> + <enum name="centerCrop" value="5"/> + <!-- Scale the image uniformly (maintain the image's aspect ratio) so that both + dimensions (width and height) of the image will be equal to or less than the + corresponding dimension of the view (minus padding). The image is then centered in + the view. --> + <enum name="centerInside" value="6"/> + </attr> + + + <attr name="boxBackgroundMode"> + <!-- Specifies that there should be no box set on the text input area. --> + <enum name="none" value="0"/> + <!-- Filled box mode for the text input box. --> + <enum name="filled" value="1"/> + <!-- Outline box mode for the text input box. --> + <enum name="outline" value="2"/> + </attr> + + <attr format="dimension" name="boxCollapsedPaddingTop"/> + + <attr format="dimension" name="boxCornerRadiusTopStart"/> + + <attr format="dimension" name="boxCornerRadiusTopEnd"/> + + <attr format="dimension" name="boxCornerRadiusBottomStart"/> + + <attr format="dimension" name="boxCornerRadiusBottomEnd"/> + + <attr format="color" name="boxStrokeColor"/> + + <attr format="color" name="boxStrokeErrorColor"/> + + <attr format="color" name="boxBackgroundColor"/> + + <attr format="dimension" name="boxStrokeWidth"/> + + <attr format="dimension" name="boxStrokeWidthFocused"/> + + + <attr name="shapeAppearance"/> + + <attr name="shapeAppearanceOverlay"/> + + + <attr format="boolean" name="passwordToggleEnabled"/> + + <attr format="reference" name="passwordToggleDrawable"/> + + <attr format="string" name="passwordToggleContentDescription"/> + + <attr format="color" name="passwordToggleTint"/> + + <attr name="passwordToggleTintMode"> + <!-- The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] --> + <enum name="src_over" value="3"/> + <!-- The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da] --> + <enum name="src_in" value="5"/> + <!-- The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] --> + <enum name="src_atop" value="9"/> + <!-- Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc] --> + <enum name="multiply" value="14"/> + <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] --> + <enum name="screen" value="15"/> + </attr> + </declare-styleable> + <declare-styleable name="ThemeEnforcement"> + + <attr format="boolean" name="enforceMaterialTheme"/> + + <attr format="boolean" name="enforceTextAppearance"/> + + <attr name="android:textAppearance"/> + </declare-styleable> + <declare-styleable name="Tooltip"> + <attr name="android:text"/> + <attr name="android:textAppearance"/> + <attr name="android:textColor"/> + <attr name="android:layout_margin"/> + <attr name="android:minWidth"/> + <attr name="android:minHeight"/> + <attr name="android:padding"/> + <attr format="color" name="backgroundTint"/> + </declare-styleable> + <macro name="m3_comp_assist_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_assist_chip_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_badge_color">?attr/colorError</macro> + <macro name="m3_comp_badge_large_label_text_color">?attr/colorOnError</macro> + <macro name="m3_comp_badge_large_label_text_type">?attr/textAppearanceLabelSmall</macro> + <macro name="m3_comp_bottom_app_bar_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_checkbox_selected_container_color">?attr/colorPrimary</macro> + <macro name="m3_comp_checkbox_selected_disabled_container_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_checkbox_selected_disabled_icon_color">?attr/colorSurface</macro> + <macro name="m3_comp_checkbox_selected_error_container_color">?attr/colorError</macro> + <macro name="m3_comp_checkbox_selected_error_icon_color">?attr/colorOnError</macro> + <macro name="m3_comp_checkbox_selected_icon_color">?attr/colorOnPrimary</macro> + <macro name="m3_comp_checkbox_unselected_outline_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_circular_progress_indicator_active_indicator_color">?attr/colorPrimary</macro> + <macro name="m3_comp_dialog_container_shape">?attr/shapeAppearanceCornerExtraLarge</macro> + <macro name="m3_comp_dialog_headline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_dialog_headline_type">?attr/textAppearanceHeadlineSmall</macro> + <macro name="m3_comp_dialog_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_dialog_supporting_text_type">?attr/textAppearanceBodyMedium</macro> + <macro name="m3_comp_divider_color">?attr/colorOutlineVariant</macro> + <macro name="m3_comp_elevated_button_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_elevated_card_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_elevated_card_container_shape">?attr/shapeAppearanceCornerMedium</macro> + <macro name="m3_comp_extended_fab_primary_container_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_extended_fab_primary_container_shape">?attr/shapeAppearanceCornerLarge</macro> + <macro name="m3_comp_extended_fab_primary_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_extended_fab_primary_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_extended_fab_secondary_container_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_extended_fab_secondary_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_extended_fab_surface_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_extended_fab_surface_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_extended_fab_tertiary_container_color">?attr/colorTertiaryContainer</macro> + <macro name="m3_comp_extended_fab_tertiary_icon_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_fab_primary_container_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_fab_primary_container_shape">?attr/shapeAppearanceCornerLarge</macro> + <macro name="m3_comp_fab_primary_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_fab_primary_large_container_shape">?attr/shapeAppearanceCornerExtraLarge</macro> + <macro name="m3_comp_fab_primary_small_container_shape">?attr/shapeAppearanceCornerMedium</macro> + <macro name="m3_comp_fab_secondary_container_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_fab_secondary_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_fab_surface_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_fab_surface_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_fab_tertiary_container_color">?attr/colorTertiaryContainer</macro> + <macro name="m3_comp_fab_tertiary_icon_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_filled_autocomplete_menu_list_item_selected_container_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_filled_autocomplete_text_field_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_filled_button_container_color">?attr/colorPrimary</macro> + <macro name="m3_comp_filled_button_label_text_color">?attr/colorOnPrimary</macro> + <macro name="m3_comp_filled_button_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_filled_card_container_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_filled_card_container_shape">?attr/shapeAppearanceCornerMedium</macro> + <macro name="m3_comp_filled_icon_button_container_color">?attr/colorPrimary</macro> + <macro name="m3_comp_filled_icon_button_toggle_selected_icon_color">?attr/colorOnPrimary</macro> + <macro name="m3_comp_filled_icon_button_toggle_unselected_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_filled_text_field_container_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_filled_text_field_container_shape">?attr/shapeAppearanceCornerExtraSmall</macro> + <macro name="m3_comp_filled_text_field_error_active_indicator_color">?attr/colorError</macro> + <macro name="m3_comp_filled_text_field_error_supporting_text_color">?attr/colorError</macro> + <macro name="m3_comp_filled_text_field_error_trailing_icon_color">?attr/colorError</macro> + <macro name="m3_comp_filled_text_field_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_filled_tonal_button_container_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_filled_tonal_button_label_text_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_filled_tonal_icon_button_container_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_filled_tonal_icon_button_toggle_selected_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_filled_tonal_icon_button_toggle_unselected_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_filter_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_filter_chip_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_icon_button_selected_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_icon_button_unselected_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_input_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_input_chip_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_linear_progress_indicator_active_indicator_color">?attr/colorPrimary</macro> + <macro name="m3_comp_linear_progress_indicator_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_menu_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_navigation_bar_active_focus_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_bar_active_focus_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_hover_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_bar_active_hover_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_bar_active_indicator_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_navigation_bar_active_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_pressed_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_bar_active_pressed_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_active_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_focus_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_focus_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_hover_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_hover_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_navigation_bar_inactive_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_navigation_bar_inactive_pressed_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_pressed_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_inactive_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_bar_label_text_type">?attr/textAppearanceLabelMedium</macro> + <macro name="m3_comp_navigation_drawer_active_focus_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_focus_label_text_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_focus_state_layer_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_hover_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_hover_label_text_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_hover_state_layer_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_indicator_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_label_text_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_pressed_icon_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_pressed_label_text_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_active_pressed_state_layer_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_navigation_drawer_headline_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_navigation_drawer_headline_type">?attr/textAppearanceTitleSmall</macro> + <macro name="m3_comp_navigation_drawer_inactive_focus_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_focus_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_hover_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_hover_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_navigation_drawer_inactive_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_navigation_drawer_inactive_pressed_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_pressed_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_navigation_drawer_inactive_pressed_state_layer_color">?attr/colorOnSecondaryContainer</macro> + <macro name="m3_comp_navigation_drawer_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_navigation_rail_active_indicator_color">?attr/colorSecondaryContainer</macro> + <macro name="m3_comp_navigation_rail_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_navigation_rail_label_text_type">?attr/textAppearanceLabelMedium</macro> + <macro name="m3_comp_outlined_autocomplete_menu_list_item_selected_container_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_outlined_autocomplete_text_field_caret_color">?attr/colorPrimary</macro> + <macro name="m3_comp_outlined_autocomplete_text_field_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_outlined_button_disabled_outline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_button_focus_outline_color">?attr/colorPrimary</macro> + <macro name="m3_comp_outlined_button_hover_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_outlined_button_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_outlined_button_pressed_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_outlined_card_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_outlined_card_container_shape">?attr/shapeAppearanceCornerMedium</macro> + <macro name="m3_comp_outlined_card_disabled_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_outlined_card_dragged_outline_color">?attr/colorOutlineVariant</macro> + <macro name="m3_comp_outlined_card_focus_outline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_card_hover_outline_color">?attr/colorOutlineVariant</macro> + <macro name="m3_comp_outlined_card_outline_color">?attr/colorOutlineVariant</macro> + <macro name="m3_comp_outlined_card_pressed_outline_color">?attr/colorOutlineVariant</macro> + <macro name="m3_comp_outlined_text_field_caret_color">?attr/colorPrimary</macro> + <macro name="m3_comp_outlined_text_field_container_shape">?attr/shapeAppearanceCornerExtraSmall</macro> + <macro name="m3_comp_outlined_text_field_disabled_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_disabled_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_disabled_outline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_disabled_supporting_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_error_outline_color">?attr/colorError</macro> + <macro name="m3_comp_outlined_text_field_error_supporting_text_color">?attr/colorError</macro> + <macro name="m3_comp_outlined_text_field_error_trailing_icon_color">?attr/colorError</macro> + <macro name="m3_comp_outlined_text_field_focus_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_focus_label_text_color">?attr/colorPrimary</macro> + <macro name="m3_comp_outlined_text_field_focus_outline_color">?attr/colorPrimary</macro> + <macro name="m3_comp_outlined_text_field_focus_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_outlined_text_field_hover_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_hover_outline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_hover_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_outlined_text_field_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_outlined_text_field_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_outlined_text_field_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_outlined_text_field_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_outlined_text_field_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_outlined_text_field_supporting_text_type">?attr/textAppearanceBodySmall</macro> + <macro name="m3_comp_plain_tooltip_supporting_text_type">?attr/textAppearanceBodySmall</macro> + <macro name="m3_comp_primary_navigation_tab_active_focus_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_active_hover_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_active_indicator_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_active_pressed_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_primary_navigation_tab_divider_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_primary_navigation_tab_inactive_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_primary_navigation_tab_inactive_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_primary_navigation_tab_inactive_pressed_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_with_icon_active_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_with_icon_inactive_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_primary_navigation_tab_with_label_text_active_label_text_color">?attr/colorPrimary</macro> + <macro name="m3_comp_primary_navigation_tab_with_label_text_inactive_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_primary_navigation_tab_with_label_text_label_text_type">?attr/textAppearanceTitleSmall</macro> + <macro name="m3_comp_radio_button_disabled_selected_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_disabled_unselected_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_selected_focus_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_focus_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_hover_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_hover_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_pressed_icon_color">?attr/colorPrimary</macro> + <macro name="m3_comp_radio_button_selected_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_focus_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_hover_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_radio_button_unselected_pressed_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_radio_button_unselected_pressed_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_search_bar_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_search_bar_container_surface_tint_layer_color">?attr/elevationOverlayColor</macro> + <macro name="m3_comp_search_bar_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_bar_hover_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_search_bar_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_bar_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_search_bar_leading_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_bar_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_bar_pressed_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_search_bar_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_search_bar_supporting_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_search_bar_trailing_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_search_view_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_search_view_container_surface_tint_layer_color">?attr/elevationOverlayColor</macro> + <macro name="m3_comp_search_view_divider_color">?attr/colorOutline</macro> + <macro name="m3_comp_search_view_docked_container_shape">?attr/shapeAppearanceCornerExtraLarge</macro> + <macro name="m3_comp_search_view_header_input_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_view_header_input_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_search_view_header_leading_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_search_view_header_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_search_view_header_supporting_text_type">?attr/textAppearanceBodyLarge</macro> + <macro name="m3_comp_search_view_header_trailing_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_secondary_navigation_tab_active_indicator_color">?attr/colorPrimary</macro> + <macro name="m3_comp_secondary_navigation_tab_active_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_inactive_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_secondary_navigation_tab_label_text_type">?attr/textAppearanceTitleSmall</macro> + <macro name="m3_comp_secondary_navigation_tab_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_with_icon_active_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_secondary_navigation_tab_with_icon_inactive_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_sheet_bottom_docked_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_sheet_bottom_docked_container_shape">?attr/shapeAppearanceCornerExtraLarge</macro> + <macro name="m3_comp_sheet_bottom_docked_drag_handle_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_sheet_side_detached_container_shape">?attr/shapeAppearanceCornerLarge</macro> + <macro name="m3_comp_sheet_side_docked_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_sheet_side_docked_modal_container_shape">?attr/shapeAppearanceCornerLarge</macro> + <macro name="m3_comp_slider_active_track_color">?attr/colorPrimary</macro> + <macro name="m3_comp_slider_disabled_active_track_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_slider_disabled_handle_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_slider_disabled_inactive_track_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_slider_handle_color">?attr/colorPrimary</macro> + <macro name="m3_comp_slider_inactive_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_slider_label_container_color">?attr/colorPrimary</macro> + <macro name="m3_comp_slider_label_label_text_color">?attr/colorOnPrimary</macro> + <macro name="m3_comp_snackbar_container_shape">?attr/shapeAppearanceCornerExtraSmall</macro> + <macro name="m3_comp_snackbar_supporting_text_color">?attr/colorOnSurfaceInverse</macro> + <macro name="m3_comp_snackbar_supporting_text_type">?attr/textAppearanceBodyMedium</macro> + <macro name="m3_comp_suggestion_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_suggestion_chip_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_switch_disabled_selected_handle_color">?attr/colorSurface</macro> + <macro name="m3_comp_switch_disabled_selected_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_disabled_selected_track_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_disabled_unselected_handle_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_disabled_unselected_icon_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_disabled_unselected_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_disabled_unselected_track_outline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_selected_focus_handle_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_focus_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_focus_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_focus_track_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_handle_color">?attr/colorOnPrimary</macro> + <macro name="m3_comp_switch_selected_hover_handle_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_hover_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_hover_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_hover_track_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_pressed_handle_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_pressed_icon_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_switch_selected_pressed_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_pressed_track_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_selected_track_color">?attr/colorPrimary</macro> + <macro name="m3_comp_switch_unselected_focus_handle_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_focus_icon_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_unselected_focus_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_focus_track_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_switch_unselected_handle_color">?attr/colorOutline</macro> + <macro name="m3_comp_switch_unselected_hover_handle_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_hover_icon_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_unselected_hover_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_hover_track_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_switch_unselected_icon_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_pressed_handle_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_pressed_icon_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_pressed_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_switch_unselected_pressed_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_pressed_track_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_switch_unselected_track_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_switch_unselected_track_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_text_button_focus_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_text_button_hover_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_text_button_label_text_color">?attr/colorPrimary</macro> + <macro name="m3_comp_text_button_label_text_type">?attr/textAppearanceLabelLarge</macro> + <macro name="m3_comp_text_button_pressed_state_layer_color">?attr/colorPrimary</macro> + <macro name="m3_comp_time_input_time_input_field_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_time_input_time_input_field_focus_outline_color">?attr/colorPrimary</macro> + <macro name="m3_comp_time_input_time_input_field_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_time_input_time_input_field_supporting_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_input_time_input_field_supporting_text_type">?attr/textAppearanceBodySmall</macro> + <macro name="m3_comp_time_picker_clock_dial_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_time_picker_clock_dial_selector_handle_container_color">?attr/colorPrimary</macro> + <macro name="m3_comp_time_picker_container_shape">?attr/shapeAppearanceCornerExtraLarge</macro> + <macro name="m3_comp_time_picker_headline_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_picker_headline_type">?attr/textAppearanceLabelMedium</macro> + <macro name="m3_comp_time_picker_period_selector_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_time_picker_period_selector_label_text_type">?attr/textAppearanceTitleMedium</macro> + <macro name="m3_comp_time_picker_period_selector_outline_color">?attr/colorOutline</macro> + <macro name="m3_comp_time_picker_period_selector_selected_container_color">?attr/colorTertiaryContainer</macro> + <macro name="m3_comp_time_picker_period_selector_selected_focus_state_layer_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_time_picker_period_selector_selected_hover_state_layer_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_time_picker_period_selector_selected_label_text_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_time_picker_period_selector_selected_pressed_state_layer_color">?attr/colorOnTertiaryContainer</macro> + <macro name="m3_comp_time_picker_period_selector_unselected_focus_state_layer_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_picker_period_selector_unselected_hover_state_layer_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_picker_period_selector_unselected_label_text_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_picker_period_selector_unselected_pressed_state_layer_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_comp_time_picker_time_selector_container_shape">?attr/shapeAppearanceCornerSmall</macro> + <macro name="m3_comp_time_picker_time_selector_label_text_type">?attr/textAppearanceDisplayLarge</macro> + <macro name="m3_comp_time_picker_time_selector_selected_container_color">?attr/colorPrimaryContainer</macro> + <macro name="m3_comp_time_picker_time_selector_selected_focus_state_layer_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_time_picker_time_selector_selected_hover_state_layer_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_time_picker_time_selector_selected_label_text_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_time_picker_time_selector_selected_pressed_state_layer_color">?attr/colorOnPrimaryContainer</macro> + <macro name="m3_comp_time_picker_time_selector_separator_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_time_picker_time_selector_separator_type">?attr/textAppearanceDisplayLarge</macro> + <macro name="m3_comp_time_picker_time_selector_unselected_container_color">?attr/colorSurfaceVariant</macro> + <macro name="m3_comp_time_picker_time_selector_unselected_focus_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_time_picker_time_selector_unselected_hover_state_layer_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_time_picker_time_selector_unselected_label_text_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_top_app_bar_large_headline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_top_app_bar_large_headline_type">?attr/textAppearanceHeadlineMedium</macro> + <macro name="m3_comp_top_app_bar_medium_headline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_top_app_bar_medium_headline_type">?attr/textAppearanceHeadlineSmall</macro> + <macro name="m3_comp_top_app_bar_small_container_color">?attr/colorSurface</macro> + <macro name="m3_comp_top_app_bar_small_headline_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_top_app_bar_small_headline_type">?attr/textAppearanceTitleLarge</macro> + <macro name="m3_comp_top_app_bar_small_leading_icon_color">?attr/colorOnSurface</macro> + <macro name="m3_comp_top_app_bar_small_trailing_icon_color">?attr/colorOnSurfaceVariant</macro> + <macro name="m3_sys_color_dark_surface_tint">?attr/colorPrimary</macro> + <macro name="m3_sys_color_light_surface_tint">?attr/colorPrimary</macro> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/131.stamp new file mode 100644 index 0000000000000000000000000000000000000000..18608f1e60e36a499049802acbcfae896768e90c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/131.stamp @@ -0,0 +1 @@ +6F4673D3AC32526A \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9cd49d8f196515ee512938fa65bcf72a4e095ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.window.extensions.core" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..cdd7f45274c76ac5c28fa3e6f868a46d0c56af00 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f547e9a6d38fdb1e39b8840a7bb5812db55fd29 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/proguard.txt @@ -0,0 +1,24 @@ +# Copyright (C) 2022 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# These interfaces must be kept for the client library to invoke methods in extensions. +-keep interface androidx.window.extensions.core.util.function.Consumer { + public void accept(***); +} +-keep interface androidx.window.extensions.core.util.function.Predicate { + public boolean test(***); +} +-keep interface androidx.window.extensions.core.util.function.Function { + public *** apply(***); +} \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/131/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/132.stamp new file mode 100644 index 0000000000000000000000000000000000000000..4e99e6ccda25fa4726c0d7053788dffb4c167ca6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132.stamp @@ -0,0 +1 @@ +6ACB33882E2131CE \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbae6f40e4abb8e0bd7d02e238211ec3fe739d49 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/AndroidManifest.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.window" > + + <uses-sdk android:minSdkVersion="14" /> + + <application> + <uses-library + android:name="androidx.window.extensions" + android:required="false" /> + <uses-library + android:name="androidx.window.sidecar" + android:required="false" /> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..983941fa22a36ec6198c3161c4dd9e4c40c23a91 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/R.txt @@ -0,0 +1,68 @@ +int attr activityAction 0x0 +int attr activityName 0x0 +int attr alwaysExpand 0x0 +int attr animationBackgroundColor 0x0 +int attr clearTop 0x0 +int attr finishPrimaryWithPlaceholder 0x0 +int attr finishPrimaryWithSecondary 0x0 +int attr finishSecondaryWithPrimary 0x0 +int attr placeholderActivityName 0x0 +int attr primaryActivityName 0x0 +int attr secondaryActivityAction 0x0 +int attr secondaryActivityName 0x0 +int attr splitLayoutDirection 0x0 +int attr splitMaxAspectRatioInLandscape 0x0 +int attr splitMaxAspectRatioInPortrait 0x0 +int attr splitMinHeightDp 0x0 +int attr splitMinSmallestWidthDp 0x0 +int attr splitMinWidthDp 0x0 +int attr splitRatio 0x0 +int attr stickyPlaceholder 0x0 +int attr tag 0x0 +int id adjacent 0x0 +int id always 0x0 +int id alwaysAllow 0x0 +int id alwaysDisallow 0x0 +int id androidx_window_activity_scope 0x0 +int id bottomToTop 0x0 +int id locale 0x0 +int id ltr 0x0 +int id never 0x0 +int id rtl 0x0 +int id topToBottom 0x0 +int[] styleable ActivityFilter { 0x0, 0x0 } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityRule { 0x0, 0x0 } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable SplitPairFilter { 0x0, 0x0, 0x0 } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..65b385f35cdc3888f6903c9b50fab606fedb325d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..609e1cc1b890fd0a3be25f73cc16d6d94843c80e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/proguard.txt @@ -0,0 +1,25 @@ +# Copyright (C) 2020 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A rule that will keep classes that implement SidecarInterface$SidecarCallback if Sidecar seems +# be used. See b/157286362 and b/165268619 for details. +# TODO(b/208543178) investigate how to pass header jar to R8 so we don't need this rule +-if class androidx.window.layout.adapter.sidecar.SidecarCompat { + public *** setExtensionCallback(androidx.window.layout.adapter.sidecar.ExtensionInterfaceCompat$ExtensionCallbackInterface); +} +-keep class androidx.window.layout.adapter.sidecar.SidecarCompat$TranslatingCallback, + androidx.window.layout.adapter.sidecar.DistinctElementSidecarCallback { + public *** onDeviceStateChanged(androidx.window.sidecar.SidecarDeviceState); + public *** onWindowLayoutChanged(android.os.IBinder, androidx.window.sidecar.SidecarWindowLayoutInfo); +} \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..185352b166a0a533e475d4d9b4485e3c731b50c2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/public.txt @@ -0,0 +1,21 @@ +attr activityAction +attr activityName +attr alwaysExpand +attr animationBackgroundColor +attr clearTop +attr finishPrimaryWithPlaceholder +attr finishPrimaryWithSecondary +attr finishSecondaryWithPrimary +attr placeholderActivityName +attr primaryActivityName +attr secondaryActivityAction +attr secondaryActivityName +attr splitLayoutDirection +attr splitMaxAspectRatioInLandscape +attr splitMaxAspectRatioInPortrait +attr splitMinHeightDp +attr splitMinSmallestWidthDp +attr splitMinWidthDp +attr splitRatio +attr stickyPlaceholder +attr tag diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..932ea53ae10dd8844507a9f1ed16f5195a2a0d6a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..0363a02bef2a81e76f2f0979c06554fb7e9714dc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/132/jl/res/values/values.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="color" name="animationBackgroundColor"/> + <attr format="enum" name="finishPrimaryWithPlaceholder"> + + <enum name="always" value="1"/> + + <enum name="adjacent" value="2"/> + </attr> + <attr format="enum" name="finishPrimaryWithSecondary"> + + <enum name="never" value="0"/> + + <enum name="always" value="1"/> + + <enum name="adjacent" value="2"/> + </attr> + <attr format="enum" name="finishSecondaryWithPrimary"> + + <enum name="never" value="0"/> + + <enum name="always" value="1"/> + + <enum name="adjacent" value="2"/> + </attr> + <attr format="enum" name="splitLayoutDirection"> + + <enum name="locale" value="0"/> + + <enum name="ltr" value="1"/> + + <enum name="rtl" value="2"/> + + <enum name="topToBottom" value="3"/> + + <enum name="bottomToTop" value="4"/> + </attr> + <attr format="float" name="splitMaxAspectRatioInLandscape"> + + <enum name="alwaysAllow" value="0"/> + + <enum name="alwaysDisallow" value="-1"/> + </attr> + <attr format="float" name="splitMaxAspectRatioInPortrait"> + + <enum name="alwaysAllow" value="0"/> + + <enum name="alwaysDisallow" value="-1"/> + </attr> + <attr format="integer" name="splitMinHeightDp"/> + <attr format="integer" name="splitMinSmallestWidthDp"/> + <attr format="integer" name="splitMinWidthDp"/> + <attr format="float" name="splitRatio"/> + <attr format="string" name="tag"/> + <item name="androidx_window_activity_scope" type="id"/> + <declare-styleable name="ActivityFilter"> + + <attr format="string" name="activityName"/> + + <attr format="string" name="activityAction"/> + </declare-styleable> + <declare-styleable name="ActivityRule"> + + <attr format="boolean" name="alwaysExpand"/> + <attr name="tag"/> + </declare-styleable> + <declare-styleable name="SplitPairFilter"> + + <attr format="string" name="primaryActivityName"/> + + <attr format="string" name="secondaryActivityName"/> + + <attr format="string" name="secondaryActivityAction"/> + </declare-styleable> + <declare-styleable name="SplitPairRule"> + + <attr format="boolean" name="clearTop"/> + <attr name="finishPrimaryWithSecondary"/> + <attr name="finishSecondaryWithPrimary"/> + <attr name="splitRatio"/> + <attr name="splitMinWidthDp"/> + <attr name="splitMinHeightDp"/> + <attr name="splitMinSmallestWidthDp"/> + <attr name="splitMaxAspectRatioInPortrait"/> + <attr name="splitMaxAspectRatioInLandscape"/> + <attr name="splitLayoutDirection"/> + <attr name="tag"/> + <attr name="animationBackgroundColor"/> + </declare-styleable> + <declare-styleable name="SplitPlaceholderRule"> + + <attr format="string" name="placeholderActivityName"/> + + <attr format="boolean" name="stickyPlaceholder"/> + <attr name="finishPrimaryWithPlaceholder"/> + <attr name="splitRatio"/> + <attr name="splitMinWidthDp"/> + <attr name="splitMinHeightDp"/> + <attr name="splitMinSmallestWidthDp"/> + <attr name="splitMaxAspectRatioInPortrait"/> + <attr name="splitMaxAspectRatioInLandscape"/> + <attr name="splitLayoutDirection"/> + <attr name="tag"/> + <attr name="animationBackgroundColor"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/133.stamp new file mode 100644 index 0000000000000000000000000000000000000000..8867e6b6f20640a6aa43feb400b2fa6a8aaa257a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/133.stamp @@ -0,0 +1 @@ +4A4C94BB3EA4EB86 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..3dc673447fc411bad76ec5fac12f7f76e74fda34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.swiperefreshlayout" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="29" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ca4c3d58571000c4410799eddeb480da696571c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/R.txt @@ -0,0 +1,174 @@ +int attr alpha 0x0 +int attr font 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 +int attr ttcIndex 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_light 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_container 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_text 0x0 +int id actions 0x0 +int id async 0x0 +int id blocking 0x0 +int id chronometer 0x0 +int id dialog_button 0x0 +int id forever 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 0x0 +int id line1 0x0 +int id line3 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id text 0x0 +int id text2 0x0 +int id time 0x0 +int id title 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int string status_bar_notification_info_overflow 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable SwipeRefreshLayout { 0x0 } +int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..ad21ef1d441459a20ec43d8094813d4d67f2bb32 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..5b521a167659ff23df7e1342b7847733187cfbf5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8f09aefbc2b6d961ebccb721f1a7fb33d15d1f47 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..bd89b3fd6505010fe6866e712eb3bd850aa05f85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/133/jl/res/values/values.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <declare-styleable name="SwipeRefreshLayout"> + <!-- Background color for SwipeRefreshLayout progress spinner. --> + <attr format="color" name="swipeRefreshLayoutProgressSpinnerBackgroundColor"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/134.stamp new file mode 100644 index 0000000000000000000000000000000000000000..87b973c1ed29f5b988623dbbe0189e4a8a8c2fdf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/134.stamp @@ -0,0 +1 @@ +BD10C6C58C65C523 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..2feb07988629eaa37e94fcb01e93b70ca8ec98b6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.slidingpanelayout" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="31" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..bd8164d6562f2626e700e915ffa7f0522f7252df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..a782b65d4be5fc7d9bf8ec1dbef9cf43c194e3da Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..e5d16bd00e0bd6ff760fe2d9e52a33145c30067c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/134/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/135.stamp new file mode 100644 index 0000000000000000000000000000000000000000..16ff0945839e4ad9660c8416d485a586b8a88240 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/135.stamp @@ -0,0 +1 @@ +941B69AE879F371B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..77974ad43864078222fd5f9de29f1713785e1d44 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.security" > + + <uses-sdk android:minSdkVersion="21" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..689635a77cd80e455ca98cc3074605b5a8d6c854 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/135/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/136.stamp new file mode 100644 index 0000000000000000000000000000000000000000..ec383d83f1c8bc9e776f53117848d57792d0f136 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/136.stamp @@ -0,0 +1 @@ +2C844F46D100D10C \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..18ca5390b9721a4f5bdb809b845e48ba37edb3cd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.savedstate.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..beb64b4ddef3b27313bb2bf475fef807a456bc25 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/136/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/137.stamp new file mode 100644 index 0000000000000000000000000000000000000000..62f72658960b7502917559f81b49590260044ad0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/137.stamp @@ -0,0 +1 @@ +71AF77E51E45FD60 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e2893baae262a24a002266b81b70d0c67b274d9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.viewmodel.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..b60c2c35631c7f1adb217e5bd5f120027b98d4f9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/137/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/138.stamp new file mode 100644 index 0000000000000000000000000000000000000000..c2ed18ad08726d558a3469aa9b0267d833dca9ea --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/138.stamp @@ -0,0 +1 @@ +117BF7021B6108F1 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..7b61d92a1d26f3335af0b834d15b6e9ae92ba03a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..640cfe718c154121dfd60c072d87cbcb2647da71 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/138/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/139.stamp new file mode 100644 index 0000000000000000000000000000000000000000..b26827e62ea72433c6da957048f7fb82d7633db0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139.stamp @@ -0,0 +1 @@ +8E981C22870E8E54 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b98e91043df94cb957bd45f552ef468be768ef1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.navigation.common" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..827be15d4f1b056e34fbdc2a2189fb5603a00a48 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/R.txt @@ -0,0 +1,45 @@ +int attr action 0x0 +int attr argType 0x0 +int attr destination 0x0 +int attr enterAnim 0x0 +int attr exitAnim 0x0 +int attr launchSingleTop 0x0 +int attr mimeType 0x0 +int attr nullable 0x0 +int attr popEnterAnim 0x0 +int attr popExitAnim 0x0 +int attr popUpTo 0x0 +int attr popUpToInclusive 0x0 +int attr popUpToSaveState 0x0 +int attr restoreState 0x0 +int attr route 0x0 +int attr startDestination 0x0 +int attr uri 0x0 +int[] styleable NavAction { 0x10100d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavAction_android_id 0 +int styleable NavAction_destination 1 +int styleable NavAction_enterAnim 2 +int styleable NavAction_exitAnim 3 +int styleable NavAction_launchSingleTop 4 +int styleable NavAction_popEnterAnim 5 +int styleable NavAction_popExitAnim 6 +int styleable NavAction_popUpTo 7 +int styleable NavAction_popUpToInclusive 8 +int styleable NavAction_popUpToSaveState 9 +int styleable NavAction_restoreState 10 +int[] styleable NavArgument { 0x10101ed, 0x1010003, 0x0, 0x0 } +int styleable NavArgument_android_defaultValue 0 +int styleable NavArgument_android_name 1 +int styleable NavArgument_argType 2 +int styleable NavArgument_nullable 3 +int[] styleable NavDeepLink { 0x0, 0x10104ee, 0x0, 0x0 } +int styleable NavDeepLink_action 0 +int styleable NavDeepLink_android_autoVerify 1 +int styleable NavDeepLink_mimeType 2 +int styleable NavDeepLink_uri 3 +int[] styleable NavGraphNavigator { 0x0 } +int styleable NavGraphNavigator_startDestination 0 +int[] styleable Navigator { 0x10100d0, 0x1010001, 0x0 } +int styleable Navigator_android_id 0 +int styleable Navigator_android_label 1 +int styleable Navigator_route 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a37b6051032a809e570e986f0ffc9af75bab441 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/baseline-prof.txt @@ -0,0 +1,181 @@ +# Baseline Profiles for navigation-common + +HSPLandroidx/navigation/NavAction;-><init>(ILandroidx/navigation/NavOptions;Landroid/os/Bundle;)V +HSPLandroidx/navigation/NavAction;-><init>(ILandroidx/navigation/NavOptions;Landroid/os/Bundle;ILkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavAction;->getDefaultArguments()Landroid/os/Bundle; +HSPLandroidx/navigation/NavAction;->getDestinationId()I +HSPLandroidx/navigation/NavAction;->getNavOptions()Landroidx/navigation/NavOptions; +HSPLandroidx/navigation/NavAction;->setNavOptions(Landroidx/navigation/NavOptions;)V +HSPLandroidx/navigation/NavArgument$Builder;-><init>()V +HSPLandroidx/navigation/NavArgument$Builder;->build()Landroidx/navigation/NavArgument; +HSPLandroidx/navigation/NavArgument$Builder;->setIsNullable(Z)Landroidx/navigation/NavArgument$Builder; +HSPLandroidx/navigation/NavArgument$Builder;->setType(Landroidx/navigation/NavType;)Landroidx/navigation/NavArgument$Builder; +HSPLandroidx/navigation/NavArgument;-><init>(Landroidx/navigation/NavType;ZLjava/lang/Object;Z)V +HSPLandroidx/navigation/NavArgument;->equals(Ljava/lang/Object;)Z +HSPLandroidx/navigation/NavArgument;->hashCode()I +HSPLandroidx/navigation/NavBackStackEntry$Companion;-><init>()V +HSPLandroidx/navigation/NavBackStackEntry$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavBackStackEntry$Companion;->create$default(Landroidx/navigation/NavBackStackEntry$Companion;Landroid/content/Context;Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/lifecycle/LifecycleOwner;Landroidx/navigation/NavViewModelStoreProvider;Ljava/lang/String;Landroid/os/Bundle;ILjava/lang/Object;)Landroidx/navigation/NavBackStackEntry; +HSPLandroidx/navigation/NavBackStackEntry$Companion;->create(Landroid/content/Context;Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/lifecycle/LifecycleOwner;Landroidx/navigation/NavViewModelStoreProvider;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/navigation/NavBackStackEntry; +HSPLandroidx/navigation/NavBackStackEntry$defaultFactory$2;-><init>(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavBackStackEntry$savedStateHandle$2;-><init>(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavBackStackEntry;-><clinit>()V +HSPLandroidx/navigation/NavBackStackEntry;-><init>(Landroid/content/Context;Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/lifecycle/LifecycleOwner;Landroidx/navigation/NavViewModelStoreProvider;Ljava/lang/String;Landroid/os/Bundle;)V +HSPLandroidx/navigation/NavBackStackEntry;-><init>(Landroid/content/Context;Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/lifecycle/LifecycleOwner;Landroidx/navigation/NavViewModelStoreProvider;Ljava/lang/String;Landroid/os/Bundle;Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavBackStackEntry;->getArguments()Landroid/os/Bundle; +HSPLandroidx/navigation/NavBackStackEntry;->getDestination()Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavBackStackEntry;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/navigation/NavBackStackEntry;->getMaxLifecycle()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/navigation/NavBackStackEntry;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/navigation/NavBackStackEntry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/navigation/NavBackStackEntry;->hashCode()I +HSPLandroidx/navigation/NavBackStackEntry;->setMaxLifecycle(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/navigation/NavBackStackEntry;->updateState()V +HSPLandroidx/navigation/NavDeepLinkRequest;-><init>(Landroid/content/Intent;)V +HSPLandroidx/navigation/NavDeepLinkRequest;-><init>(Landroid/net/Uri;Ljava/lang/String;Ljava/lang/String;)V +HSPLandroidx/navigation/NavDestination$Companion;-><init>()V +HSPLandroidx/navigation/NavDestination$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavDestination$Companion;->getDisplayName(Landroid/content/Context;I)Ljava/lang/String; +HSPLandroidx/navigation/NavDestination;-><clinit>()V +HSPLandroidx/navigation/NavDestination;-><init>(Landroidx/navigation/Navigator;)V +HSPLandroidx/navigation/NavDestination;-><init>(Ljava/lang/String;)V +HSPLandroidx/navigation/NavDestination;->addArgument(Ljava/lang/String;Landroidx/navigation/NavArgument;)V +HSPLandroidx/navigation/NavDestination;->addInDefaultArgs(Landroid/os/Bundle;)Landroid/os/Bundle; +HSPLandroidx/navigation/NavDestination;->equals(Ljava/lang/Object;)Z +HSPLandroidx/navigation/NavDestination;->getArguments()Ljava/util/Map; +HSPLandroidx/navigation/NavDestination;->getId()I +HSPLandroidx/navigation/NavDestination;->getNavigatorName()Ljava/lang/String; +HSPLandroidx/navigation/NavDestination;->getParent()Landroidx/navigation/NavGraph; +HSPLandroidx/navigation/NavDestination;->getRoute()Ljava/lang/String; +HSPLandroidx/navigation/NavDestination;->hashCode()I +HSPLandroidx/navigation/NavDestination;->matchDeepLink(Landroidx/navigation/NavDeepLinkRequest;)Landroidx/navigation/NavDestination$DeepLinkMatch; +HSPLandroidx/navigation/NavDestination;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/navigation/NavDestination;->putAction(ILandroidx/navigation/NavAction;)V +HSPLandroidx/navigation/NavDestination;->setId(I)V +HSPLandroidx/navigation/NavDestination;->setLabel(Ljava/lang/CharSequence;)V +HSPLandroidx/navigation/NavDestination;->setParent(Landroidx/navigation/NavGraph;)V +HSPLandroidx/navigation/NavDestination;->setRoute(Ljava/lang/String;)V +HSPLandroidx/navigation/NavDestination;->supportsActions()Z +HSPLandroidx/navigation/NavGraph$Companion;-><init>()V +HSPLandroidx/navigation/NavGraph$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavGraph$iterator$1;-><init>(Landroidx/navigation/NavGraph;)V +HSPLandroidx/navigation/NavGraph$iterator$1;->hasNext()Z +HSPLandroidx/navigation/NavGraph$iterator$1;->next()Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavGraph$iterator$1;->next()Ljava/lang/Object; +HSPLandroidx/navigation/NavGraph;-><clinit>()V +HSPLandroidx/navigation/NavGraph;-><init>(Landroidx/navigation/Navigator;)V +HSPLandroidx/navigation/NavGraph;->addDestination(Landroidx/navigation/NavDestination;)V +HSPLandroidx/navigation/NavGraph;->equals(Ljava/lang/Object;)Z +HSPLandroidx/navigation/NavGraph;->findNode(IZ)Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavGraph;->getNodes()Landroidx/collection/SparseArrayCompat; +HSPLandroidx/navigation/NavGraph;->getStartDestinationId()I +HSPLandroidx/navigation/NavGraph;->getStartDestinationRoute()Ljava/lang/String; +HSPLandroidx/navigation/NavGraph;->hashCode()I +HSPLandroidx/navigation/NavGraph;->iterator()Ljava/util/Iterator; +HSPLandroidx/navigation/NavGraph;->matchDeepLink(Landroidx/navigation/NavDeepLinkRequest;)Landroidx/navigation/NavDestination$DeepLinkMatch; +HSPLandroidx/navigation/NavGraph;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/navigation/NavGraph;->setStartDestinationId(I)V +HSPLandroidx/navigation/NavGraphNavigator;-><init>(Landroidx/navigation/NavigatorProvider;)V +HSPLandroidx/navigation/NavGraphNavigator;->createDestination()Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavGraphNavigator;->createDestination()Landroidx/navigation/NavGraph; +HSPLandroidx/navigation/NavGraphNavigator;->navigate(Landroidx/navigation/NavBackStackEntry;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;)V +HSPLandroidx/navigation/NavGraphNavigator;->navigate(Ljava/util/List;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;)V +HSPLandroidx/navigation/NavOptions$Builder;-><init>()V +HSPLandroidx/navigation/NavOptions$Builder;->build()Landroidx/navigation/NavOptions; +HSPLandroidx/navigation/NavOptions$Builder;->setEnterAnim(I)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setExitAnim(I)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setLaunchSingleTop(Z)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setPopEnterAnim(I)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setPopExitAnim(I)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setPopUpTo(IZZ)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions$Builder;->setRestoreState(Z)Landroidx/navigation/NavOptions$Builder; +HSPLandroidx/navigation/NavOptions;-><init>(ZZIZZIIII)V +HSPLandroidx/navigation/NavOptions;->hashCode()I +HSPLandroidx/navigation/NavOptions;->isPopUpToInclusive()Z +HSPLandroidx/navigation/NavOptions;->shouldLaunchSingleTop()Z +HSPLandroidx/navigation/NavOptions;->shouldPopUpToSaveState()Z +HSPLandroidx/navigation/NavOptions;->shouldRestoreState()Z +HSPLandroidx/navigation/NavType$Companion$BoolArrayType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$BoolArrayType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$BoolType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$BoolType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$FloatArrayType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$FloatType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$IntArrayType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$IntArrayType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$IntType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$IntType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$LongArrayType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$LongArrayType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$LongType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$LongType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion$ReferenceType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$StringArrayType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$StringType$1;-><init>()V +HSPLandroidx/navigation/NavType$Companion$StringType$1;->getName()Ljava/lang/String; +HSPLandroidx/navigation/NavType$Companion;-><init>()V +HSPLandroidx/navigation/NavType$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavType$Companion;->fromArgType(Ljava/lang/String;Ljava/lang/String;)Landroidx/navigation/NavType; +HSPLandroidx/navigation/NavType;-><clinit>()V +HSPLandroidx/navigation/NavType;-><init>(Z)V +HSPLandroidx/navigation/NavType;->isNullableAllowed()Z +HSPLandroidx/navigation/Navigator;-><init>()V +HSPLandroidx/navigation/Navigator;->getState()Landroidx/navigation/NavigatorState; +HSPLandroidx/navigation/Navigator;->isAttached()Z +HSPLandroidx/navigation/Navigator;->onAttach(Landroidx/navigation/NavigatorState;)V +HSPLandroidx/navigation/NavigatorProvider$Companion;-><init>()V +HSPLandroidx/navigation/NavigatorProvider$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavigatorProvider$Companion;->getNameForNavigator$navigation_common_release(Ljava/lang/Class;)Ljava/lang/String; +HSPLandroidx/navigation/NavigatorProvider$Companion;->validateName$navigation_common_release(Ljava/lang/String;)Z +HSPLandroidx/navigation/NavigatorProvider;-><clinit>()V +HSPLandroidx/navigation/NavigatorProvider;-><init>()V +HSPLandroidx/navigation/NavigatorProvider;->access$getAnnotationNames$cp()Ljava/util/Map; +HSPLandroidx/navigation/NavigatorProvider;->addNavigator(Landroidx/navigation/Navigator;)Landroidx/navigation/Navigator; +HSPLandroidx/navigation/NavigatorProvider;->addNavigator(Ljava/lang/String;Landroidx/navigation/Navigator;)Landroidx/navigation/Navigator; +HSPLandroidx/navigation/NavigatorProvider;->getNavigator(Ljava/lang/String;)Landroidx/navigation/Navigator; +HSPLandroidx/navigation/NavigatorProvider;->getNavigators()Ljava/util/Map; +HSPLandroidx/navigation/NavigatorState;-><init>()V +HSPLandroidx/navigation/NavigatorState;->getBackStack()Lkotlinx/coroutines/flow/StateFlow; +HSPLandroidx/navigation/NavigatorState;->getTransitionsInProgress()Lkotlinx/coroutines/flow/StateFlow; +HSPLandroidx/navigation/NavigatorState;->push(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavigatorState;->setNavigating(Z)V +Landroidx/navigation/FloatingWindow; +Landroidx/navigation/NavAction; +Landroidx/navigation/NavArgument$Builder; +Landroidx/navigation/NavArgument; +Landroidx/navigation/NavBackStackEntry$Companion; +Landroidx/navigation/NavBackStackEntry$defaultFactory$2; +Landroidx/navigation/NavBackStackEntry$savedStateHandle$2; +Landroidx/navigation/NavBackStackEntry; +Landroidx/navigation/NavDeepLinkRequest; +Landroidx/navigation/NavDestination$Companion; +Landroidx/navigation/NavDestination$DeepLinkMatch; +Landroidx/navigation/NavDestination; +Landroidx/navigation/NavGraph$Companion; +Landroidx/navigation/NavGraph$iterator$1; +Landroidx/navigation/NavGraph; +Landroidx/navigation/NavGraphNavigator; +Landroidx/navigation/NavOptions$Builder; +Landroidx/navigation/NavOptions; +Landroidx/navigation/NavType$Companion$BoolArrayType$1; +Landroidx/navigation/NavType$Companion$BoolType$1; +Landroidx/navigation/NavType$Companion$FloatArrayType$1; +Landroidx/navigation/NavType$Companion$FloatType$1; +Landroidx/navigation/NavType$Companion$IntArrayType$1; +Landroidx/navigation/NavType$Companion$IntType$1; +Landroidx/navigation/NavType$Companion$LongArrayType$1; +Landroidx/navigation/NavType$Companion$LongType$1; +Landroidx/navigation/NavType$Companion$ReferenceType$1; +Landroidx/navigation/NavType$Companion$StringArrayType$1; +Landroidx/navigation/NavType$Companion$StringType$1; +Landroidx/navigation/NavType$Companion; +Landroidx/navigation/NavType; +Landroidx/navigation/NavViewModelStoreProvider; +Landroidx/navigation/Navigator$Extras; +Landroidx/navigation/Navigator$Name; +Landroidx/navigation/Navigator; +Landroidx/navigation/NavigatorProvider$Companion; +Landroidx/navigation/NavigatorProvider; +Landroidx/navigation/NavigatorState; +HSPLandroidx/navigation/common/R$styleable;-><clinit>()V +Landroidx/navigation/common/R$styleable; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..2bac4c519048f430c80e493764573a3daa450cf8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2c1b8f824b14ec24eb23c0bd3eec5e57ca428a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/proguard.txt @@ -0,0 +1,28 @@ +# Copyright (C) 2019 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# NavArgsLazy creates NavArgs instances using reflection +-if public class ** implements androidx.navigation.NavArgs +-keepclassmembers public class <1> { + ** fromBundle(android.os.Bundle); +} + +# Retain the @Navigator.Name annotation on each subclass of Navigator. +# R8 full mode only retains annotations on items matched by a -keep rule, +# hence the extra -keep rule for the subclasses of Navigator. +# +# A -keep rule for the Navigator.Name annotation class is not required +# since the annotation is referenced from the code. +-keepattributes RuntimeVisibleAnnotations +-keep,allowobfuscation,allowshrinking class * extends androidx.navigation.Navigator diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..d9a1c54332ccda8df8956994082c7dc71a900bea Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..88d401b28be71d4a051fb0beaf6e923cd4f206a0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/139/jl/res/values/values.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <declare-styleable name="NavAction"> + <attr name="android:id"/> + <attr format="reference" name="destination"/> + <attr format="boolean" name="launchSingleTop"/> + <attr format="boolean" name="restoreState"/> + <attr format="reference" name="popUpTo"/> + <attr format="boolean" name="popUpToInclusive"/> + <attr format="boolean" name="popUpToSaveState"/> + <attr format="reference" name="enterAnim"/> + <attr format="reference" name="exitAnim"/> + <attr format="reference" name="popEnterAnim"/> + <attr format="reference" name="popExitAnim"/> + </declare-styleable> + <declare-styleable name="NavArgument"> + <attr name="android:name"/> + <attr name="android:defaultValue"/> + <attr format="boolean" name="nullable"/> + <attr format="string" name="argType"/> + </declare-styleable> + <declare-styleable name="NavDeepLink"> + <attr format="string" name="uri"/> + <attr format="string" name="action"/> + <attr format="string" name="mimeType"/> + <attr name="android:autoVerify"/> + </declare-styleable> + <declare-styleable name="NavGraphNavigator"> + <attr format="reference" name="startDestination"/> + </declare-styleable> + <declare-styleable name="Navigator"> + <attr name="android:id"/> + <attr format="string" name="route"/> + <attr name="android:label"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/140.stamp new file mode 100644 index 0000000000000000000000000000000000000000..353da8cc8df07e4218991a5b33a90fcca0a75bb3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/140.stamp @@ -0,0 +1 @@ +3B27CD7316884A9B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..8ed7187d8c851c85a8a61c23d5cecda5f7e3cedc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.activity.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..5b30c87bf954c710f85ef614e791e8de6223cbae Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bdef18a5203476444fa4387943eea24668ef887 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/140/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/141.stamp new file mode 100644 index 0000000000000000000000000000000000000000..b31b10a756390f2d95edf4dfe2011fac39ec3a55 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141.stamp @@ -0,0 +1 @@ +5268275865FFC470 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..70d43f3c6372cfa15db3f9a4016be1efcf1b41f6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.navigation" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..51f3561116780020263019b596eadfae5dd05aca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/R.txt @@ -0,0 +1,17 @@ +int attr action 0x0 +int attr data 0x0 +int attr dataPattern 0x0 +int attr graph 0x0 +int attr navGraph 0x0 +int attr targetPackage 0x0 +int id nav_controller_view_tag 0x0 +int[] styleable ActivityNavigator { 0x0, 0x1010003, 0x0, 0x0, 0x0 } +int styleable ActivityNavigator_action 0 +int styleable ActivityNavigator_android_name 1 +int styleable ActivityNavigator_data 2 +int styleable ActivityNavigator_dataPattern 3 +int styleable ActivityNavigator_targetPackage 4 +int[] styleable NavHost { 0x0 } +int styleable NavHost_navGraph 0 +int[] styleable NavInclude { 0x0 } +int styleable NavInclude_graph 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..c719d9a1a880b506413a6e87b39c06b768b769d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/baseline-prof.txt @@ -0,0 +1,106 @@ +# Baseline Profiles for navigation-runtime + +HSPLandroidx/navigation/ActivityNavigator$Companion;-><init>()V +HSPLandroidx/navigation/ActivityNavigator$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/ActivityNavigator$hostActivity$1;-><clinit>()V +HSPLandroidx/navigation/ActivityNavigator$hostActivity$1;-><init>()V +HSPLandroidx/navigation/ActivityNavigator;-><clinit>()V +HSPLandroidx/navigation/ActivityNavigator;-><init>(Landroid/content/Context;)V +HSPLandroidx/navigation/NavController$Companion;-><init>()V +HSPLandroidx/navigation/NavController$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavController$NavControllerNavigatorState;-><init>(Landroidx/navigation/NavController;Landroidx/navigation/Navigator;)V +HSPLandroidx/navigation/NavController$NavControllerNavigatorState;->addInternal(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavController$NavControllerNavigatorState;->createBackStackEntry(Landroidx/navigation/NavDestination;Landroid/os/Bundle;)Landroidx/navigation/NavBackStackEntry; +HSPLandroidx/navigation/NavController$NavControllerNavigatorState;->push(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavController$activity$1;-><clinit>()V +HSPLandroidx/navigation/NavController$activity$1;-><init>()V +HSPLandroidx/navigation/NavController$lifecycleObserver$1;-><init>(Landroidx/navigation/NavController;)V +HSPLandroidx/navigation/NavController$lifecycleObserver$1;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/navigation/NavController$navInflater$2;-><init>(Landroidx/navigation/NavController;)V +HSPLandroidx/navigation/NavController$navInflater$2;->invoke()Landroidx/navigation/NavInflater; +HSPLandroidx/navigation/NavController$navInflater$2;->invoke()Ljava/lang/Object; +HSPLandroidx/navigation/NavController$navigate$4;-><init>(Lkotlin/jvm/internal/Ref$BooleanRef;Landroidx/navigation/NavController;Landroidx/navigation/NavDestination;Landroid/os/Bundle;)V +HSPLandroidx/navigation/NavController$navigate$4;->invoke(Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavController$navigate$4;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +HSPLandroidx/navigation/NavController$onBackPressedCallback$1;-><init>(Landroidx/navigation/NavController;)V +HSPLandroidx/navigation/NavController;-><clinit>()V +HSPLandroidx/navigation/NavController;-><init>(Landroid/content/Context;)V +HSPLandroidx/navigation/NavController;->access$getAddToBackStackHandler$p(Landroidx/navigation/NavController;)Lkotlin/jvm/functions/Function1; +HSPLandroidx/navigation/NavController;->access$getInflater$p(Landroidx/navigation/NavController;)Landroidx/navigation/NavInflater; +HSPLandroidx/navigation/NavController;->access$getLifecycleOwner$p(Landroidx/navigation/NavController;)Landroidx/lifecycle/LifecycleOwner; +HSPLandroidx/navigation/NavController;->access$getViewModel$p(Landroidx/navigation/NavController;)Landroidx/navigation/NavControllerViewModel; +HSPLandroidx/navigation/NavController;->access$get_graph$p(Landroidx/navigation/NavController;)Landroidx/navigation/NavGraph; +HSPLandroidx/navigation/NavController;->access$get_navigatorProvider$p(Landroidx/navigation/NavController;)Landroidx/navigation/NavigatorProvider; +HSPLandroidx/navigation/NavController;->addEntryToBackStack$default(Landroidx/navigation/NavController;Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/navigation/NavBackStackEntry;Ljava/util/List;ILjava/lang/Object;)V +HSPLandroidx/navigation/NavController;->addEntryToBackStack(Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/navigation/NavBackStackEntry;Ljava/util/List;)V +HSPLandroidx/navigation/NavController;->dispatchOnDestinationChanged()Z +HSPLandroidx/navigation/NavController;->enableOnBackPressed(Z)V +HSPLandroidx/navigation/NavController;->findDestination(I)Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavController;->getBackQueue()Lkotlin/collections/ArrayDeque; +HSPLandroidx/navigation/NavController;->getBackStackEntry(I)Landroidx/navigation/NavBackStackEntry; +HSPLandroidx/navigation/NavController;->getContext()Landroid/content/Context; +HSPLandroidx/navigation/NavController;->getCurrentBackStackEntry()Landroidx/navigation/NavBackStackEntry; +HSPLandroidx/navigation/NavController;->getDestinationCountOnBackStack()I +HSPLandroidx/navigation/NavController;->getNavInflater()Landroidx/navigation/NavInflater; +HSPLandroidx/navigation/NavController;->getNavigatorProvider()Landroidx/navigation/NavigatorProvider; +HSPLandroidx/navigation/NavController;->handleDeepLink(Landroid/content/Intent;)Z +HSPLandroidx/navigation/NavController;->linkChildToParent(Landroidx/navigation/NavBackStackEntry;Landroidx/navigation/NavBackStackEntry;)V +HSPLandroidx/navigation/NavController;->navigate(Landroidx/navigation/NavDestination;Landroid/os/Bundle;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;)V +HSPLandroidx/navigation/NavController;->navigateInternal(Landroidx/navigation/Navigator;Ljava/util/List;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;Lkotlin/jvm/functions/Function1;)V +HSPLandroidx/navigation/NavController;->onGraphCreated(Landroid/os/Bundle;)V +HSPLandroidx/navigation/NavController;->populateVisibleEntries$navigation_runtime_release()Ljava/util/List; +HSPLandroidx/navigation/NavController;->setGraph(I)V +HSPLandroidx/navigation/NavController;->setGraph(Landroidx/navigation/NavGraph;Landroid/os/Bundle;)V +HSPLandroidx/navigation/NavController;->setLifecycleOwner(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/navigation/NavController;->setOnBackPressedDispatcher(Landroidx/activity/OnBackPressedDispatcher;)V +HSPLandroidx/navigation/NavController;->setViewModelStore(Landroidx/lifecycle/ViewModelStore;)V +HSPLandroidx/navigation/NavController;->updateBackStackLifecycle$navigation_runtime_release()V +HSPLandroidx/navigation/NavController;->updateOnBackPressedCallbackEnabled()V +HSPLandroidx/navigation/NavControllerViewModel$Companion$FACTORY$1;-><init>()V +HSPLandroidx/navigation/NavControllerViewModel$Companion$FACTORY$1;->create(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/navigation/NavControllerViewModel$Companion;-><init>()V +HSPLandroidx/navigation/NavControllerViewModel$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavControllerViewModel$Companion;->getInstance(Landroidx/lifecycle/ViewModelStore;)Landroidx/navigation/NavControllerViewModel; +HSPLandroidx/navigation/NavControllerViewModel;-><clinit>()V +HSPLandroidx/navigation/NavControllerViewModel;-><init>()V +HSPLandroidx/navigation/NavControllerViewModel;->access$getFACTORY$cp()Landroidx/lifecycle/ViewModelProvider$Factory; +HSPLandroidx/navigation/NavHostController;-><init>(Landroid/content/Context;)V +HSPLandroidx/navigation/NavHostController;->enableOnBackPressed(Z)V +HSPLandroidx/navigation/NavHostController;->setLifecycleOwner(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/navigation/NavHostController;->setOnBackPressedDispatcher(Landroidx/activity/OnBackPressedDispatcher;)V +HSPLandroidx/navigation/NavHostController;->setViewModelStore(Landroidx/lifecycle/ViewModelStore;)V +HSPLandroidx/navigation/NavInflater$Companion;-><init>()V +HSPLandroidx/navigation/NavInflater$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/NavInflater;-><clinit>()V +HSPLandroidx/navigation/NavInflater;-><init>(Landroid/content/Context;Landroidx/navigation/NavigatorProvider;)V +HSPLandroidx/navigation/NavInflater;->inflate(I)Landroidx/navigation/NavGraph; +HSPLandroidx/navigation/NavInflater;->inflate(Landroid/content/res/Resources;Landroid/content/res/XmlResourceParser;Landroid/util/AttributeSet;I)Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/NavInflater;->inflateAction(Landroid/content/res/Resources;Landroidx/navigation/NavDestination;Landroid/util/AttributeSet;Landroid/content/res/XmlResourceParser;I)V +HSPLandroidx/navigation/NavInflater;->inflateArgument(Landroid/content/res/TypedArray;Landroid/content/res/Resources;I)Landroidx/navigation/NavArgument; +HSPLandroidx/navigation/NavInflater;->inflateArgumentForDestination(Landroid/content/res/Resources;Landroidx/navigation/NavDestination;Landroid/util/AttributeSet;I)V +HSPLandroidx/navigation/Navigation;-><clinit>()V +HSPLandroidx/navigation/Navigation;-><init>()V +HSPLandroidx/navigation/Navigation;->setViewNavController(Landroid/view/View;Landroidx/navigation/NavController;)V +Landroidx/navigation/ActivityNavigator$Companion; +Landroidx/navigation/ActivityNavigator$hostActivity$1; +Landroidx/navigation/ActivityNavigator; +Landroidx/navigation/NavController$Companion; +Landroidx/navigation/NavController$NavControllerNavigatorState; +Landroidx/navigation/NavController$activity$1; +Landroidx/navigation/NavController$lifecycleObserver$1; +Landroidx/navigation/NavController$navInflater$2; +Landroidx/navigation/NavController$navigate$4; +Landroidx/navigation/NavController$onBackPressedCallback$1; +Landroidx/navigation/NavController; +Landroidx/navigation/NavControllerViewModel$Companion$FACTORY$1; +Landroidx/navigation/NavControllerViewModel$Companion; +Landroidx/navigation/NavControllerViewModel; +Landroidx/navigation/NavHost; +Landroidx/navigation/NavHostController; +Landroidx/navigation/NavInflater$Companion; +Landroidx/navigation/NavInflater; +Landroidx/navigation/Navigation; +PLandroidx/navigation/NavControllerViewModel;->onCleared()V +HSPLandroidx/navigation/R$styleable;-><clinit>()V +Landroidx/navigation/R$id; +Landroidx/navigation/R$styleable; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..cdce7d0d65fe19f5a11567ccef68fe5e646c3a76 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..3a238618896f532b03b93a654eab7ecc1f4e1993 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..14b9170e545d1bac16566e83f87a6610ef66909f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/141/jl/res/values/values.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="nav_controller_view_tag" type="id"/> + <declare-styleable name="ActivityNavigator"> + <attr name="android:name"/> + <attr format="string" name="action"/> + <attr format="string" name="data"/> + <attr format="string" name="dataPattern"/> + <attr format="string" name="targetPackage"/> + </declare-styleable> + <declare-styleable name="NavHost"> + <attr format="reference" name="navGraph"/> + </declare-styleable> + <declare-styleable name="NavInclude"> + <attr format="reference" name="graph"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/142.stamp new file mode 100644 index 0000000000000000000000000000000000000000..7a04d8a1c83650fe55d63f0bf757e925af8b7aa3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142.stamp @@ -0,0 +1 @@ +1501930E4D0D7C78 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..c4fcb7c98890f914d30af1e3503c962674d91932 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.navigation.ui" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..5baadf9739486ecb6e4bbeb73f3be82ae8d533c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/R.txt @@ -0,0 +1,12 @@ +int anim nav_default_enter_anim 0x0 +int anim nav_default_exit_anim 0x0 +int anim nav_default_pop_enter_anim 0x0 +int anim nav_default_pop_exit_anim 0x0 +int animator nav_default_enter_anim 0x0 +int animator nav_default_exit_anim 0x0 +int animator nav_default_pop_enter_anim 0x0 +int animator nav_default_pop_exit_anim 0x0 +int integer config_navAnimTime 0x0 +int string dest_title 0x0 +int string nav_app_bar_navigate_up_description 0x0 +int string nav_app_bar_open_drawer_description 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..79e2170678f3fd16023ae7279c87d0350cbc0c2b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..32ada1d09b76af341beae1c00a70bb9c8b5eaf0a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/proguard.txt @@ -0,0 +1,18 @@ +# Copyright (C) 2019 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# setProgress is called via an ObjectAnimator in AbstractAppBarOnDestinationChangedListener +-keepclassmembers class androidx.appcompat.graphics.drawable.DrawerArrowDrawable { + void setProgress(float); +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d55cf80460532fb30b10683171708b4452a2ebd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/public.txt @@ -0,0 +1,8 @@ +animator nav_default_enter_anim +anim nav_default_enter_anim +animator nav_default_exit_anim +anim nav_default_exit_anim +animator nav_default_pop_enter_anim +anim nav_default_pop_enter_anim +anim nav_default_pop_exit_anim +animator nav_default_pop_exit_anim diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..c6d1f6ebd6e4665a8c9c36099574d6f96ac9ccf5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..da98852622f122ae0223092932794773de9d64c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_enter_anim.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:duration="@integer/config_navAnimTime" + android:fromAlpha="0.0" + android:toAlpha="1.0"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..083e047d5b7fa0634de56bee854ea88f05282d3d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_exit_anim.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:duration="@integer/config_navAnimTime" + android:fromAlpha="1.0" + android:toAlpha="0.0"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..da98852622f122ae0223092932794773de9d64c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_enter_anim.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:duration="@integer/config_navAnimTime" + android:fromAlpha="0.0" + android:toAlpha="1.0"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..083e047d5b7fa0634de56bee854ea88f05282d3d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/anim/nav_default_pop_exit_anim.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:duration="@integer/config_navAnimTime" + android:fromAlpha="1.0" + android:toAlpha="0.0"/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f76621efff62d91d365922f375142dfc0246f90 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_enter_anim.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:duration="@integer/config_navAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4f84e9d06aac8fc5704350c72795c511c034bd5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_exit_anim.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:duration="@integer/config_navAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f76621efff62d91d365922f375142dfc0246f90 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_enter_anim.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="0.0" + android:valueTo="1.0" + android:duration="@integer/config_navAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4f84e9d06aac8fc5704350c72795c511c034bd5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/animator/nav_default_pop_exit_anim.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2020 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/linear_interpolator" + android:propertyName="alpha" + android:valueFrom="1.0" + android:valueTo="0.0" + android:duration="@integer/config_navAnimTime" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-af/values-af.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..d6720a91d28488d8da15873089b19f8a711ebbc2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-af/values-af.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Gaan op"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Maak navigasielaai oop"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-am/values-am.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..39fb8c9e906e43ebb9e50ea0eef967ba9d1a0a1d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-am/values-am.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ወደ ላዠያስሱ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"የአሰሳ መሣቢያá‹áŠ• áŠáˆá‰µ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ar/values-ar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..b91263548b0b5203019944b5f883a50c7f87bbab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ar/values-ar.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"التنقل إلى أعلى"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ÙØªØ Ù„Ø§Ø¦ØØ© التنقل"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-as/values-as.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..d689b8c774278f258aa569360ca9ef316e810572 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-as/values-as.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ওপৰলৈ যাওক"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"নেà¦à¦¿à¦—েশà§à¦¬à¦¨ ডà§à§°à§±à¦¾à§° খোলক"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-az/values-az.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..6462086858428b24ff64ba94cd49e166e33a5656 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-az/values-az.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Yuxarı keçin"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Naviqasiya panelini açın"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..d1c95bdc7e747b2f7527e15a1c8722ab4de29700 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Idite nagore"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Otvorite fioku za navigaciju"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-be/values-be.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..fe88e1c31e3512c38f1c61bb931e791d9de3c3d7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-be/values-be.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ПерайÑці ўверх"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ðдкрыць выÑоўнае меню навігацыі"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bg/values-bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..c8cc0647a60b73fc4dc4789040e90ed9635f12c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bg/values-bg.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Придвижване нагоре"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ОтварÑне на ÑÐ»Ð¾Ñ Ð·Ð° навигациÑ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bn/values-bn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..d7c6447c34c6958da203d7181b7e8fc3d229e96c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bn/values-bn.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"উপরে নেà¦à¦¿à¦—েট করà§à¦¨"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"নেà¦à¦¿à¦—েশন ডà§à¦°à¦¯à¦¼à¦¾à¦° খà§à¦²à§à¦¨"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bs/values-bs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..4256ba68f52021b3b1932e89f508151a0d50ecb1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-bs/values-bs.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Idi gore"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Otvaranje ladice za navigaciju"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ca/values-ca.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d17d38756bdc96d4bf61652ab9d958f07d12eae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ca/values-ca.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navega cap amunt"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Obre el tauler de navegació"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-cs/values-cs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..046024be46f0b516f7fac137599437104b4b223d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-cs/values-cs.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"PÅ™ejÃt nahoru"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"OtevÅ™Ãt vysouvacà panel navigace"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-da/values-da.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..6781150d236ff59474891614bd2dbca4169ecc89 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-da/values-da.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Naviger op"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ã…bn sidemenuen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-de/values-de.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..edea6dd37d718ac03c31179c404b368504986f55 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-de/values-de.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Nach oben"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Navigationsleiste öffnen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-el/values-el.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..1cd5e9eaa25ffe894683e1868fbe9f8a0c336a5e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-el/values-el.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Πλοήγηση Ï€Ïος τα επάνω"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Άνοιγμα συÏταÏÎ¹Î¿Ï Ï€Î»Î¿Î®Î³Î·ÏƒÎ·Ï‚"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rAU/values-en-rAU.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..5db24ce4c46b76fff04a37f220085940a19f68e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigate up"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Open navigation drawer"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rGB/values-en-rGB.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..5db24ce4c46b76fff04a37f220085940a19f68e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigate up"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Open navigation drawer"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rIN/values-en-rIN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..5db24ce4c46b76fff04a37f220085940a19f68e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigate up"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Open navigation drawer"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es-rUS/values-es-rUS.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..68fcdd02e366a912db1936e99c454be1f29859f0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navegar hacia arriba"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir panel lateral de navegación"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es/values-es.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..0beee143b84604d9e0826990b69d520da26f5e15 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-es/values-es.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Desplazarse hacia arriba"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir panel de navegación"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-et/values-et.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..460ac256a61955aa132ec26eb3da89373a79f08d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-et/values-et.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigeeri üles"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Navigeerimissahtli avamine"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-eu/values-eu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..31c2a240d6272d13cd2ce1e2578d8f90c061a28d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-eu/values-eu.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Joan gora"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ireki nabigazio-panel lerrakorra"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fa/values-fa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c7d50d55cc324c0540298d17c16121e523aefd1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fa/values-fa.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"پیمایش به بالا"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"باز کردن کشوی پیمایش"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fi/values-fi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..a57ee123e62b725a963416709ab284fc21b23eca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fi/values-fi.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Siirry ylös"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Avaa navigoinnin vetopaneeli"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr-rCA/values-fr-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..9862dd2a3cfc82191a7a02450f93af217388b494 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Revenir en arrière"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ouvrir le panneau de navigation"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr/values-fr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..b7f7e42100419ca7644e5af65df5b8dcefc5c498 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-fr/values-fr.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Remonter"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ouvrir le panneau de navigation"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gl/values-gl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..c41f5728ad52c095b07a84c75f079e5102b530e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gl/values-gl.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Desprazarse cara arriba"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir o panel de navegación"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gu/values-gu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea063fe80f9df73c2a743d9727e2cf8504e43ff0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-gu/values-gu.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ઉપર નૅવિગેટ કરો"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"નૅવિગેશન ડà«àª°à«‰àª…ર ખોલો"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hi/values-hi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f281c77534a10062c79672808485cba82dd4dd6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hi/values-hi.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"वापस जाà¤à¤‚"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"नेविगेशन पैनल खोलें"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hr/values-hr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..4256ba68f52021b3b1932e89f508151a0d50ecb1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hr/values-hr.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Idi gore"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Otvaranje ladice za navigaciju"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hu/values-hu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..b109b3dbe85c598323697d17504a8e303423ffbd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hu/values-hu.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigálás felfelé"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Navigációs fiók kinyitása"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hy/values-hy.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..daa73f35d4119d5ae68ae5283fd809b4db5dba44 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-hy/values-hy.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ô²Õ¡ÖÕ¥Õ¬ Õ¶Õ¡Õ¾Õ¡Ö€Õ¯Õ´Õ¡Õ¶ Õ¤Õ¡Ö€Õ¡Õ¯Õ¨"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-in/values-in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..5049238611ed92979942913f86908e3acc7394e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-in/values-in.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Kembali ke atas"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Buka panel navigasi"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-is/values-is.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..d101ac8ff323047fb5c1ff47f41e1c33fe180ad9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-is/values-is.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Fara upp"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Opna yfirlitsskúffu"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-it/values-it.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..221e9fcbde310f6c959b0e8919d0320a35a35df5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-it/values-it.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Torna indietro"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Apri riquadro di navigazione"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-iw/values-iw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..82600528c2edaff84abff4f32600381fe63352e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-iw/values-iw.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"× ×™×•×•×˜ למעלה"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"פתיחת ×—×œ×•× ×™×ª ×”×”×–×–×” ×œ× ×™×•×•×˜"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ja/values-ja.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..5c0c41b20b9d62338606e8f29b630f8ac2300860 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ja/values-ja.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"上ã¸ç§»å‹•"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ナビゲーション ドãƒãƒ¯ãƒ¼ã‚’é–‹ã"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ka/values-ka.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f7e901719a8dba6478b1c526a7d223ecd65feda --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ka/values-ka.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ზემáƒáƒ— გáƒáƒ“áƒáƒ¡áƒ•ლáƒ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ნáƒáƒ•იგáƒáƒªáƒ˜áƒ˜áƒ¡ უჯრის გáƒáƒ®áƒ¡áƒœáƒ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kk/values-kk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..6febeecb7c7f9407b5a15cceda820807195e1ab0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kk/values-kk.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Жоғары қарай жылжу"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ÐÐ°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ñ Ñ‚Ð°Ñ€Ñ‚Ð¿Ð°Ñын ашу"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-km/values-km.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..2ca653626eee1ac2903061b5f3ada1ba4b694e7c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-km/values-km.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"រំកិលឡើងលើ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"បើកážážážšáž»áž€ážšáž€"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kn/values-kn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..aba51da82156a3ddf0f45913a921bbd75f3468d8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-kn/values-kn.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ಮೇಲಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ನà³à²¯à²¾à²µà²¿à²—ೇಶನೠಡà³à²°à²¾à²µà²°à³ ಅನà³à²¨à³ ತೆರೆಯಿರಿ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ko/values-ko.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0be7ab97df387632a4c8fc7c1af41950dcfff4d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ko/values-ko.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"위로 ì´ë™"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"íƒìƒ‰ ì°½ 열기"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ky/values-ky.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..9093a0a3f4e5bedea0c2298e1f19a7290c3b4ae2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ky/values-ky.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Жогору чабыттоо"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Чабыттоо ÑуурмаÑын ачуу"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lo/values-lo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lo/values-lo.xml new file mode 100644 index 0000000000000000000000000000000000000000..a654b8741ffca0d131100ebb359fb2a37a7acd02 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lo/values-lo.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ເລື່àºàº™àº‚ຶ້ນເທິງ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ເປີດà»àº–ບàºàº²àº™àº™àº³àº—າງ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lt/values-lt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lt/values-lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..db5c98c0897b8a561d72321cddb5e3e66e2ab3f3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lt/values-lt.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"NarÅ¡yti aukÅ¡tyn"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Atidaryti narÅ¡ymo juostÄ…"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lv/values-lv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lv/values-lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..5cf69d3d31adaa5a185e87b5a17cb62db66a3f6b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-lv/values-lv.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"PÄrvietoties augÅ¡up"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"AtvÄ“rt navigÄcijas atvilktni"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mk/values-mk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mk/values-mk.xml new file mode 100644 index 0000000000000000000000000000000000000000..1212eeaa061f5a9382f45d1dc4f46471e27e1914 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mk/values-mk.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Оди нагоре"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Отворете ја фиоката за навигација"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ml/values-ml.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ml/values-ml.xml new file mode 100644 index 0000000000000000000000000000000000000000..3fce820fb20d7dce665f9246c91b46d00e5f3d5f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ml/values-ml.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"à´®àµà´•ളിലേകàµà´•ൠനാവിഗേറàµà´±àµ ചെയàµà´¯àµà´•"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"നാവിഗേഷൻ à´¡àµà´°àµ‹à´¯àµ¼ à´¤àµà´±à´•àµà´•àµà´•"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mn/values-mn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mn/values-mn.xml new file mode 100644 index 0000000000000000000000000000000000000000..d1b4e29952bc4cdccd4b84303d9f9a5022c9ae3f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mn/values-mn.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ДÑÑш шилжих"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ðавигацийн шургуулгыг нÑÑÑ…"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mr/values-mr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mr/values-mr.xml new file mode 100644 index 0000000000000000000000000000000000000000..596edc7360522ae93a9d0edf8a3ca127c605d208 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-mr/values-mr.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"वर नेवà¥â€à¤¹à¤¿à¤—ेट करा"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"नेवà¥à¤¹à¤¿à¤—ेशन डà¥à¤°à¥‰à¤µà¤° उघडा"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ms/values-ms.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ms/values-ms.xml new file mode 100644 index 0000000000000000000000000000000000000000..e4d3edd6bbcb0e7f4b38318ad9b65a38d966a300 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ms/values-ms.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigasi ke atas"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Buka laci navigasi"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-my/values-my.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-my/values-my.xml new file mode 100644 index 0000000000000000000000000000000000000000..532d57057f338f60dfa2b67f9a2bd0438c80ab22 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-my/values-my.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"အပေါ်သá€á€¯á€· ရွှေ့ရန်"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"လမ်းကြောင်းပြ အံဆွဲကá€á€¯ ဖွင့်ရန်"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nb/values-nb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nb/values-nb.xml new file mode 100644 index 0000000000000000000000000000000000000000..4819db21704a693ed8144cd4d28ec973d10fbfe1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nb/values-nb.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Naviger opp"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Ã…pne uttrekksmenyen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ne/values-ne.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ne/values-ne.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb84a541bc31a699f540d6d3754b14965685edfb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ne/values-ne.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"माथि नेà¤à¤¿à¤—ेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"नेà¤à¤¿à¤—ेसन डà¥à¤°à¤…र खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nl/values-nl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nl/values-nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..50617ff44986950b152c64dcde34ce4338724c08 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-nl/values-nl.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Omhoog navigeren"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Zijmenu openen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-or/values-or.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-or/values-or.xml new file mode 100644 index 0000000000000000000000000000000000000000..5b7da1879671ae23b39597533dc6068cb856443f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-or/values-or.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ଉପରକà ନାà¬à¬¿à¬—à‡à¬Ÿà†କରନàତà"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ନାà¬à¬¿à¬—à‡à¬¸à¬¨à†ଡàରàŸà¬°à†ଖà‹à¬²à¬¨àତà"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pa/values-pa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pa/values-pa.xml new file mode 100644 index 0000000000000000000000000000000000000000..50aaaefb27b9476b9e91bded0480111225336302 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pa/values-pa.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ਉੱਪਰ ਵੱਲ ਨੈਵੀਗੇਟ ਕਰੋ"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"ਨੈਵੀਗੇਸ਼ਨ ਡà©à¨°à¨¾à¨…ਰ ਖੋਲà©à¨¹à©‹"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pl/values-pl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pl/values-pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..5907ce0c1ae83d7809c85053fd47325335fd81f8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pl/values-pl.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Przejdź wyżej"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Otwórz panel nawigacji"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rBR/values-pt-rBR.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rBR/values-pt-rBR.xml new file mode 100644 index 0000000000000000000000000000000000000000..42799d92f4226b95671d02d5d8348e94a5912766 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rBR/values-pt-rBR.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navegar para cima"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir gaveta de navegação"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rPT/values-pt-rPT.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 0000000000000000000000000000000000000000..42799d92f4226b95671d02d5d8348e94a5912766 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navegar para cima"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir gaveta de navegação"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt/values-pt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt/values-pt.xml new file mode 100644 index 0000000000000000000000000000000000000000..42799d92f4226b95671d02d5d8348e94a5912766 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-pt/values-pt.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navegar para cima"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Abrir gaveta de navegação"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ro/values-ro.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ro/values-ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..e0882c3fa9ead5c92662e6e8390d891b9af848e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ro/values-ro.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"NavigaÈ›i în sus"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"DeschideÈ›i panoul de navigare"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ru/values-ru.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ru/values-ru.xml new file mode 100644 index 0000000000000000000000000000000000000000..76256cd29ba3f9a306ea9b116a3907c2dc6096e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ru/values-ru.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Перейти вверх"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Открыть панель навигации"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-si/values-si.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-si/values-si.xml new file mode 100644 index 0000000000000000000000000000000000000000..66202b62f94bdbb6bd5f7454f9d0082245f3dc68 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-si/values-si.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"ඉහළට සංචලන කරන්න"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"සංචලන ඇදීම විවෘචකරන්න"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sk/values-sk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sk/values-sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..acd62b95c4f4a80a7d1bbaa1ce704b9852b7c75b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sk/values-sk.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"PrejsÅ¥ hore"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"OtvoriÅ¥ navigaÄný vysúvacà panel"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sl/values-sl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sl/values-sl.xml new file mode 100644 index 0000000000000000000000000000000000000000..ef881075d27e06aa3873c02c72c4a6d786b53f25 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sl/values-sl.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Pomik navzgor"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Odpri predal za krmarjenje"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sq/values-sq.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sq/values-sq.xml new file mode 100644 index 0000000000000000000000000000000000000000..a7b97a67ea564487b55d59f862639f5af3d64f8f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sq/values-sq.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Ngjitu lart"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Hap sirtarin e navigimit"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sr/values-sr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sr/values-sr.xml new file mode 100644 index 0000000000000000000000000000000000000000..e332856d377bfff7dcb177c2ea20ebf3b6d0a9a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sr/values-sr.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Идите нагоре"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Отворите фиоку за навигацију"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sv/values-sv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sv/values-sv.xml new file mode 100644 index 0000000000000000000000000000000000000000..f79ff47505acb518b226c5685fa2e8f72b9d4e8f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sv/values-sv.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Navigera uppÃ¥t"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Öppna navigeringspanelen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sw/values-sw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sw/values-sw.xml new file mode 100644 index 0000000000000000000000000000000000000000..f66e8525f02f78d70b27f5700a629df3b45cfaa1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-sw/values-sw.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Sogeza juu"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Fungua droo ya kusogeza"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ta/values-ta.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..391f9914f618b7575421201de7c0e134b1b69f86 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ta/values-ta.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"மேலே செலà¯à®²à¯à®®à¯"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"வழிசெலà¯à®¤à¯à®¤à®²à¯ டிராயரைத௠திறகà¯à®•à¯à®®à¯"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-te/values-te.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c21fbf8e847a9836b13f125f690151c6a2dc71e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-te/values-te.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"పైకి నావిగేటౠచేయి"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"నావిగేషనౠడà±à°°à°¾à°¯à°°à±â€Œà°¨à± తెరవండి"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-th/values-th.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..4d3e4030fa635c87748b80dedc70d206d0d4e2d7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-th/values-th.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"นำทางขึ้น"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"เปิดลิ้นชัà¸à¸à¸²à¸£à¸™à¸³à¸—าง"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tl/values-tl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..53bb3eda77d20bf6f38d5bca799ccecac6b15883 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tl/values-tl.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Mag-navigate pataas"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Buksan ang navigation drawer"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tr/values-tr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..8089696c8f779da1dd03d8440e27d8088055b047 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-tr/values-tr.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Yukarı git"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Gezinme çekmecesini aç"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uk/values-uk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..10c716ea05f181cc8a9acf7fbad4ccd507996947 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uk/values-uk.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Перейти вгору"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Відкрити панель навігації"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ur/values-ur.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..63cc09db727bf51fb4538cc45baf23d9cc215398 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-ur/values-ur.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"اوپر نیویگیٹ کریں"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"نیویگیشن دراز کھولیں"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uz/values-uz.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..1cdd79a6bee16836c50110e165c0e323d981d419 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-uz/values-uz.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Tepaga"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Navigatsiya panelini ochish"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-vi/values-vi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..b223f0e3930d04bda59e656ded7371e4baec006b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-vi/values-vi.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Di chuyển lên"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Mở ngăn Ä‘iá»u hướng"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rCN/values-zh-rCN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..9091302f8b6388907ac47afd5ee40ed52b8dad5d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"转到上一层级"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"打开抽屉å¼å¯¼èˆªæ "</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rHK/values-zh-rHK.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..9ce48f99bda413db79b0bf54fab0bed1229925a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"å‘上導覽"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"開啟導覽列"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rTW/values-zh-rTW.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..79f27195ba03cc8de68459161861c38cdde011d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"å‘上ç€è¦½"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"開啟導覽匣"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zu/values-zu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..61aecd27158a82f87d7a1c8fe44eced42580ef34 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values-zu/values-zu.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="6301633601645100427" name="nav_app_bar_navigate_up_description">"Zulazulela phezulu"</string> + <string msgid="7456070600745802113" name="nav_app_bar_open_drawer_description">"Vula idrowa lakho lokuzula"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae9a4d1d932dbf42ac52336c187931df2a874122 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/142/jl/res/values/values.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <integer name="config_navAnimTime">150</integer> + <string name="dest_title">destination title</string> + <string name="nav_app_bar_navigate_up_description">Navigate up</string> + <string name="nav_app_bar_open_drawer_description">Open navigation drawer</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/143.stamp new file mode 100644 index 0000000000000000000000000000000000000000..dcec07cc9725cb46bf04305aa8d40fc2564e0895 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/143.stamp @@ -0,0 +1 @@ +650D8DDCD9A5C5E1 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..60b78c9ffa7e2174b37c161c3f693e8967bce0e1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2018 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.livedata.core.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..607113bd032847d9cc932da0faa560bf752d078b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..ceab8f344a4aa10e31caad52e9e33589464d1476 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/143/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/144.stamp new file mode 100644 index 0000000000000000000000000000000000000000..20740b4e2415f4272d514fae99d22a886ebb2c37 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/144.stamp @@ -0,0 +1 @@ +432B3C4CAE7FF45B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f1a740f0c1b15f1f385580029da5fdcaf5ec989 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.fragment.ktx" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..18c1c4127acb1a388bab0940ce8ab768a3988e4e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..ceab8f344a4aa10e31caad52e9e33589464d1476 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/144/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/145.stamp new file mode 100644 index 0000000000000000000000000000000000000000..511c39aeed101a04e1a06ecfc5b36486f50cebf3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145.stamp @@ -0,0 +1 @@ +F5D993EE9BC44902 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b3d86a7e51cc2ea01e38d5dddedbd03473d2014c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.navigation.fragment" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e038573208ea18feca9d49e0185d33536e1634b7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/R.txt @@ -0,0 +1,11 @@ +int attr defaultNavHost 0x0 +int dimen sliding_pane_detail_pane_width 0x0 +int id nav_host_fragment_container 0x0 +int id sliding_pane_detail_container 0x0 +int id sliding_pane_layout 0x0 +int[] styleable DialogFragmentNavigator { 0x1010003 } +int styleable DialogFragmentNavigator_android_name 0 +int[] styleable FragmentNavigator { 0x1010003 } +int styleable FragmentNavigator_android_name 0 +int[] styleable NavHostFragment { 0x0 } +int styleable NavHostFragment_defaultNavHost 0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..d91776dd9a6968bc5749fd8a443afefee1999a3d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/baseline-prof.txt @@ -0,0 +1,52 @@ +# Baseline Profiles for navigation-fragment + +HSPLandroidx/navigation/fragment/DialogFragmentNavigator$Companion;-><init>()V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator$observer$1;-><init>(Landroidx/navigation/fragment/DialogFragmentNavigator;)V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator$onAttach$1;-><init>(Landroidx/navigation/fragment/DialogFragmentNavigator;)V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator$onAttach$1;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator;-><clinit>()V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator;-><init>(Landroid/content/Context;Landroidx/fragment/app/FragmentManager;)V +HSPLandroidx/navigation/fragment/DialogFragmentNavigator;->access$getRestoredTagsAwaitingAttach$p(Landroidx/navigation/fragment/DialogFragmentNavigator;)Ljava/util/Set; +HSPLandroidx/navigation/fragment/DialogFragmentNavigator;->onAttach(Landroidx/navigation/NavigatorState;)V +HSPLandroidx/navigation/fragment/FragmentNavigator$Companion;-><init>()V +HSPLandroidx/navigation/fragment/FragmentNavigator$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;-><init>(Landroidx/navigation/Navigator;)V +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;->equals(Ljava/lang/Object;)Z +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;->getClassName()Ljava/lang/String; +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;->hashCode()I +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;)V +HSPLandroidx/navigation/fragment/FragmentNavigator$Destination;->setClassName(Ljava/lang/String;)Landroidx/navigation/fragment/FragmentNavigator$Destination; +HSPLandroidx/navigation/fragment/FragmentNavigator;-><clinit>()V +HSPLandroidx/navigation/fragment/FragmentNavigator;-><init>(Landroid/content/Context;Landroidx/fragment/app/FragmentManager;I)V +HSPLandroidx/navigation/fragment/FragmentNavigator;->createDestination()Landroidx/navigation/NavDestination; +HSPLandroidx/navigation/fragment/FragmentNavigator;->createDestination()Landroidx/navigation/fragment/FragmentNavigator$Destination; +HSPLandroidx/navigation/fragment/FragmentNavigator;->navigate(Landroidx/navigation/NavBackStackEntry;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;)V +HSPLandroidx/navigation/fragment/FragmentNavigator;->navigate(Ljava/util/List;Landroidx/navigation/NavOptions;Landroidx/navigation/Navigator$Extras;)V +HSPLandroidx/navigation/fragment/NavHostFragment$Companion;-><init>()V +HSPLandroidx/navigation/fragment/NavHostFragment$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/navigation/fragment/NavHostFragment;-><clinit>()V +HSPLandroidx/navigation/fragment/NavHostFragment;-><init>()V +HSPLandroidx/navigation/fragment/NavHostFragment;->createFragmentNavigator()Landroidx/navigation/Navigator; +HSPLandroidx/navigation/fragment/NavHostFragment;->getContainerId()I +HSPLandroidx/navigation/fragment/NavHostFragment;->onAttach(Landroid/content/Context;)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onCreateNavController(Landroidx/navigation/NavController;)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onCreateNavHostController(Landroidx/navigation/NavHostController;)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onCreateView(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View; +HSPLandroidx/navigation/fragment/NavHostFragment;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;Landroid/os/Bundle;)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onPrimaryNavigationFragmentChanged(Z)V +HSPLandroidx/navigation/fragment/NavHostFragment;->onViewCreated(Landroid/view/View;Landroid/os/Bundle;)V +Landroidx/navigation/fragment/DialogFragmentNavigator$Companion; +Landroidx/navigation/fragment/DialogFragmentNavigator$observer$1; +Landroidx/navigation/fragment/DialogFragmentNavigator$onAttach$1; +Landroidx/navigation/fragment/DialogFragmentNavigator; +Landroidx/navigation/fragment/FragmentNavigator$Companion; +Landroidx/navigation/fragment/FragmentNavigator$Destination; +Landroidx/navigation/fragment/FragmentNavigator$Extras; +Landroidx/navigation/fragment/FragmentNavigator; +Landroidx/navigation/fragment/NavHostFragment$Companion; +Landroidx/navigation/fragment/NavHostFragment; +PLandroidx/navigation/fragment/NavHostFragment;->onDestroyView()V +HSPLandroidx/navigation/fragment/R$styleable;-><clinit>()V +Landroidx/navigation/fragment/R$styleable; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..9f87706746c7fbdde93454c63db7c7235f9cd75b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..50cc6337f609dde686d43d4654903b76fd7d7b04 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..316ba1c3b8a08a6d73196d5f8d9666b2e05acce1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/145/jl/res/values/values.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="sliding_pane_detail_pane_width">300dp</dimen> + <item name="nav_host_fragment_container" type="id"/> + <item name="sliding_pane_detail_container" type="id"/> + <item name="sliding_pane_layout" type="id"/> + <declare-styleable name="DialogFragmentNavigator"> + <attr name="android:name"/> + </declare-styleable> + <declare-styleable name="FragmentNavigator"> + <attr name="android:name"/> + </declare-styleable> + <declare-styleable name="NavHostFragment"> + <attr format="boolean" name="defaultNavHost"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/146.stamp new file mode 100644 index 0000000000000000000000000000000000000000..7d4933884366ed8eb37768513fb7ef6feebfa985 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/146.stamp @@ -0,0 +1 @@ +FAF6F3C1A66F47A5 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..d1b554d50e65960ca3eea02e0d62f328db058ccf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.livedata" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..e052f99604f3b4a917bc24d5ee78af5fd5e21c18 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/baseline-prof.txt @@ -0,0 +1,25 @@ +# Baseline profiles for lifecycle-livedata + +HSPLandroidx/lifecycle/MediatorLiveData$Source;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V +HSPLandroidx/lifecycle/MediatorLiveData;-><init>()V +HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V +HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V +HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/Transformations$1;-><init>(Landroidx/lifecycle/MediatorLiveData;Landroidx/arch/core/util/Function;)V +HSPLandroidx/lifecycle/Transformations$1;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/Transformations$2$1;-><init>(Landroidx/lifecycle/Transformations$2;)V +HSPLandroidx/lifecycle/Transformations$2$1;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/Transformations$2;-><init>(Landroidx/arch/core/util/Function;Landroidx/lifecycle/MediatorLiveData;)V +HSPLandroidx/lifecycle/Transformations$2;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/Transformations;->map(Landroidx/lifecycle/LiveData;Landroidx/arch/core/util/Function;)Landroidx/lifecycle/LiveData; +HSPLandroidx/lifecycle/Transformations;->switchMap(Landroidx/lifecycle/LiveData;Landroidx/arch/core/util/Function;)Landroidx/lifecycle/LiveData; +Landroidx/lifecycle/MediatorLiveData$Source; +Landroidx/lifecycle/MediatorLiveData; +Landroidx/lifecycle/Transformations$1; +Landroidx/lifecycle/Transformations$2$1; +Landroidx/lifecycle/Transformations$2; +Landroidx/lifecycle/Transformations; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..07b7738146fd3dd51a5fc95caf2dabbc486e307b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..ceab8f344a4aa10e31caad52e9e33589464d1476 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/146/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/147.stamp new file mode 100644 index 0000000000000000000000000000000000000000..f15bacd2dae35854196c35cee8dd5e23d8da6b02 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/147.stamp @@ -0,0 +1 @@ +5E23A5E1EC6C0855 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..0880284eece1511e809588117f15bb08cce5c69d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.exifinterface" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="30" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..d8560bd4e22fad481a9d1edd484574bd157147f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,2 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..a798ec3031ad4cd1a6667f15a8709b814d8decbf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..359e0020bd26e5254344b4f572c8afa48d99aa9f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/147/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/148.stamp new file mode 100644 index 0000000000000000000000000000000000000000..00c48c9a7b4094669520978acd0b41a9671498b8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148.stamp @@ -0,0 +1 @@ +3197EC1254CC04D7 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..4ee7e718fd4513f0efc94a61088354da933530ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.browser" > + + <uses-sdk android:minSdkVersion="16" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..30b2aa805b8c5038088906d111341d62228f788a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/R.txt @@ -0,0 +1,18 @@ +int color browser_actions_bg_grey 0x0 +int color browser_actions_divider_color 0x0 +int color browser_actions_text_color 0x0 +int color browser_actions_title_color 0x0 +int dimen browser_actions_context_menu_max_width 0x0 +int dimen browser_actions_context_menu_min_padding 0x0 +int id browser_actions_header_text 0x0 +int id browser_actions_menu_item_icon 0x0 +int id browser_actions_menu_item_text 0x0 +int id browser_actions_menu_items 0x0 +int id browser_actions_menu_view 0x0 +int layout browser_actions_context_menu_page 0x0 +int layout browser_actions_context_menu_row 0x0 +int string copy_toast_msg 0x0 +int string fallback_menu_item_copy_link 0x0 +int string fallback_menu_item_open_in_browser 0x0 +int string fallback_menu_item_share_link 0x0 +int xml image_share_filepaths 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..0936cb1fe500770cd29eb630b1762d8890058233 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..a4f4d3e4c36e966f81c8f294d3a317cfda084be7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..609153b2d5a7326f7cb23369e2e86c594cbf41ef Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_page.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_page.xml new file mode 100644 index 0000000000000000000000000000000000000000..14360879db7fff55622ec4c8b08ddac5c0dadfd4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_page.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License +--> + +<androidx.browser.browseractions.BrowserActionsFallbackMenuView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/browser_actions_menu_view" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + android:minWidth="280dp" + android:layout_gravity="center" + android:background="@color/browser_actions_bg_grey"> + <TextView + android:id="@+id/browser_actions_header_text" + android:layout_marginBottom="10dp" + android:layout_marginTop="10dp" + android:paddingStart="20dp" + android:paddingEnd="20dp" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center" + android:maxLines="1" + android:textSize="13sp" + android:textStyle="bold" + android:ellipsize="end" + android:textColor="@color/browser_actions_title_color" /> + <View + android:layout_width="match_parent" + android:layout_height="1dp" + android:background="@color/browser_actions_divider_color" /> + <ListView + android:id="@+id/browser_actions_menu_items" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="8dp" + android:paddingBottom="8dp" + android:dividerHeight="0dp" + android:divider="@null" /> +</androidx.browser.browseractions.BrowserActionsFallbackMenuView> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_row.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_row.xml new file mode 100644 index 0000000000000000000000000000000000000000..54605033b19d325af19c03a0180cfde041dad484 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/layout/browser_actions_context_menu_row.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingStart="15dp" + android:paddingEnd="15dp" + android:minHeight="48dp"> + <TextView + android:id="@+id/browser_actions_menu_item_text" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:layout_marginStart="10dp" + android:layout_marginLeft="10dp" + android:layout_weight="1" + android:textSize="15sp" + android:textColor="@color/browser_actions_text_color" /> + <ImageView + android:id="@+id/browser_actions_menu_item_icon" + android:layout_width="20dp" + android:layout_height="match_parent" + android:paddingTop="8dp" + android:paddingBottom="8dp" + android:scaleType="centerInside" + android:contentDescription="@null" /> +</LinearLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-af/values-af.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..bf7d47356b1b987a17547e798b00bff1fb18c8d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-af/values-af.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Skakel is na knipbord gekopieer"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopieer skakel"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Maak in blaaier oop"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Deel skakel"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-am/values-am.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..7e3e1617a554c66ee6ed94f1cd174ad034da7e55 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-am/values-am.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"አገናአወደ ቅንጥብ ሰሌዳ ተቀድቷáˆ"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"አገናአቅዳ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"በአሳሽ á‹áˆµáŒ¥ áŠáˆá‰µ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"አገናአአጋራ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ar/values-ar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..a428edfa73072202a1ab17a76247bbd15806d9fa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ar/values-ar.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"تم نسخ الرابط إلى Ø§Ù„ØØ§Ùظة."</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"نسخ الرابط"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ÙØªØ ÙÙŠ Ø§Ù„Ù…ØªØµÙØ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"مشاركة الرابط"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-as/values-as.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..52e4ea793c6b42abbea81dc6b342c7c54a29539c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-as/values-as.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"লিংক কà§à¦²à¦¿à¦ªà¦¬â€™à§°à§à¦¡à¦¤ পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰা হ’ল"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"লিংক পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰক"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"বà§à§°à¦¾à¦‰à¦œà¦¾à§°à¦¤ খোলক"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"লিংক শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-az/values-az.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..d76ae47d3a01455f749df187ab5acd48d72872ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-az/values-az.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link buferÉ™ kopyalandı"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Linki kopyalayın"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"BrauzerdÉ™ açın"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Linki paylaşın"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..2dc6c3795a5c5def8f5e83a953025f202879ab50 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link je kopiran u privremenu memoriju"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiraj link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Otvori u pregledaÄu"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Deli link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-be/values-be.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..fee7dabd683ecb3284e51e7d94eb3a30007e9035 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-be/values-be.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"СпаÑылка Ñкапіравана Ñž буфер абмену"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Скапіраваць ÑпаÑылку"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ðдкрыць у браўзеры"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Ðбагуліць ÑпаÑылку"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bg/values-bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..78524fd8028149345116507226f2e2f65dee572b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bg/values-bg.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Връзката е копирана в буферната памет"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Копиране на връзката"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ОтварÑне в браузър"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"СподелÑне на връзката"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bn/values-bn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..203feea1e7fb4b1649d1b9c4523eaa16041685ad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bn/values-bn.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"লিঙà§à¦• কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ কপি করা হয়েছে"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"লিঙà§à¦• কপি করà§à¦¨"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"বà§à¦°à¦¾à¦‰à¦œà¦¾à¦°à§‡ খà§à¦²à§à¦¨"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"লিঙà§à¦• শেয়ার করà§à¦¨"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bs/values-bs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..563715826c88970b6c8dec61230d258f59fb96ed --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-bs/values-bs.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link je kopiran u meÄ‘umemoriju"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiraj link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Otvori u pregledniku"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Dijeli link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ca/values-ca.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b95390e0403d3fd4795f88c8b44ff5f668c5356 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ca/values-ca.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"S\'ha copiat l\'enllaç al porta-retalls"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copia l\'enllaç"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Obre al navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Comparteix l\'enllaç"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-cs/values-cs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea55b040c463ffa545f2dda8f439b50b2e634129 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-cs/values-cs.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Odkaz zkopÃrován do schránky"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"KopÃrovat odkaz"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"OtevÅ™Ãt v prohlÞeÄi"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"SdÃlet odkaz"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-da/values-da.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..39ecd2e4d516789fddcbf663c3eeb104d97692b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-da/values-da.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Linket er kopieret til udklipsholderen"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiér link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ã…bn i browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Del link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-de/values-de.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..b390be902f40f5b368dc90dffb837b111eb420e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-de/values-de.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link in Zwischenablage kopiert"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Link kopieren"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Im Browser öffnen"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Link teilen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-el/values-el.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..2eabc5edbcdf3664e022c07b05367ae72eed1f3c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-el/values-el.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Ο σÏνδεσμος αντιγÏάφηκε στο Ï€ÏόχειÏο"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ΑντιγÏαφή συνδÎσμου"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Άνοιγμα σε Ï€ÏόγÏαμμα πεÏιήγησης"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Κοινοποίηση συνδÎσμου"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rAU/values-en-rAU.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..a04605bf8b641fb049020b6af95878ee41358790 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copied to clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copy link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Open in browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Share link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rCA/values-en-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..a04605bf8b641fb049020b6af95878ee41358790 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copied to clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copy link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Open in browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Share link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rGB/values-en-rGB.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..a04605bf8b641fb049020b6af95878ee41358790 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copied to clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copy link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Open in browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Share link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rIN/values-en-rIN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..a04605bf8b641fb049020b6af95878ee41358790 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copied to clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copy link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Open in browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Share link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rXC/values-en-rXC.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000000000000000000000000000000000000..214aee2e06e335e2ee9d8e9234c601ff4c1b1dd8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽLink copied to clipboard‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€ŽCopy link‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€ŽOpen in browser‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€ŽShare link‎â€â€Žâ€Žâ€â€Ž"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es-rUS/values-es-rUS.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..5262b79f1a9811bdbb02587541e8f835ccfad1ae --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Se copió el vÃnculo al portapapeles"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar vÃnculo"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir en el navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Compartir vÃnculo"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es/values-es.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..d79c64c01e079e93d7bc4bd9c81dd0359179ba83 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-es/values-es.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Enlace copiado en el portapapeles"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar enlace"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir en el navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Compartir enlace"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-et/values-et.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..11caa0dde8a5ab22f9703f97d80ae41c78e841a8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-et/values-et.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link kopeeriti lõikelauale"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopeeri link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ava brauseris"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Jaga linki"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-eu/values-eu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0ad99e7e2d728a1b4460103620db75f973e6168 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-eu/values-eu.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Arbelean kopiatu da esteka"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiatu esteka"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ireki arakatzailean"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Partekatu esteka"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fa/values-fa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..ee4ac7024dbff1c46f5fe76eaf5534f1f2316cca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fa/values-fa.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"پیوند در بریده‌دان Ú©Ù¾ÛŒ شد"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Ú©Ù¾ÛŒ پیوند"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"بازکردن در مرورگر"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"هم‌رسانی پیوند"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fi/values-fi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..95af154854f107d17bcfe81d38efb808d26c2419 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fi/values-fi.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Linkki kopioitu leikepöydälle"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopioi linkki"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Avaa selaimessa"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Jaa linkki"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr-rCA/values-fr-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4dce39ae3873ec41e847a0f946d593e5d52422f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Lien copié dans le presse-papiers"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copier le lien"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ouvrir dans le navigateur"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Partager le lien"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr/values-fr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..66f0639d1012b6c2392f04443f0ddb4d5b3ac302 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-fr/values-fr.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Lien copié dans le presse-papiers"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copier le lien"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ouvrir dans un navigateur"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Partager le lien"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gl/values-gl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..146f33e6bf4a207a2b32a33817995a0bdd3742e3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gl/values-gl.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Copiouse a ligazón no portapapeis"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar ligazón"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir no navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Compartir ligazón"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gu/values-gu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..3401bd97f03518ce2b5d09910d4280c33fef8759 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-gu/values-gu.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"કà«àª²àª¿àªªàª¬à«‹àª°à«àª¡ પર લિંક કૉપિ કરી"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"લિંક કૉપિ કરો"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"બà«àª°àª¾àª‰àªàª°àª®àª¾àª‚ ખોલો"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"લિંક શેર કરો"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hi/values-hi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..5a039d9f71f3ede86f67689f85b9c8208fe4a8e1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hi/values-hi.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ पर कॉपी किया गया"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"लिंक कॉपी करें"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"बà¥à¤°à¤¾à¤‰à¤œà¤¼à¤° में खोलें"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"लिंक शेयर करें"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hr/values-hr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c7288d12d042307c29afe426f9610cb52eb9f5d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hr/values-hr.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Veza je kopirana u meÄ‘uspremnik"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiraj vezu"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Otvori u pregledniku"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Podijeli vezu"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hu/values-hu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..c9e90255f9f33bed81077b710af744a04e230eef --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hu/values-hu.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link vágólapra másolva"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Link másolása"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Megnyitás böngészÅ‘ben"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Link megosztása"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hy/values-hy.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..74326d4a5db6dd98738c47e895cb4b86f665311e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-hy/values-hy.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Õ€Õ²Õ¸Ö‚Õ´Õ¨ ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¾Õ¥Ö Õ½Õ¥Õ²Õ´Õ¡Õ¿Õ¡ÕÕ¿Õ¡Õ¯Õ«Õ¶"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ÕŠÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¨"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ô²Õ¡ÖÕ¥Õ¬ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ¸Ö‚Õ´"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Ô¿Õ«Õ½Õ¾Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¸Õ¾"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-in/values-in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..0db7bc57f4ebe3e770601b7801a3722ab9aea90d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-in/values-in.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link disalin ke papan klip"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Salin link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Buka di browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Bagikan link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-is/values-is.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b46c4356c87083e80ebf82fd9aba544bd885294 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-is/values-is.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Tengill afritaður á klippiborð"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Afrita tengil"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Opna à vafra"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Deila tengli"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-it/values-it.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5e5ed453ab1b45ff00d6c33f4ea4ee90491f794 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-it/values-it.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copiato negli appunti"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copia link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Apri nel browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Condividi link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-iw/values-iw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..35aa7a848f559933285d8c5cf414a934afceb77d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-iw/values-iw.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"הקישור הועתק ללוח"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"העתקת הקישור"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"פתיחה בדפדפן"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"לשיתוף הקישור"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ja/values-ja.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..abead53c32e80ba069d3b898b8c066e0cb993d6d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ja/values-ja.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"リンクをクリップボードã«ã‚³ãƒ”ーã—ã¾ã—ãŸ"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"リンクをコピー"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ブラウザã§é–‹ã"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"リンクã®å…±æœ‰"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ka/values-ka.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ca6e1756804accf1f53c8a7c11d6a51799609f3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ka/values-ka.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"გáƒáƒªáƒ•ლის ბუფერში კáƒáƒžáƒ˜áƒ ებული ბმული"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ბმულის კáƒáƒžáƒ˜áƒ ებáƒ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ბრáƒáƒ£áƒ–ერში გáƒáƒ®áƒ¡áƒœáƒ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ბმულის გáƒáƒ–იáƒáƒ ებáƒ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kk/values-kk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a0315e90eb7752d3b4dc69902af69c21424b8b8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kk/values-kk.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Сілтеме буферге көшірілді."</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Сілтемені көшіру"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Браузерден ашу"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Сілтемені бөліÑу"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-km/values-km.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..bb8dd141ef60fed2255b8e9c44202f8abf914987 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-km/values-km.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"បាន​ចម្លង​ážáŸ†ážŽâ€‹áž‘ៅឃ្លីបបáž"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ចម្លង​ážáŸ†ážŽ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"បើក​នៅក្នុង​កម្មវិធី​រុករកážáž¶áž˜â€‹áž¢áŸŠáž¸áž“ធឺណិáž"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ážáŸ†ážŽáž…ែករំលែក"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kn/values-kn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..5403bfade23832b1b3b6ca6868cdfe4ec67036cd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-kn/values-kn.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ಕà³à²²à²¿à²ªà³â€Œà²¬à³‹à²°à³à²¡à³â€Œà²—ೆ ಲಿಂಕೠಅನà³à²¨à³ ನಕಲಿಸಲಾಗಿದೆ"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ಲಿಂಕೠನಕಲಿಸಿ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ಬà³à²°à³Œà²¸à²°à³â€Œà²¨à²²à³à²²à²¿ ತೆರೆಯಿರಿ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ಲಿಂಕೠಹಂಚಿರಿ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ko/values-ko.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..78ba03c16dae97d9e85e8a95a8c5ca9c57df3a51 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ko/values-ko.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"í´ë¦½ë³´ë“œì— ë§í¬ 복사ë¨"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ë§í¬ 복사"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"브ë¼ìš°ì €ì—서 열기"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ë§í¬ ê³µìœ "</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ky/values-ky.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..a73804e45b68808cc7d170790e5935e7c48e86b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ky/values-ky.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Шилтеме буферге көчүрүлдү"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Шилтемени көчүрүү"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Серепчиден ачуу"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Шилтемени бөлүшүү"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lo/values-lo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lo/values-lo.xml new file mode 100644 index 0000000000000000000000000000000000000000..53076aea6e736975b5e84c856122fd80375c9848 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lo/values-lo.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ສຳເນົາລິ້ງໃສ່ຄລິບບàºàº”à»àº¥à»‰àº§"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ສຳເນົາລິ້ງ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ເປີດໃນໂປຣà»àºàº£àº¡àº—່àºàº‡à»€àº§àº±àºš"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"à»àºšà»ˆàº‡àº›àº±àº™àº¥àº´à»‰àº‡"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lt/values-lt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lt/values-lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..f315f2559cdc52213aafe3405b71271483b6d888 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lt/values-lt.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Nuoroda nukopijuota į iÅ¡karpinÄ™"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopijuoti nuorodÄ…"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Atidaryti narÅ¡yklÄ—je"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Bendrinti nuorodÄ…"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lv/values-lv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lv/values-lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..abb13e2686996f42b6b6feac782421851ea96ce4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-lv/values-lv.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Saite ir kopÄ“ta starpliktuvÄ“."</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"KopÄ“t saiti"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"AtvÄ“rt pÄrlÅ«kprogrammÄ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"KopÄ«got saiti"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mk/values-mk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mk/values-mk.xml new file mode 100644 index 0000000000000000000000000000000000000000..f2b196a25a22bf1cc25627fc2eba2baa51f2c2d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mk/values-mk.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Линкот е копиран во привремена меморија"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Копирај го линкот"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Отвори во прелиÑтувач"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Сподели линк"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ml/values-ml.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ml/values-ml.xml new file mode 100644 index 0000000000000000000000000000000000000000..1082ce88287aaa5f010e0907614a515da9850e90 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ml/values-ml.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"à´•àµà´²à´¿à´ªàµà´ªàµâ€Œà´¬àµ‹àµ¼à´¡à´¿à´²àµ‡à´•àµà´•ൠലിങàµà´•ൠപകർതàµà´¤à´¿"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ലിങàµà´•ൠപകർതàµà´¤àµà´•"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"à´¬àµà´°àµ—സറിൽ à´¤àµà´±à´•àµà´•àµà´•"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ലിങàµà´•ൠപങàµà´•à´¿à´Ÿàµà´•"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mn/values-mn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mn/values-mn.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ab8cfca7c782272cb6601a64b17e37c8c306a92 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mn/values-mn.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ХолбооÑыг түр Ñанах ойд хуулÑан"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ХолбооÑыг хуулах"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Хөтчид нÑÑÑ…"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ХолбооÑыг хуваалцах"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mr/values-mr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mr/values-mr.xml new file mode 100644 index 0000000000000000000000000000000000000000..a43f229d0ee15a0c64261c2d8be0e52f8048ff7d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-mr/values-mr.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° कॉपी केली"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"लिंक कॉपी करा"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"बà¥à¤°à¤¾à¤‰à¤à¤°à¤®à¤§à¥à¤¯à¥‡ उघडा"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"लिंक शेअर करा"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ms/values-ms.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ms/values-ms.xml new file mode 100644 index 0000000000000000000000000000000000000000..57d1f5c612f450c0412e82cbc1990d8992b7faa2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ms/values-ms.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Pautan disalin ke papan keratan"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Salin pautan"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Buka dalam penyemak imbas"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Kongsi pautan"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-my/values-my.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-my/values-my.xml new file mode 100644 index 0000000000000000000000000000000000000000..4981820cec5f5e0482d2b3a122ce4ab67282a7bd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-my/values-my.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"လင့်á€á€ºá€€á€á€¯ ကလစ်ဘုá€á€ºá€žá€á€¯á€· ကူးပြီးပါပြီ"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"လင့်á€á€ºá€€á€á€¯ ကူးယူရန်"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ဘရောင်ဇာá€á€½á€„် ဖွင့်ရန်"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"လင့်á€á€ºá€€á€á€¯ မျှá€á€±á€›á€”်"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nb/values-nb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nb/values-nb.xml new file mode 100644 index 0000000000000000000000000000000000000000..3403121ca09560adc91d176e1f21ed82c9ef5b02 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nb/values-nb.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Linken er kopiert til utklippstavlen"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiér linken"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Ã…pne i nettleseren"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Del link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ne/values-ne.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ne/values-ne.xml new file mode 100644 index 0000000000000000000000000000000000000000..71b8b93ee0c1b0a389692d8a363637925748e521 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ne/values-ne.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤®à¤¾ लिंक पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरियो"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"लिंक पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"बà¥à¤°à¤¾à¤‰à¤œà¤°à¤®à¤¾ खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"लिंक सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nl/values-nl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nl/values-nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..51351dc98485decc27f9ecfa1a77b7839a356292 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-nl/values-nl.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link naar klembord gekopieerd"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Link kopiëren"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Openen in browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Link delen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-or/values-or.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-or/values-or.xml new file mode 100644 index 0000000000000000000000000000000000000000..43638c13c9b61abab63279c2cc2ee511abd4a1e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-or/values-or.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ଲିଙàକକà କàଲିପàâ€â€à¬¬à‹à¬°àà¬¡à¬°à‡ à¬•à¬ªà¬¿ କରାଯାଇଛି"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ଲିଙàକà କପି କରନàତà"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ବàରାଉଜରàâ€Œà¬°à‡ à¬–à‹à¬²à¬¨àତà"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ଲିଙàକà ସà‡àŸà¬¾à¬°à କରନàତà"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pa/values-pa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pa/values-pa.xml new file mode 100644 index 0000000000000000000000000000000000000000..f37beac9d703ecb0e118ab874560d2b2ba6f6835 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pa/values-pa.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ਲਿੰਕ ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਹੋ ਗਿਆ"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"ਲਿੰਕ ਕਾਪੀ ਕਰੋ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"ਬà©à¨°à¨¾à¨Šà¨œà¨¼à¨° ਵਿੱਚ ਖੋਲà©à¨¹à©‹"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ਲਿੰਕ ਸਾਂà¨à¨¾ ਕਰੋ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pl/values-pl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pl/values-pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..adc36e2c5443816df8aa65306a734f951d6759d5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pl/values-pl.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link skopiowany do schowka"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiuj link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Otwórz w przeglÄ…darce"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"UdostÄ™pnij link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rBR/values-pt-rBR.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rBR/values-pt-rBR.xml new file mode 100644 index 0000000000000000000000000000000000000000..e916e402f8a47bfcfaff4f19c904846bf74e9726 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rBR/values-pt-rBR.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copiado para a área de transferência"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir no navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Compartilhar link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rPT/values-pt-rPT.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 0000000000000000000000000000000000000000..785a26b3a34566bffc10fbd8d1849382497a82e1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copiado para a área de transferência."</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir no navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Partilhar link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt/values-pt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt/values-pt.xml new file mode 100644 index 0000000000000000000000000000000000000000..e916e402f8a47bfcfaff4f19c904846bf74e9726 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-pt/values-pt.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Link copiado para a área de transferência"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiar link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Abrir no navegador"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Compartilhar link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ro/values-ro.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ro/values-ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..5758284907eb1151a4e236428e56ffb96e1a675b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ro/values-ro.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Linkul a fost copiat în clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Copiază linkul"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Deschide în browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Trimite linkul"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ru/values-ru.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ru/values-ru.xml new file mode 100644 index 0000000000000000000000000000000000000000..5934db3f61ad98e53b5a4e1e7f45aaa2d97a1b0c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ru/values-ru.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"СÑылка Ñкопирована в буфер обмена."</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Копировать ÑÑылку"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Открыть в браузере"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Отправить ÑÑылку"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-si/values-si.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-si/values-si.xml new file mode 100644 index 0000000000000000000000000000000000000000..eb5860346063baaa861aec2f5608dcee5f217e85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-si/values-si.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"සබà·à¶³à·’ය පසුරු පුවරුවට à¶´à·’à¶§à¶´à¶à·Š කෙරිණි"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"සබà·à¶³à·’ය à¶´à·’à¶§à¶´à¶à·Š කරන්න"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"à¶¶à·Šâ€à¶»à·€à·Šà·ƒà¶»à¶ºà·š විවෘචකරන්න"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"සබà·à¶³à·’ය බෙද෠ගන්න"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sk/values-sk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sk/values-sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..577221a16643ab58d510b7b0ae21c23fbc5f572f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sk/values-sk.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Odkaz bol skopÃrovaný do schránky"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"KopÃrovaÅ¥ odkaz"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"OtvoriÅ¥ v prehliadaÄi"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ZdieľaÅ¥ odkaz"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sl/values-sl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sl/values-sl.xml new file mode 100644 index 0000000000000000000000000000000000000000..238e306eb62a3e123e27ee69da3c61ad620496be --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sl/values-sl.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Povezava je kopirana v odložiÅ¡Äe"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiraj povezavo"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Odpri v brskalniku"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Deli povezavo"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sq/values-sq.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sq/values-sq.xml new file mode 100644 index 0000000000000000000000000000000000000000..af03313bca1c36af00689c7bcebecb0d55404fc6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sq/values-sq.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Lidhja u kopjua në kujtesën e fragmenteve"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopjo lidhjen"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Hape në shfletues"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Ndaj lidhjen"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sr/values-sr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sr/values-sr.xml new file mode 100644 index 0000000000000000000000000000000000000000..028236a5909b622bf25e394e080fabc63d44e84f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sr/values-sr.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Линк је копиран у привремену меморију"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Копирај линк"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Отвори у прегледачу"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Дели линк"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sv/values-sv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sv/values-sv.xml new file mode 100644 index 0000000000000000000000000000000000000000..b63e801a68eab4201bf774bcd7c036e8fb0252a9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sv/values-sv.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Länk kopierad till Urklipp"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopiera länk"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Öppna i webbläsaren"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Dela länk"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sw/values-sw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sw/values-sw.xml new file mode 100644 index 0000000000000000000000000000000000000000..3876f9f5252a973775cf818bdb94a68f32a24422 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-sw/values-sw.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Imenakili kiungo kwenye ubao wa kunakili"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Nakili kiungo"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Fungua katika kivinjari"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Shiriki kiungo"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ta/values-ta.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..1b49e29aa26b26060274b430193e51edd406dfce --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ta/values-ta.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"கிளிபà¯-போரà¯à®Ÿà¯à®•à¯à®•௠இணைபà¯à®ªà¯ நகலெடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"இணைபà¯à®ªà¯ˆ நகலெடà¯"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"உலாவியில௠திற"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"இணைபà¯à®ªà¯ˆà®ªà¯ பகிரà¯"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-te/values-te.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad8f5653ab9d7b6acd535b5914d9b1033d9d0424 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-te/values-te.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"à°•à±à°²à°¿à°ªà±â€Œà°¬à±‹à°°à±à°¡à±â€Œà°•ౠలింకౠకాపీ చేయబడింది"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"లింకà±â€Œà°¨à± కాపీ చేయి"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"à°¬à±à°°à±Œà°œà°°à±â€Œà°²à±‹ తెరà±à°µà±"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"లింకà±â€Œà°¨à± షేరౠచేయి"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-th/values-th.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..45583318d0d3e0fff508d272dc5625fc89dec616 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-th/values-th.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œà¹„ปยังคลิปบà¸à¸£à¹Œà¸”à¹à¸¥à¹‰à¸§"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"เปิดในเบราว์เซà¸à¸£à¹Œ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"à¹à¸Šà¸£à¹Œà¸¥à¸´à¸‡à¸à¹Œ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tl/values-tl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b273e72817865afd6e2176bb3c686d111530e40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tl/values-tl.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Nakopya sa clipboard ang link"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopyahin ang link"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Buksan sa browser"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Ibahagi ang link"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tr/values-tr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..5b95ab5dade95c8efd9ec5ed13b6eda7d3817f14 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-tr/values-tr.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"BaÄŸlantı panoya kopyalandı"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"BaÄŸlantıyı kopyala"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Tarayıcıda aç"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"BaÄŸlantıyı paylaÅŸ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uk/values-uk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..518ad7a69653319e33bdc2adf5ae145186685b07 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uk/values-uk.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñкопійовано в буфер обміну"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Копіювати поÑиланнÑ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Відкрити у веб-переглÑдачі"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"ÐадіÑлати поÑиланнÑ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ur/values-ur.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ccebba7119c04e5dfe83cd860145faacf9493eb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-ur/values-ur.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"لنک کلپ بورڈ پر کاپی ÛÙˆ گیا"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"لنک کاپی کریں"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"براؤزر میں کھولیں"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"لنک کا اشتراک کریں"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uz/values-uz.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..39bce73b29f6856f2f2aea38a9a72dbf134e7a81 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-uz/values-uz.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Havoladan vaqtinchalik xotiraga nusxa olindi"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Havoladan nusxa olish"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Brauzerda ochish"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Havolani ulashish"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-vi/values-vi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..d7ef1d5339f0ea85ca8b04d080abf0ba8121d5e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-vi/values-vi.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Äã sao chép đưá»ng liên kết và o bảng nhá»› tạm"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Sao chép đưá»ng liên kết"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Mở trong trình duyệt"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Chia sẻ liên kết"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rCN/values-zh-rCN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd139b2cf2c9e6f03dac44655aa5a8905ac91c64 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"链接已å¤åˆ¶åˆ°å‰ªè´´æ¿"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"å¤åˆ¶é“¾æŽ¥"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"在æµè§ˆå™¨ä¸æ‰“å¼€"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"分享链接"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rHK/values-zh-rHK.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..e126d1a9cc17065098f0b0c58f0ce6b379e51b60 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"連çµå·²è¤‡è£½åˆ°å‰ªè²¼ç°¿"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"複製連çµ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"在ç€è¦½å™¨ä¸é–‹å•Ÿ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"分享連çµ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rTW/values-zh-rTW.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..910bf8a688341c8f9043ed456613daefaa139d86 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"已將連çµè¤‡è£½åˆ°å‰ªè²¼ç°¿"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"複製連çµ"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"在ç€è¦½å™¨ä¸é–‹å•Ÿ"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"分享連çµ"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zu/values-zu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..8528266aba4a7177193a88c94807a251ef1dc99c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values-zu/values-zu.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="3260749812566568062" name="copy_toast_msg">"Isixhumanisi sikopishelwe ku-clipboard"</string> + <string msgid="4566929209979330987" name="fallback_menu_item_copy_link">"Kopisha isixhumanisi"</string> + <string msgid="3413186855122069269" name="fallback_menu_item_open_in_browser">"Vula kusiphequluli"</string> + <string msgid="7145444925855055364" name="fallback_menu_item_share_link">"Yabelana ngesixhumanisi"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..c6a6632c9de759a988e42eb40cf8b476a73d9292 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/values/values.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="browser_actions_bg_grey">#F5F5F5</color> + <color name="browser_actions_divider_color">#1E000000</color> + <color name="browser_actions_text_color">#DE000000</color> + <color name="browser_actions_title_color">#646464</color> + <dimen name="browser_actions_context_menu_max_width">500dp</dimen> + <dimen name="browser_actions_context_menu_min_padding">20dp</dimen> + <string name="copy_toast_msg">Link copied to clipboard</string> + <string name="fallback_menu_item_copy_link">Copy link</string> + <string name="fallback_menu_item_open_in_browser">Open in browser</string> + <string name="fallback_menu_item_share_link">Share link</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/xml/image_share_filepaths.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/xml/image_share_filepaths.xml new file mode 100644 index 0000000000000000000000000000000000000000..123fde9e757ab013315cb6f4c0cd640c870ee2e8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/148/jl/res/xml/image_share_filepaths.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License +--> + +<paths> + <files-path path="image_provider/" name="image_provider_images" /> +</paths> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/149.stamp new file mode 100644 index 0000000000000000000000000000000000000000..fc77ab3d94f945a19b526c706a2254a4fe069902 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/149.stamp @@ -0,0 +1 @@ +218A894517C9769A \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..5945416305bfdbd032914626df76cb32c8170588 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/AndroidManifest.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.bumptech.glide.gifdecoder" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="32" /> + + <application /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..8c9c6997a33bb9da672e8e423470e724a66b23bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..03ea2ba86dcf4abc998168b29f287c5147947d1e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..b0ef9548dd984cfc5de294810443cd25e1649220 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/149/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/150.stamp new file mode 100644 index 0000000000000000000000000000000000000000..9ca7c58c05b26beb483d3849a8d1daecbf613568 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150.stamp @@ -0,0 +1 @@ +8DE01C9116FAB5DB \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b7b879de57a69a10cc7d1be395a4d1daca958d20 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/AndroidManifest.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.bumptech.glide" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="32" /> + + <application /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..8c9c6997a33bb9da672e8e423470e724a66b23bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..037225adc4153fde82ef9785e3fc38a7ffb59727 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/R.txt @@ -0,0 +1,1683 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 +int anim btn_checkbox_to_checked_icon_null_animation 0x0 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 +int anim fragment_fast_out_extra_slow_in 0x0 +int animator fragment_close_enter 0x0 +int animator fragment_close_exit 0x0 +int animator fragment_fade_enter 0x0 +int animator fragment_fade_exit 0x0 +int animator fragment_open_enter 0x0 +int animator fragment_open_exit 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseContentDescription 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeTheme 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionViewClass 0x0 +int attr activityChooserViewStyle 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alpha 0x0 +int attr alphabeticModifiers 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr background 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr barLength 0x0 +int attr borderlessButtonStyle 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonCompat 0x0 +int attr buttonGravity 0x0 +int attr buttonIconDimen 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr checkboxStyle 0x0 +int attr checkedTextViewStyle 0x0 +int attr closeIcon 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryDark 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr commitIcon 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr controlBackground 0x0 +int attr customNavigationLayout 0x0 +int attr defaultQueryHint 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerHorizontal 0x0 +int attr dividerPadding 0x0 +int attr dividerVertical 0x0 +int attr drawableBottomCompat 0x0 +int attr drawableEndCompat 0x0 +int attr drawableLeftCompat 0x0 +int attr drawableRightCompat 0x0 +int attr drawableSize 0x0 +int attr drawableStartCompat 0x0 +int attr drawableTint 0x0 +int attr drawableTintMode 0x0 +int attr drawableTopCompat 0x0 +int attr drawerArrowStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr font 0x0 +int attr fontFamily 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr gapBetweenBars 0x0 +int attr goIcon 0x0 +int attr height 0x0 +int attr hideOnContentScroll 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr icon 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr imageButtonStyle 0x0 +int attr indeterminateProgressStyle 0x0 +int attr initialActivityCount 0x0 +int attr isLightTheme 0x0 +int attr itemPadding 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr layout 0x0 +int attr lineHeight 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listChoiceIndicatorMultipleAnimated 0x0 +int attr listChoiceIndicatorSingleAnimated 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingEnd 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr listPreferredItemPaddingStart 0x0 +int attr logo 0x0 +int attr logoDescription 0x0 +int attr maxButtonHeight 0x0 +int attr measureWithLargestChild 0x0 +int attr menu 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationMode 0x0 +int attr numericModifiers 0x0 +int attr overlapAnchor 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingEnd 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr preserveIconSpacing 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr radioButtonStyle 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchViewStyle 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr showAsAction 0x0 +int attr showDividers 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr singleChoiceItemLayout 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitTrack 0x0 +int attr srcCompat 0x0 +int attr state_above_anchor 0x0 +int attr subMenuArrow 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr textLocale 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr title 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextStyle 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipText 0x0 +int attr track 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr ttcIndex 0x0 +int attr viewInflaterClass 0x0 +int attr voiceIcon 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_decor_view_status_guard 0x0 +int color abc_decor_view_status_guard_light 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_height_large_material 0x0 +int dimen abc_list_item_height_material 0x0 +int dimen abc_list_item_height_small_material 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_star_big 0x0 +int dimen abc_star_medium 0x0 +int dimen abc_star_small 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_material_anim 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_material_anim 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_star_black_48dp 0x0 +int drawable abc_star_half_black_48dp 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl 0x0 +int drawable abc_text_select_handle_middle_mtrl 0x0 +int drawable abc_text_select_handle_right_mtrl 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable abc_vector_test 0x0 +int drawable btn_checkbox_checked_mtrl 0x0 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 +int drawable btn_checkbox_unchecked_mtrl 0x0 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 +int drawable btn_radio_off_mtrl 0x0 +int drawable btn_radio_off_to_on_mtrl_animation 0x0 +int drawable btn_radio_on_mtrl 0x0 +int drawable btn_radio_on_to_off_mtrl_animation 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_container 0x0 +int id action_context_bar 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id action_text 0x0 +int id actions 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id alertTitle 0x0 +int id async 0x0 +int id blocking 0x0 +int id buttonPanel 0x0 +int id checkbox 0x0 +int id checked 0x0 +int id chronometer 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id dialog_button 0x0 +int id edit_query 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id forever 0x0 +int id fragment_container_view_tag 0x0 +int id glide_custom_view_target_tag 0x0 +int id group_divider 0x0 +int id home 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id image 0x0 +int id info 0x0 +int id italic 0x0 +int id line1 0x0 +int id line3 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id message 0x0 +int id multiply 0x0 +int id none 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id off 0x0 +int id on 0x0 +int id parentPanel 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id shortcut 0x0 +int id spacer 0x0 +int id special_effects_controller_view_tag 0x0 +int id split_action_bar 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 0x0 +int id text 0x0 +int id text2 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id time 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id topPanel 0x0 +int id unchecked 0x0 +int id uniform 0x0 +int id up 0x0 +int id view_tree_lifecycle_owner 0x0 +int id view_tree_saved_state_registry_owner 0x0 +int id view_tree_view_model_store_owner 0x0 +int id visible_removing_fragment_view_tag 0x0 +int id wrap_content 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 +int interpolator fast_out_slow_in 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string search_menu_title 0x0 +int string status_bar_notification_info_overflow 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_DayNight 0x0 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Empty 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..2302d388181ece8669f24b497b2ec9d9e0a87c74 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..272578ad6585a7000c07c9b6f2200d7863dd6122 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/proguard.txt @@ -0,0 +1,14 @@ +-keep public class * implements com.bumptech.glide.module.GlideModule +-keep class * extends com.bumptech.glide.module.AppGlideModule { + <init>(...); +} +-keep public enum com.bumptech.glide.load.ImageHeaderParser$** { + **[] $VALUES; + public *; +} +-keep class com.bumptech.glide.load.data.ParcelFileDescriptorRewinder$InternalRewinder { + *** rewind(); +} + +# Uncomment for DexGuard only +#-keepresourcexmlelements manifest/application/meta-data@value=GlideModule diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..ae146e48f03a166570924534e289e0f7deda4548 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..53047cb3ab296250aaee77bd099f6e59cc6952c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/150/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <item name="glide_custom_view_target_tag" type="id"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/151.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/151.stamp new file mode 100644 index 0000000000000000000000000000000000000000..2f96bc027762d9a40d12c2d466c6d2317cb5a596 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/151.stamp @@ -0,0 +1 @@ +B13172CC6AB8B8B6 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/151/jl/libs/ED64959F88B22E6D.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/151/jl/libs/ED64959F88B22E6D.jar new file mode 100644 index 0000000000000000000000000000000000000000..a88c5bd9b5f17af70ab9601a781388418e0b772f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/151/jl/libs/ED64959F88B22E6D.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/152.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/152.stamp new file mode 100644 index 0000000000000000000000000000000000000000..00b48fc5eb73487054140c89140f235352d51a54 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/152.stamp @@ -0,0 +1 @@ +EA6ABC79C604A6B9 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/152/jl/libs/2E7FD15AFA9B216B.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/152/jl/libs/2E7FD15AFA9B216B.jar new file mode 100644 index 0000000000000000000000000000000000000000..59222d9ca5e5654f5dcf6680783d0e265baa848f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/152/jl/libs/2E7FD15AFA9B216B.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/153.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e185736a5cb32d74d83aeca5a38fb04e391eaf22 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153.stamp @@ -0,0 +1 @@ +AC6FD9E8E1F596A5 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/.net/__res_name_case_map.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/.net/__res_name_case_map.txt new file mode 100644 index 0000000000000000000000000000000000000000..d541ea202de5028726cc0cd3f34afbac921fa04e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/.net/__res_name_case_map.txt @@ -0,0 +1,4 @@ +Android/Resources/layout/Tabbar.axml;layout/tabbar.xml +Android/Resources/layout/Toolbar.axml;layout/toolbar.xml +Android/Resources/values/styles.xml;values/styles.xml +Android/Resources/values/attrs.xml;values/attrs.xml diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..8d20ef3bc66139cf287e1d0bfd4155f05f1203f2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/tabbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/tabbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..1101edce79397051dd1b9f40bfa2f2a6847a3640 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/tabbar.xml @@ -0,0 +1 @@ +<com.google.android.material.tabs.TabLayout android:id="@+id/sliding_tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" app:tabIndicatorColor="@android:color/white" app:tabGravity="fill" app:tabMode="fixed" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/toolbar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/toolbar.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1bccbca0f621cee81f52c5329923c8a7c57c97 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/layout/toolbar.xml @@ -0,0 +1 @@ +<com.google.android.material.appbar.MaterialToolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" android:popupTheme="@style/ThemeOverlay.AppCompat.Light" xmlns:android="http://schemas.android.com/apk/res/android" /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/attrs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/attrs.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce0d05150c752a984f4d42f01955a665ae3705cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/attrs.xml @@ -0,0 +1,4 @@ +<resources xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><!-- + This defines the collectionViewStyle attribute so that we can use it + to add the scrollbars style to the CollectionView/CarouselView renderers. + --><declare-styleable name="ItemsViewRendererTheme"><attr name="collectionViewStyle" format="reference" /></declare-styleable><declare-styleable name="ScrollViewRendererTheme"><attr name="scrollViewStyle" format="reference" /></declare-styleable></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/styles.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..f10f3880d39bcf1005e59dd15da693714afac1bb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/153/jl/res/values/styles.xml @@ -0,0 +1,10 @@ +<resources xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><!-- + The collectionViewScrollBars style will be used as the default style for ItemsViewRenderer (the base renderer + for CollectionView and CarouselView. We have to use a style to set up the scrollbars because there is currently + no way to add them via code. + + When the renderer is created, we wrap its Context's theme with collectionViewTheme; that way, the + collectionViewScrollBars style will be defined. With the style defined (and with the collectionViewStyle + attribute defined in attrs.xml), we can apply the collectionViewScrollBars style explicitly to the renderer we are + creating (and avoid forcing every child control to have scrollbars). + --><style name="scrollViewScrollBars"><item name="android:scrollbars">vertical|horizontal</item></style><style name="collectionViewTheme"><item name="collectionViewStyle">@style/scrollViewScrollBars</item></style><style name="scrollViewTheme"><item name="scrollViewStyle">@style/scrollViewScrollBars</item></style></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/154.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1e10b442f3a5279a0d5cdaad525d3792aadc3cff --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154.stamp @@ -0,0 +1 @@ +32EC4E62A9D9B6C6 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/.net/__res_name_case_map.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/.net/__res_name_case_map.txt new file mode 100644 index 0000000000000000000000000000000000000000..0af947fed42a3795b02a36fd2a41f2b076a68c50 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/.net/__res_name_case_map.txt @@ -0,0 +1,12 @@ +anim/enterfromleft.xml;anim/enterfromleft.xml +anim/enterfromright.xml;anim/enterfromright.xml +anim/exittoleft.xml;anim/exittoleft.xml +anim/exittoright.xml;anim/exittoright.xml +values/strings.xml;values/strings.xml +anim/enterfromleft.xml;anim/enterfromleft.xml +anim/enterfromright.xml;anim/enterfromright.xml +anim/exittoleft.xml;anim/exittoleft.xml +anim/exittoright.xml;anim/exittoright.xml +values/strings.xml;values/strings.xml +Compatibility/Android/Resources/layout/flyoutcontent.axml;layout/flyoutcontent.xml +Compatibility/Android/Resources/layout/shellcontent.axml;layout/shellcontent.xml diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..984484a0db51dafb0e854152f0a5ce3024d397fb Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromleft.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromleft.xml new file mode 100644 index 0000000000000000000000000000000000000000..c15559ab40bc45a12857f3140d05246b04d83afa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromleft.xml @@ -0,0 +1 @@ +<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android"><alpha android:duration="250" android:fromAlpha="0.6" android:toAlpha="1" /><translate android:fromXDelta="-50%" android:toXDelta="0%" android:duration="250" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromright.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromright.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ad8ff2c0b2103aa39b053ad60be9384448f4ab8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/enterfromright.xml @@ -0,0 +1 @@ +<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="100%" android:toXDelta="0%" android:duration="250" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoleft.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoleft.xml new file mode 100644 index 0000000000000000000000000000000000000000..d850289f8bd7060c63027e7ecc4b76034b6823ec --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoleft.xml @@ -0,0 +1 @@ +<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android"><alpha android:duration="250" android:fromAlpha="1" android:toAlpha="0.6" /><translate android:fromXDelta="0%" android:toXDelta="-50%" android:duration="250" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoright.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoright.xml new file mode 100644 index 0000000000000000000000000000000000000000..e0f282c949ef63306f994c3015c92be7bfc488d0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/anim/exittoright.xml @@ -0,0 +1 @@ +<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="0%" android:toXDelta="100%" android:duration="250" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/flyoutcontent.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/flyoutcontent.xml new file mode 100644 index 0000000000000000000000000000000000000000..780563899385f3f19c97b6aeed1ff00e369844a4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/flyoutcontent.xml @@ -0,0 +1 @@ +<microsoft.maui.controls.platform.compatibility.ShellFlyoutLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/background_light" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><com.google.android.material.appbar.AppBarLayout android:id="@+id/flyoutcontent_appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@null" app:elevation="0dp" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" /></microsoft.maui.controls.platform.compatibility.ShellFlyoutLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/shellcontent.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/shellcontent.xml new file mode 100644 index 0000000000000000000000000000000000000000..60e7d93e58a17a0a20d14b90b367f17c8c988fef --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/layout/shellcontent.xml @@ -0,0 +1 @@ +<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><com.google.android.material.appbar.AppBarLayout android:id="@+id/shellcontent.appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"></com.google.android.material.appbar.AppBarLayout></androidx.coordinatorlayout.widget.CoordinatorLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/values/strings.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/values/strings.xml new file mode 100644 index 0000000000000000000000000000000000000000..91d40413bad6b1745ae6d3f5acba2ac6b6dac082 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/154/jl/res/values/strings.xml @@ -0,0 +1 @@ +<resources><string name="overflow_tab_title">More</string></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/155.stamp new file mode 100644 index 0000000000000000000000000000000000000000..9cb1f241e4aed25b9c742774980ff0b4edb44590 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/155.stamp @@ -0,0 +1 @@ +64D9F36F8C70DF63 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..06908bd6d5491e95c07dca7fbc0572f1cc8e4cd9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.microsoft.maui" > + + <uses-sdk android:minSdkVersion="21" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..776557e15040f328aece9b575aa71186a0cd4431 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dc542bbc9b7e3a75a77ff8201d13c0a51425108 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/R.txt @@ -0,0 +1,6608 @@ +int anim abc_fade_in 0x0 +int anim abc_fade_out 0x0 +int anim abc_grow_fade_in_from_bottom 0x0 +int anim abc_popup_enter 0x0 +int anim abc_popup_exit 0x0 +int anim abc_shrink_fade_out_from_bottom 0x0 +int anim abc_slide_in_bottom 0x0 +int anim abc_slide_in_top 0x0 +int anim abc_slide_out_bottom 0x0 +int anim abc_slide_out_top 0x0 +int anim abc_tooltip_enter 0x0 +int anim abc_tooltip_exit 0x0 +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 +int anim btn_checkbox_to_checked_icon_null_animation 0x0 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 +int anim design_bottom_sheet_slide_in 0x0 +int anim design_bottom_sheet_slide_out 0x0 +int anim design_snackbar_in 0x0 +int anim design_snackbar_out 0x0 +int anim fragment_fast_out_extra_slow_in 0x0 +int anim linear_indeterminate_line1_head_interpolator 0x0 +int anim linear_indeterminate_line1_tail_interpolator 0x0 +int anim linear_indeterminate_line2_head_interpolator 0x0 +int anim linear_indeterminate_line2_tail_interpolator 0x0 +int anim m3_bottom_sheet_slide_in 0x0 +int anim m3_bottom_sheet_slide_out 0x0 +int anim m3_motion_fade_enter 0x0 +int anim m3_motion_fade_exit 0x0 +int anim m3_side_sheet_slide_in 0x0 +int anim m3_side_sheet_slide_out 0x0 +int anim mtrl_bottom_sheet_slide_in 0x0 +int anim mtrl_bottom_sheet_slide_out 0x0 +int anim mtrl_card_lowers_interpolator 0x0 +int animator design_appbar_state_list_animator 0x0 +int animator design_fab_hide_motion_spec 0x0 +int animator design_fab_show_motion_spec 0x0 +int animator fragment_close_enter 0x0 +int animator fragment_close_exit 0x0 +int animator fragment_fade_enter 0x0 +int animator fragment_fade_exit 0x0 +int animator fragment_open_enter 0x0 +int animator fragment_open_exit 0x0 +int animator m3_appbar_state_list_animator 0x0 +int animator m3_btn_elevated_btn_state_list_anim 0x0 +int animator m3_btn_state_list_anim 0x0 +int animator m3_card_elevated_state_list_anim 0x0 +int animator m3_card_state_list_anim 0x0 +int animator m3_chip_state_list_anim 0x0 +int animator m3_elevated_chip_state_list_anim 0x0 +int animator m3_extended_fab_change_size_collapse_motion_spec 0x0 +int animator m3_extended_fab_change_size_expand_motion_spec 0x0 +int animator m3_extended_fab_hide_motion_spec 0x0 +int animator m3_extended_fab_show_motion_spec 0x0 +int animator m3_extended_fab_state_list_animator 0x0 +int animator mtrl_btn_state_list_anim 0x0 +int animator mtrl_btn_unelevated_state_list_anim 0x0 +int animator mtrl_card_state_list_anim 0x0 +int animator mtrl_chip_state_list_anim 0x0 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x0 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x0 +int animator mtrl_extended_fab_hide_motion_spec 0x0 +int animator mtrl_extended_fab_show_motion_spec 0x0 +int animator mtrl_extended_fab_state_list_animator 0x0 +int animator mtrl_fab_hide_motion_spec 0x0 +int animator mtrl_fab_show_motion_spec 0x0 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x0 +int animator mtrl_fab_transformation_sheet_expand_spec 0x0 +int attr actionBarDivider 0x0 +int attr actionBarItemBackground 0x0 +int attr actionBarPopupTheme 0x0 +int attr actionBarSize 0x0 +int attr actionBarSplitStyle 0x0 +int attr actionBarStyle 0x0 +int attr actionBarTabBarStyle 0x0 +int attr actionBarTabStyle 0x0 +int attr actionBarTabTextStyle 0x0 +int attr actionBarTheme 0x0 +int attr actionBarWidgetTheme 0x0 +int attr actionButtonStyle 0x0 +int attr actionDropDownStyle 0x0 +int attr actionLayout 0x0 +int attr actionMenuTextAppearance 0x0 +int attr actionMenuTextColor 0x0 +int attr actionModeBackground 0x0 +int attr actionModeCloseButtonStyle 0x0 +int attr actionModeCloseContentDescription 0x0 +int attr actionModeCloseDrawable 0x0 +int attr actionModeCopyDrawable 0x0 +int attr actionModeCutDrawable 0x0 +int attr actionModeFindDrawable 0x0 +int attr actionModePasteDrawable 0x0 +int attr actionModePopupWindowStyle 0x0 +int attr actionModeSelectAllDrawable 0x0 +int attr actionModeShareDrawable 0x0 +int attr actionModeSplitBackground 0x0 +int attr actionModeStyle 0x0 +int attr actionModeTheme 0x0 +int attr actionModeWebSearchDrawable 0x0 +int attr actionOverflowButtonStyle 0x0 +int attr actionOverflowMenuStyle 0x0 +int attr actionProviderClass 0x0 +int attr actionTextColorAlpha 0x0 +int attr actionViewClass 0x0 +int attr activityAction 0x0 +int attr activityChooserViewStyle 0x0 +int attr activityName 0x0 +int attr addElevationShadow 0x0 +int attr alertDialogButtonGroupStyle 0x0 +int attr alertDialogCenterButtons 0x0 +int attr alertDialogStyle 0x0 +int attr alertDialogTheme 0x0 +int attr allowStacking 0x0 +int attr alpha 0x0 +int attr alphabeticModifiers 0x0 +int attr altSrc 0x0 +int attr alwaysExpand 0x0 +int attr animateMenuItems 0x0 +int attr animateNavigationIcon 0x0 +int attr animate_relativeTo 0x0 +int attr animationBackgroundColor 0x0 +int attr animationMode 0x0 +int attr appBarLayoutStyle 0x0 +int attr applyMotionScene 0x0 +int attr arcMode 0x0 +int attr arrowHeadLength 0x0 +int attr arrowShaftLength 0x0 +int attr attributeName 0x0 +int attr autoCompleteTextViewStyle 0x0 +int attr autoShowKeyboard 0x0 +int attr autoSizeMaxTextSize 0x0 +int attr autoSizeMinTextSize 0x0 +int attr autoSizePresetSizes 0x0 +int attr autoSizeStepGranularity 0x0 +int attr autoSizeTextType 0x0 +int attr autoTransition 0x0 +int attr background 0x0 +int attr backgroundColor 0x0 +int attr backgroundInsetBottom 0x0 +int attr backgroundInsetEnd 0x0 +int attr backgroundInsetStart 0x0 +int attr backgroundInsetTop 0x0 +int attr backgroundOverlayColorAlpha 0x0 +int attr backgroundSplit 0x0 +int attr backgroundStacked 0x0 +int attr backgroundTint 0x0 +int attr backgroundTintMode 0x0 +int attr badgeGravity 0x0 +int attr badgeHeight 0x0 +int attr badgeRadius 0x0 +int attr badgeShapeAppearance 0x0 +int attr badgeShapeAppearanceOverlay 0x0 +int attr badgeStyle 0x0 +int attr badgeTextAppearance 0x0 +int attr badgeTextColor 0x0 +int attr badgeWidePadding 0x0 +int attr badgeWidth 0x0 +int attr badgeWithTextHeight 0x0 +int attr badgeWithTextRadius 0x0 +int attr badgeWithTextShapeAppearance 0x0 +int attr badgeWithTextShapeAppearanceOverlay 0x0 +int attr badgeWithTextWidth 0x0 +int attr barLength 0x0 +int attr barrierAllowsGoneWidgets 0x0 +int attr barrierDirection 0x0 +int attr barrierMargin 0x0 +int attr behavior_autoHide 0x0 +int attr behavior_autoShrink 0x0 +int attr behavior_draggable 0x0 +int attr behavior_expandedOffset 0x0 +int attr behavior_fitToContents 0x0 +int attr behavior_halfExpandedRatio 0x0 +int attr behavior_hideable 0x0 +int attr behavior_overlapTop 0x0 +int attr behavior_peekHeight 0x0 +int attr behavior_saveFlags 0x0 +int attr behavior_significantVelocityThreshold 0x0 +int attr behavior_skipCollapsed 0x0 +int attr borderWidth 0x0 +int attr borderlessButtonStyle 0x0 +int attr bottomAppBarStyle 0x0 +int attr bottomInsetScrimEnabled 0x0 +int attr bottomNavigationStyle 0x0 +int attr bottomSheetDialogTheme 0x0 +int attr bottomSheetDragHandleStyle 0x0 +int attr bottomSheetStyle 0x0 +int attr boxBackgroundColor 0x0 +int attr boxBackgroundMode 0x0 +int attr boxCollapsedPaddingTop 0x0 +int attr boxCornerRadiusBottomEnd 0x0 +int attr boxCornerRadiusBottomStart 0x0 +int attr boxCornerRadiusTopEnd 0x0 +int attr boxCornerRadiusTopStart 0x0 +int attr boxStrokeColor 0x0 +int attr boxStrokeErrorColor 0x0 +int attr boxStrokeWidth 0x0 +int attr boxStrokeWidthFocused 0x0 +int attr brightness 0x0 +int attr buttonBarButtonStyle 0x0 +int attr buttonBarNegativeButtonStyle 0x0 +int attr buttonBarNeutralButtonStyle 0x0 +int attr buttonBarPositiveButtonStyle 0x0 +int attr buttonBarStyle 0x0 +int attr buttonCompat 0x0 +int attr buttonGravity 0x0 +int attr buttonIcon 0x0 +int attr buttonIconDimen 0x0 +int attr buttonIconTint 0x0 +int attr buttonIconTintMode 0x0 +int attr buttonPanelSideLayout 0x0 +int attr buttonStyle 0x0 +int attr buttonStyleSmall 0x0 +int attr buttonTint 0x0 +int attr buttonTintMode 0x0 +int attr cardBackgroundColor 0x0 +int attr cardCornerRadius 0x0 +int attr cardElevation 0x0 +int attr cardForegroundColor 0x0 +int attr cardMaxElevation 0x0 +int attr cardPreventCornerOverlap 0x0 +int attr cardUseCompatPadding 0x0 +int attr cardViewStyle 0x0 +int attr centerIfNoTextEnabled 0x0 +int attr chainUseRtl 0x0 +int attr checkMarkCompat 0x0 +int attr checkMarkTint 0x0 +int attr checkMarkTintMode 0x0 +int attr checkboxStyle 0x0 +int attr checkedButton 0x0 +int attr checkedChip 0x0 +int attr checkedIcon 0x0 +int attr checkedIconEnabled 0x0 +int attr checkedIconGravity 0x0 +int attr checkedIconMargin 0x0 +int attr checkedIconSize 0x0 +int attr checkedIconTint 0x0 +int attr checkedIconVisible 0x0 +int attr checkedState 0x0 +int attr checkedTextViewStyle 0x0 +int attr chipBackgroundColor 0x0 +int attr chipCornerRadius 0x0 +int attr chipEndPadding 0x0 +int attr chipGroupStyle 0x0 +int attr chipIcon 0x0 +int attr chipIconEnabled 0x0 +int attr chipIconSize 0x0 +int attr chipIconTint 0x0 +int attr chipIconVisible 0x0 +int attr chipMinHeight 0x0 +int attr chipMinTouchTargetSize 0x0 +int attr chipSpacing 0x0 +int attr chipSpacingHorizontal 0x0 +int attr chipSpacingVertical 0x0 +int attr chipStandaloneStyle 0x0 +int attr chipStartPadding 0x0 +int attr chipStrokeColor 0x0 +int attr chipStrokeWidth 0x0 +int attr chipStyle 0x0 +int attr chipSurfaceColor 0x0 +int attr circleRadius 0x0 +int attr circularProgressIndicatorStyle 0x0 +int attr clearTop 0x0 +int attr clickAction 0x0 +int attr clockFaceBackgroundColor 0x0 +int attr clockHandColor 0x0 +int attr clockIcon 0x0 +int attr clockNumberTextColor 0x0 +int attr closeIcon 0x0 +int attr closeIconEnabled 0x0 +int attr closeIconEndPadding 0x0 +int attr closeIconSize 0x0 +int attr closeIconStartPadding 0x0 +int attr closeIconTint 0x0 +int attr closeIconVisible 0x0 +int attr closeItemLayout 0x0 +int attr collapseContentDescription 0x0 +int attr collapseIcon 0x0 +int attr collapsedSize 0x0 +int attr collapsedTitleGravity 0x0 +int attr collapsedTitleTextAppearance 0x0 +int attr collapsedTitleTextColor 0x0 +int attr collapsingToolbarLayoutLargeSize 0x0 +int attr collapsingToolbarLayoutLargeStyle 0x0 +int attr collapsingToolbarLayoutMediumSize 0x0 +int attr collapsingToolbarLayoutMediumStyle 0x0 +int attr collapsingToolbarLayoutStyle 0x0 +int attr color 0x0 +int attr colorAccent 0x0 +int attr colorBackgroundFloating 0x0 +int attr colorButtonNormal 0x0 +int attr colorContainer 0x0 +int attr colorControlActivated 0x0 +int attr colorControlHighlight 0x0 +int attr colorControlNormal 0x0 +int attr colorError 0x0 +int attr colorErrorContainer 0x0 +int attr colorOnBackground 0x0 +int attr colorOnContainer 0x0 +int attr colorOnContainerUnchecked 0x0 +int attr colorOnError 0x0 +int attr colorOnErrorContainer 0x0 +int attr colorOnPrimary 0x0 +int attr colorOnPrimaryContainer 0x0 +int attr colorOnPrimaryFixed 0x0 +int attr colorOnPrimaryFixedVariant 0x0 +int attr colorOnPrimarySurface 0x0 +int attr colorOnSecondary 0x0 +int attr colorOnSecondaryContainer 0x0 +int attr colorOnSecondaryFixed 0x0 +int attr colorOnSecondaryFixedVariant 0x0 +int attr colorOnSurface 0x0 +int attr colorOnSurfaceInverse 0x0 +int attr colorOnSurfaceVariant 0x0 +int attr colorOnTertiary 0x0 +int attr colorOnTertiaryContainer 0x0 +int attr colorOnTertiaryFixed 0x0 +int attr colorOnTertiaryFixedVariant 0x0 +int attr colorOutline 0x0 +int attr colorOutlineVariant 0x0 +int attr colorPrimary 0x0 +int attr colorPrimaryContainer 0x0 +int attr colorPrimaryDark 0x0 +int attr colorPrimaryFixed 0x0 +int attr colorPrimaryFixedDim 0x0 +int attr colorPrimaryInverse 0x0 +int attr colorPrimarySurface 0x0 +int attr colorPrimaryVariant 0x0 +int attr colorSecondary 0x0 +int attr colorSecondaryContainer 0x0 +int attr colorSecondaryFixed 0x0 +int attr colorSecondaryFixedDim 0x0 +int attr colorSecondaryVariant 0x0 +int attr colorSurface 0x0 +int attr colorSurfaceBright 0x0 +int attr colorSurfaceContainer 0x0 +int attr colorSurfaceContainerHigh 0x0 +int attr colorSurfaceContainerHighest 0x0 +int attr colorSurfaceContainerLow 0x0 +int attr colorSurfaceContainerLowest 0x0 +int attr colorSurfaceDim 0x0 +int attr colorSurfaceInverse 0x0 +int attr colorSurfaceVariant 0x0 +int attr colorSwitchThumbNormal 0x0 +int attr colorTertiary 0x0 +int attr colorTertiaryContainer 0x0 +int attr colorTertiaryFixed 0x0 +int attr colorTertiaryFixedDim 0x0 +int attr commitIcon 0x0 +int attr compatShadowEnabled 0x0 +int attr constraintSet 0x0 +int attr constraintSetEnd 0x0 +int attr constraintSetStart 0x0 +int attr constraint_referenced_ids 0x0 +int attr constraints 0x0 +int attr content 0x0 +int attr contentDescription 0x0 +int attr contentInsetEnd 0x0 +int attr contentInsetEndWithActions 0x0 +int attr contentInsetLeft 0x0 +int attr contentInsetRight 0x0 +int attr contentInsetStart 0x0 +int attr contentInsetStartWithNavigation 0x0 +int attr contentPadding 0x0 +int attr contentPaddingBottom 0x0 +int attr contentPaddingEnd 0x0 +int attr contentPaddingLeft 0x0 +int attr contentPaddingRight 0x0 +int attr contentPaddingStart 0x0 +int attr contentPaddingTop 0x0 +int attr contentScrim 0x0 +int attr contrast 0x0 +int attr controlBackground 0x0 +int attr coordinatorLayoutStyle 0x0 +int attr coplanarSiblingViewId 0x0 +int attr cornerFamily 0x0 +int attr cornerFamilyBottomLeft 0x0 +int attr cornerFamilyBottomRight 0x0 +int attr cornerFamilyTopLeft 0x0 +int attr cornerFamilyTopRight 0x0 +int attr cornerRadius 0x0 +int attr cornerSize 0x0 +int attr cornerSizeBottomLeft 0x0 +int attr cornerSizeBottomRight 0x0 +int attr cornerSizeTopLeft 0x0 +int attr cornerSizeTopRight 0x0 +int attr counterEnabled 0x0 +int attr counterMaxLength 0x0 +int attr counterOverflowTextAppearance 0x0 +int attr counterOverflowTextColor 0x0 +int attr counterTextAppearance 0x0 +int attr counterTextColor 0x0 +int attr crossfade 0x0 +int attr currentState 0x0 +int attr curveFit 0x0 +int attr customBoolean 0x0 +int attr customColorDrawableValue 0x0 +int attr customColorValue 0x0 +int attr customDimension 0x0 +int attr customFloatValue 0x0 +int attr customIntegerValue 0x0 +int attr customNavigationLayout 0x0 +int attr customPixelDimension 0x0 +int attr customStringValue 0x0 +int attr dayInvalidStyle 0x0 +int attr daySelectedStyle 0x0 +int attr dayStyle 0x0 +int attr dayTodayStyle 0x0 +int attr defaultDuration 0x0 +int attr defaultMarginsEnabled 0x0 +int attr defaultQueryHint 0x0 +int attr defaultScrollFlagsEnabled 0x0 +int attr defaultState 0x0 +int attr deltaPolarAngle 0x0 +int attr deltaPolarRadius 0x0 +int attr deriveConstraintsFrom 0x0 +int attr dialogCornerRadius 0x0 +int attr dialogPreferredPadding 0x0 +int attr dialogTheme 0x0 +int attr displayOptions 0x0 +int attr divider 0x0 +int attr dividerColor 0x0 +int attr dividerHorizontal 0x0 +int attr dividerInsetEnd 0x0 +int attr dividerInsetStart 0x0 +int attr dividerPadding 0x0 +int attr dividerThickness 0x0 +int attr dividerVertical 0x0 +int attr dragDirection 0x0 +int attr dragScale 0x0 +int attr dragThreshold 0x0 +int attr drawPath 0x0 +int attr drawableBottomCompat 0x0 +int attr drawableEndCompat 0x0 +int attr drawableLeftCompat 0x0 +int attr drawableRightCompat 0x0 +int attr drawableSize 0x0 +int attr drawableStartCompat 0x0 +int attr drawableTint 0x0 +int attr drawableTintMode 0x0 +int attr drawableTopCompat 0x0 +int attr drawerArrowStyle 0x0 +int attr drawerLayoutCornerSize 0x0 +int attr drawerLayoutStyle 0x0 +int attr dropDownListViewStyle 0x0 +int attr dropdownListPreferredItemHeight 0x0 +int attr duration 0x0 +int attr dynamicColorThemeOverlay 0x0 +int attr editTextBackground 0x0 +int attr editTextColor 0x0 +int attr editTextStyle 0x0 +int attr elevation 0x0 +int attr elevationOverlayAccentColor 0x0 +int attr elevationOverlayColor 0x0 +int attr elevationOverlayEnabled 0x0 +int attr emojiCompatEnabled 0x0 +int attr enableEdgeToEdge 0x0 +int attr endIconCheckable 0x0 +int attr endIconContentDescription 0x0 +int attr endIconDrawable 0x0 +int attr endIconMinSize 0x0 +int attr endIconMode 0x0 +int attr endIconScaleType 0x0 +int attr endIconTint 0x0 +int attr endIconTintMode 0x0 +int attr enforceMaterialTheme 0x0 +int attr enforceTextAppearance 0x0 +int attr ensureMinTouchTargetSize 0x0 +int attr errorAccessibilityLabel 0x0 +int attr errorAccessibilityLiveRegion 0x0 +int attr errorContentDescription 0x0 +int attr errorEnabled 0x0 +int attr errorIconDrawable 0x0 +int attr errorIconTint 0x0 +int attr errorIconTintMode 0x0 +int attr errorShown 0x0 +int attr errorTextAppearance 0x0 +int attr errorTextColor 0x0 +int attr expandActivityOverflowButtonDrawable 0x0 +int attr expanded 0x0 +int attr expandedHintEnabled 0x0 +int attr expandedTitleGravity 0x0 +int attr expandedTitleMargin 0x0 +int attr expandedTitleMarginBottom 0x0 +int attr expandedTitleMarginEnd 0x0 +int attr expandedTitleMarginStart 0x0 +int attr expandedTitleMarginTop 0x0 +int attr expandedTitleTextAppearance 0x0 +int attr expandedTitleTextColor 0x0 +int attr extendMotionSpec 0x0 +int attr extendStrategy 0x0 +int attr extendedFloatingActionButtonPrimaryStyle 0x0 +int attr extendedFloatingActionButtonSecondaryStyle 0x0 +int attr extendedFloatingActionButtonStyle 0x0 +int attr extendedFloatingActionButtonSurfaceStyle 0x0 +int attr extendedFloatingActionButtonTertiaryStyle 0x0 +int attr extraMultilineHeightEnabled 0x0 +int attr fabAlignmentMode 0x0 +int attr fabAlignmentModeEndMargin 0x0 +int attr fabAnchorMode 0x0 +int attr fabAnimationMode 0x0 +int attr fabCradleMargin 0x0 +int attr fabCradleRoundedCornerRadius 0x0 +int attr fabCradleVerticalOffset 0x0 +int attr fabCustomSize 0x0 +int attr fabSize 0x0 +int attr fastScrollEnabled 0x0 +int attr fastScrollHorizontalThumbDrawable 0x0 +int attr fastScrollHorizontalTrackDrawable 0x0 +int attr fastScrollVerticalThumbDrawable 0x0 +int attr fastScrollVerticalTrackDrawable 0x0 +int attr finishPrimaryWithPlaceholder 0x0 +int attr finishPrimaryWithSecondary 0x0 +int attr finishSecondaryWithPrimary 0x0 +int attr firstBaselineToTopHeight 0x0 +int attr floatingActionButtonLargePrimaryStyle 0x0 +int attr floatingActionButtonLargeSecondaryStyle 0x0 +int attr floatingActionButtonLargeStyle 0x0 +int attr floatingActionButtonLargeSurfaceStyle 0x0 +int attr floatingActionButtonLargeTertiaryStyle 0x0 +int attr floatingActionButtonPrimaryStyle 0x0 +int attr floatingActionButtonSecondaryStyle 0x0 +int attr floatingActionButtonSmallPrimaryStyle 0x0 +int attr floatingActionButtonSmallSecondaryStyle 0x0 +int attr floatingActionButtonSmallStyle 0x0 +int attr floatingActionButtonSmallSurfaceStyle 0x0 +int attr floatingActionButtonSmallTertiaryStyle 0x0 +int attr floatingActionButtonStyle 0x0 +int attr floatingActionButtonSurfaceStyle 0x0 +int attr floatingActionButtonTertiaryStyle 0x0 +int attr flow_firstHorizontalBias 0x0 +int attr flow_firstHorizontalStyle 0x0 +int attr flow_firstVerticalBias 0x0 +int attr flow_firstVerticalStyle 0x0 +int attr flow_horizontalAlign 0x0 +int attr flow_horizontalBias 0x0 +int attr flow_horizontalGap 0x0 +int attr flow_horizontalStyle 0x0 +int attr flow_lastHorizontalBias 0x0 +int attr flow_lastHorizontalStyle 0x0 +int attr flow_lastVerticalBias 0x0 +int attr flow_lastVerticalStyle 0x0 +int attr flow_maxElementsWrap 0x0 +int attr flow_padding 0x0 +int attr flow_verticalAlign 0x0 +int attr flow_verticalBias 0x0 +int attr flow_verticalGap 0x0 +int attr flow_verticalStyle 0x0 +int attr flow_wrapMode 0x0 +int attr font 0x0 +int attr fontFamily 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr forceApplySystemWindowInsetTop 0x0 +int attr forceDefaultNavigationOnClickListener 0x0 +int attr foregroundInsidePadding 0x0 +int attr framePosition 0x0 +int attr gapBetweenBars 0x0 +int attr gestureInsetBottomIgnored 0x0 +int attr goIcon 0x0 +int attr haloColor 0x0 +int attr haloRadius 0x0 +int attr headerLayout 0x0 +int attr height 0x0 +int attr helperText 0x0 +int attr helperTextEnabled 0x0 +int attr helperTextTextAppearance 0x0 +int attr helperTextTextColor 0x0 +int attr hideAnimationBehavior 0x0 +int attr hideMotionSpec 0x0 +int attr hideNavigationIcon 0x0 +int attr hideOnContentScroll 0x0 +int attr hideOnScroll 0x0 +int attr hintAnimationEnabled 0x0 +int attr hintEnabled 0x0 +int attr hintTextAppearance 0x0 +int attr hintTextColor 0x0 +int attr homeAsUpIndicator 0x0 +int attr homeLayout 0x0 +int attr horizontalOffset 0x0 +int attr horizontalOffsetWithText 0x0 +int attr hoveredFocusedTranslationZ 0x0 +int attr icon 0x0 +int attr iconEndPadding 0x0 +int attr iconGravity 0x0 +int attr iconPadding 0x0 +int attr iconSize 0x0 +int attr iconStartPadding 0x0 +int attr iconTint 0x0 +int attr iconTintMode 0x0 +int attr iconifiedByDefault 0x0 +int attr imageButtonStyle 0x0 +int attr indeterminateAnimationType 0x0 +int attr indeterminateProgressStyle 0x0 +int attr indicatorColor 0x0 +int attr indicatorDirectionCircular 0x0 +int attr indicatorDirectionLinear 0x0 +int attr indicatorInset 0x0 +int attr indicatorSize 0x0 +int attr initialActivityCount 0x0 +int attr insetForeground 0x0 +int attr isLightTheme 0x0 +int attr isMaterial3DynamicColorApplied 0x0 +int attr isMaterial3Theme 0x0 +int attr isMaterialTheme 0x0 +int attr itemActiveIndicatorStyle 0x0 +int attr itemBackground 0x0 +int attr itemFillColor 0x0 +int attr itemHorizontalPadding 0x0 +int attr itemHorizontalTranslationEnabled 0x0 +int attr itemIconPadding 0x0 +int attr itemIconSize 0x0 +int attr itemIconTint 0x0 +int attr itemMaxLines 0x0 +int attr itemMinHeight 0x0 +int attr itemPadding 0x0 +int attr itemPaddingBottom 0x0 +int attr itemPaddingTop 0x0 +int attr itemRippleColor 0x0 +int attr itemShapeAppearance 0x0 +int attr itemShapeAppearanceOverlay 0x0 +int attr itemShapeFillColor 0x0 +int attr itemShapeInsetBottom 0x0 +int attr itemShapeInsetEnd 0x0 +int attr itemShapeInsetStart 0x0 +int attr itemShapeInsetTop 0x0 +int attr itemSpacing 0x0 +int attr itemStrokeColor 0x0 +int attr itemStrokeWidth 0x0 +int attr itemTextAppearance 0x0 +int attr itemTextAppearanceActive 0x0 +int attr itemTextAppearanceInactive 0x0 +int attr itemTextColor 0x0 +int attr itemVerticalPadding 0x0 +int attr keyPositionType 0x0 +int attr keyboardIcon 0x0 +int attr keylines 0x0 +int attr lStar 0x0 +int attr labelBehavior 0x0 +int attr labelStyle 0x0 +int attr labelVisibilityMode 0x0 +int attr lastBaselineToBottomHeight 0x0 +int attr lastItemDecorated 0x0 +int attr layout 0x0 +int attr layoutDescription 0x0 +int attr layoutDuringTransition 0x0 +int attr layoutManager 0x0 +int attr layout_anchor 0x0 +int attr layout_anchorGravity 0x0 +int attr layout_behavior 0x0 +int attr layout_collapseMode 0x0 +int attr layout_collapseParallaxMultiplier 0x0 +int attr layout_constrainedHeight 0x0 +int attr layout_constrainedWidth 0x0 +int attr layout_constraintBaseline_creator 0x0 +int attr layout_constraintBaseline_toBaselineOf 0x0 +int attr layout_constraintBottom_creator 0x0 +int attr layout_constraintBottom_toBottomOf 0x0 +int attr layout_constraintBottom_toTopOf 0x0 +int attr layout_constraintCircle 0x0 +int attr layout_constraintCircleAngle 0x0 +int attr layout_constraintCircleRadius 0x0 +int attr layout_constraintDimensionRatio 0x0 +int attr layout_constraintEnd_toEndOf 0x0 +int attr layout_constraintEnd_toStartOf 0x0 +int attr layout_constraintGuide_begin 0x0 +int attr layout_constraintGuide_end 0x0 +int attr layout_constraintGuide_percent 0x0 +int attr layout_constraintHeight_default 0x0 +int attr layout_constraintHeight_max 0x0 +int attr layout_constraintHeight_min 0x0 +int attr layout_constraintHeight_percent 0x0 +int attr layout_constraintHorizontal_bias 0x0 +int attr layout_constraintHorizontal_chainStyle 0x0 +int attr layout_constraintHorizontal_weight 0x0 +int attr layout_constraintLeft_creator 0x0 +int attr layout_constraintLeft_toLeftOf 0x0 +int attr layout_constraintLeft_toRightOf 0x0 +int attr layout_constraintRight_creator 0x0 +int attr layout_constraintRight_toLeftOf 0x0 +int attr layout_constraintRight_toRightOf 0x0 +int attr layout_constraintStart_toEndOf 0x0 +int attr layout_constraintStart_toStartOf 0x0 +int attr layout_constraintTag 0x0 +int attr layout_constraintTop_creator 0x0 +int attr layout_constraintTop_toBottomOf 0x0 +int attr layout_constraintTop_toTopOf 0x0 +int attr layout_constraintVertical_bias 0x0 +int attr layout_constraintVertical_chainStyle 0x0 +int attr layout_constraintVertical_weight 0x0 +int attr layout_constraintWidth_default 0x0 +int attr layout_constraintWidth_max 0x0 +int attr layout_constraintWidth_min 0x0 +int attr layout_constraintWidth_percent 0x0 +int attr layout_dodgeInsetEdges 0x0 +int attr layout_editor_absoluteX 0x0 +int attr layout_editor_absoluteY 0x0 +int attr layout_goneMarginBottom 0x0 +int attr layout_goneMarginEnd 0x0 +int attr layout_goneMarginLeft 0x0 +int attr layout_goneMarginRight 0x0 +int attr layout_goneMarginStart 0x0 +int attr layout_goneMarginTop 0x0 +int attr layout_insetEdge 0x0 +int attr layout_keyline 0x0 +int attr layout_optimizationLevel 0x0 +int attr layout_scrollEffect 0x0 +int attr layout_scrollFlags 0x0 +int attr layout_scrollInterpolator 0x0 +int attr liftOnScroll 0x0 +int attr liftOnScrollColor 0x0 +int attr liftOnScrollTargetViewId 0x0 +int attr limitBoundsTo 0x0 +int attr lineHeight 0x0 +int attr lineSpacing 0x0 +int attr linearProgressIndicatorStyle 0x0 +int attr listChoiceBackgroundIndicator 0x0 +int attr listChoiceIndicatorMultipleAnimated 0x0 +int attr listChoiceIndicatorSingleAnimated 0x0 +int attr listDividerAlertDialog 0x0 +int attr listItemLayout 0x0 +int attr listLayout 0x0 +int attr listMenuViewStyle 0x0 +int attr listPopupWindowStyle 0x0 +int attr listPreferredItemHeight 0x0 +int attr listPreferredItemHeightLarge 0x0 +int attr listPreferredItemHeightSmall 0x0 +int attr listPreferredItemPaddingEnd 0x0 +int attr listPreferredItemPaddingLeft 0x0 +int attr listPreferredItemPaddingRight 0x0 +int attr listPreferredItemPaddingStart 0x0 +int attr logo 0x0 +int attr logoAdjustViewBounds 0x0 +int attr logoDescription 0x0 +int attr logoScaleType 0x0 +int attr marginHorizontal 0x0 +int attr marginLeftSystemWindowInsets 0x0 +int attr marginRightSystemWindowInsets 0x0 +int attr marginTopSystemWindowInsets 0x0 +int attr materialAlertDialogBodyTextStyle 0x0 +int attr materialAlertDialogButtonSpacerVisibility 0x0 +int attr materialAlertDialogTheme 0x0 +int attr materialAlertDialogTitleIconStyle 0x0 +int attr materialAlertDialogTitlePanelStyle 0x0 +int attr materialAlertDialogTitleTextStyle 0x0 +int attr materialButtonOutlinedStyle 0x0 +int attr materialButtonStyle 0x0 +int attr materialButtonToggleGroupStyle 0x0 +int attr materialCalendarDay 0x0 +int attr materialCalendarDayOfWeekLabel 0x0 +int attr materialCalendarFullscreenTheme 0x0 +int attr materialCalendarHeaderCancelButton 0x0 +int attr materialCalendarHeaderConfirmButton 0x0 +int attr materialCalendarHeaderDivider 0x0 +int attr materialCalendarHeaderLayout 0x0 +int attr materialCalendarHeaderSelection 0x0 +int attr materialCalendarHeaderTitle 0x0 +int attr materialCalendarHeaderToggleButton 0x0 +int attr materialCalendarMonth 0x0 +int attr materialCalendarMonthNavigationButton 0x0 +int attr materialCalendarStyle 0x0 +int attr materialCalendarTheme 0x0 +int attr materialCalendarYearNavigationButton 0x0 +int attr materialCardViewElevatedStyle 0x0 +int attr materialCardViewFilledStyle 0x0 +int attr materialCardViewOutlinedStyle 0x0 +int attr materialCardViewStyle 0x0 +int attr materialCircleRadius 0x0 +int attr materialClockStyle 0x0 +int attr materialDisplayDividerStyle 0x0 +int attr materialDividerHeavyStyle 0x0 +int attr materialDividerStyle 0x0 +int attr materialIconButtonFilledStyle 0x0 +int attr materialIconButtonFilledTonalStyle 0x0 +int attr materialIconButtonOutlinedStyle 0x0 +int attr materialIconButtonStyle 0x0 +int attr materialSearchBarStyle 0x0 +int attr materialSearchViewPrefixStyle 0x0 +int attr materialSearchViewStyle 0x0 +int attr materialSwitchStyle 0x0 +int attr materialThemeOverlay 0x0 +int attr materialTimePickerStyle 0x0 +int attr materialTimePickerTheme 0x0 +int attr materialTimePickerTitleStyle 0x0 +int attr maxAcceleration 0x0 +int attr maxActionInlineWidth 0x0 +int attr maxButtonHeight 0x0 +int attr maxCharacterCount 0x0 +int attr maxHeight 0x0 +int attr maxImageSize 0x0 +int attr maxLines 0x0 +int attr maxVelocity 0x0 +int attr maxWidth 0x0 +int attr measureWithLargestChild 0x0 +int attr menu 0x0 +int attr menuAlignmentMode 0x0 +int attr menuGravity 0x0 +int attr minHeight 0x0 +int attr minHideDelay 0x0 +int attr minSeparation 0x0 +int attr minTouchTargetSize 0x0 +int attr minWidth 0x0 +int attr mock_diagonalsColor 0x0 +int attr mock_label 0x0 +int attr mock_labelBackgroundColor 0x0 +int attr mock_labelColor 0x0 +int attr mock_showDiagonals 0x0 +int attr mock_showLabel 0x0 +int attr motionDebug 0x0 +int attr motionDurationExtraLong1 0x0 +int attr motionDurationExtraLong2 0x0 +int attr motionDurationExtraLong3 0x0 +int attr motionDurationExtraLong4 0x0 +int attr motionDurationLong1 0x0 +int attr motionDurationLong2 0x0 +int attr motionDurationLong3 0x0 +int attr motionDurationLong4 0x0 +int attr motionDurationMedium1 0x0 +int attr motionDurationMedium2 0x0 +int attr motionDurationMedium3 0x0 +int attr motionDurationMedium4 0x0 +int attr motionDurationShort1 0x0 +int attr motionDurationShort2 0x0 +int attr motionDurationShort3 0x0 +int attr motionDurationShort4 0x0 +int attr motionEasingAccelerated 0x0 +int attr motionEasingDecelerated 0x0 +int attr motionEasingEmphasized 0x0 +int attr motionEasingEmphasizedAccelerateInterpolator 0x0 +int attr motionEasingEmphasizedDecelerateInterpolator 0x0 +int attr motionEasingEmphasizedInterpolator 0x0 +int attr motionEasingLinear 0x0 +int attr motionEasingLinearInterpolator 0x0 +int attr motionEasingStandard 0x0 +int attr motionEasingStandardAccelerateInterpolator 0x0 +int attr motionEasingStandardDecelerateInterpolator 0x0 +int attr motionEasingStandardInterpolator 0x0 +int attr motionInterpolator 0x0 +int attr motionPath 0x0 +int attr motionPathRotate 0x0 +int attr motionProgress 0x0 +int attr motionStagger 0x0 +int attr motionTarget 0x0 +int attr motion_postLayoutCollision 0x0 +int attr motion_triggerOnCollision 0x0 +int attr moveWhenScrollAtTop 0x0 +int attr multiChoiceItemLayout 0x0 +int attr navigationContentDescription 0x0 +int attr navigationIcon 0x0 +int attr navigationIconTint 0x0 +int attr navigationMode 0x0 +int attr navigationRailStyle 0x0 +int attr navigationViewStyle 0x0 +int attr nestedScrollFlags 0x0 +int attr nestedScrollViewStyle 0x0 +int attr nestedScrollable 0x0 +int attr number 0x0 +int attr numericModifiers 0x0 +int attr offsetAlignmentMode 0x0 +int attr onCross 0x0 +int attr onHide 0x0 +int attr onNegativeCross 0x0 +int attr onPositiveCross 0x0 +int attr onShow 0x0 +int attr onTouchUp 0x0 +int attr overlapAnchor 0x0 +int attr overlay 0x0 +int attr paddingBottomNoButtons 0x0 +int attr paddingBottomSystemWindowInsets 0x0 +int attr paddingEnd 0x0 +int attr paddingLeftSystemWindowInsets 0x0 +int attr paddingRightSystemWindowInsets 0x0 +int attr paddingStart 0x0 +int attr paddingTopNoTitle 0x0 +int attr paddingTopSystemWindowInsets 0x0 +int attr panelBackground 0x0 +int attr panelMenuListTheme 0x0 +int attr panelMenuListWidth 0x0 +int attr passwordToggleContentDescription 0x0 +int attr passwordToggleDrawable 0x0 +int attr passwordToggleEnabled 0x0 +int attr passwordToggleTint 0x0 +int attr passwordToggleTintMode 0x0 +int attr pathMotionArc 0x0 +int attr path_percent 0x0 +int attr percentHeight 0x0 +int attr percentWidth 0x0 +int attr percentX 0x0 +int attr percentY 0x0 +int attr perpendicularPath_percent 0x0 +int attr pivotAnchor 0x0 +int attr placeholderActivityName 0x0 +int attr placeholderText 0x0 +int attr placeholderTextAppearance 0x0 +int attr placeholderTextColor 0x0 +int attr placeholder_emptyVisibility 0x0 +int attr popupMenuBackground 0x0 +int attr popupMenuStyle 0x0 +int attr popupTheme 0x0 +int attr popupWindowStyle 0x0 +int attr prefixText 0x0 +int attr prefixTextAppearance 0x0 +int attr prefixTextColor 0x0 +int attr preserveIconSpacing 0x0 +int attr pressedTranslationZ 0x0 +int attr primaryActivityName 0x0 +int attr progressBarPadding 0x0 +int attr progressBarStyle 0x0 +int attr queryBackground 0x0 +int attr queryHint 0x0 +int attr queryPatterns 0x0 +int attr radioButtonStyle 0x0 +int attr rangeFillColor 0x0 +int attr ratingBarStyle 0x0 +int attr ratingBarStyleIndicator 0x0 +int attr ratingBarStyleSmall 0x0 +int attr recyclerViewStyle 0x0 +int attr region_heightLessThan 0x0 +int attr region_heightMoreThan 0x0 +int attr region_widthLessThan 0x0 +int attr region_widthMoreThan 0x0 +int attr removeEmbeddedFabElevation 0x0 +int attr reverseLayout 0x0 +int attr rippleColor 0x0 +int attr round 0x0 +int attr roundPercent 0x0 +int attr saturation 0x0 +int attr scrimAnimationDuration 0x0 +int attr scrimBackground 0x0 +int attr scrimVisibleHeightTrigger 0x0 +int attr searchHintIcon 0x0 +int attr searchIcon 0x0 +int attr searchPrefixText 0x0 +int attr searchViewStyle 0x0 +int attr secondaryActivityAction 0x0 +int attr secondaryActivityName 0x0 +int attr seekBarStyle 0x0 +int attr selectableItemBackground 0x0 +int attr selectableItemBackgroundBorderless 0x0 +int attr selectionRequired 0x0 +int attr selectorSize 0x0 +int attr shapeAppearance 0x0 +int attr shapeAppearanceCornerExtraLarge 0x0 +int attr shapeAppearanceCornerExtraSmall 0x0 +int attr shapeAppearanceCornerLarge 0x0 +int attr shapeAppearanceCornerMedium 0x0 +int attr shapeAppearanceCornerSmall 0x0 +int attr shapeAppearanceLargeComponent 0x0 +int attr shapeAppearanceMediumComponent 0x0 +int attr shapeAppearanceOverlay 0x0 +int attr shapeAppearanceSmallComponent 0x0 +int attr shapeCornerFamily 0x0 +int attr shortcutMatchRequired 0x0 +int attr shouldRemoveExpandedCorners 0x0 +int attr showAnimationBehavior 0x0 +int attr showAsAction 0x0 +int attr showDelay 0x0 +int attr showDividers 0x0 +int attr showMotionSpec 0x0 +int attr showPaths 0x0 +int attr showText 0x0 +int attr showTitle 0x0 +int attr shrinkMotionSpec 0x0 +int attr sideSheetDialogTheme 0x0 +int attr sideSheetModalStyle 0x0 +int attr simpleItemLayout 0x0 +int attr simpleItemSelectedColor 0x0 +int attr simpleItemSelectedRippleColor 0x0 +int attr simpleItems 0x0 +int attr singleChoiceItemLayout 0x0 +int attr singleLine 0x0 +int attr singleSelection 0x0 +int attr sizePercent 0x0 +int attr sliderStyle 0x0 +int attr snackbarButtonStyle 0x0 +int attr snackbarStyle 0x0 +int attr snackbarTextViewStyle 0x0 +int attr spanCount 0x0 +int attr spinBars 0x0 +int attr spinnerDropDownItemStyle 0x0 +int attr spinnerStyle 0x0 +int attr splitLayoutDirection 0x0 +int attr splitMaxAspectRatioInLandscape 0x0 +int attr splitMaxAspectRatioInPortrait 0x0 +int attr splitMinHeightDp 0x0 +int attr splitMinSmallestWidthDp 0x0 +int attr splitMinWidthDp 0x0 +int attr splitRatio 0x0 +int attr splitTrack 0x0 +int attr srcCompat 0x0 +int attr stackFromEnd 0x0 +int attr staggered 0x0 +int attr startIconCheckable 0x0 +int attr startIconContentDescription 0x0 +int attr startIconDrawable 0x0 +int attr startIconMinSize 0x0 +int attr startIconScaleType 0x0 +int attr startIconTint 0x0 +int attr startIconTintMode 0x0 +int attr state_above_anchor 0x0 +int attr state_collapsed 0x0 +int attr state_collapsible 0x0 +int attr state_dragged 0x0 +int attr state_error 0x0 +int attr state_indeterminate 0x0 +int attr state_liftable 0x0 +int attr state_lifted 0x0 +int attr state_with_icon 0x0 +int attr statusBarBackground 0x0 +int attr statusBarForeground 0x0 +int attr statusBarScrim 0x0 +int attr stickyPlaceholder 0x0 +int attr strokeColor 0x0 +int attr strokeWidth 0x0 +int attr subMenuArrow 0x0 +int attr subheaderColor 0x0 +int attr subheaderInsetEnd 0x0 +int attr subheaderInsetStart 0x0 +int attr subheaderTextAppearance 0x0 +int attr submitBackground 0x0 +int attr subtitle 0x0 +int attr subtitleCentered 0x0 +int attr subtitleTextAppearance 0x0 +int attr subtitleTextColor 0x0 +int attr subtitleTextStyle 0x0 +int attr suffixText 0x0 +int attr suffixTextAppearance 0x0 +int attr suffixTextColor 0x0 +int attr suggestionRowLayout 0x0 +int attr switchMinWidth 0x0 +int attr switchPadding 0x0 +int attr switchStyle 0x0 +int attr switchTextAppearance 0x0 +int attr tabBackground 0x0 +int attr tabContentStart 0x0 +int attr tabGravity 0x0 +int attr tabIconTint 0x0 +int attr tabIconTintMode 0x0 +int attr tabIndicator 0x0 +int attr tabIndicatorAnimationDuration 0x0 +int attr tabIndicatorAnimationMode 0x0 +int attr tabIndicatorColor 0x0 +int attr tabIndicatorFullWidth 0x0 +int attr tabIndicatorGravity 0x0 +int attr tabIndicatorHeight 0x0 +int attr tabInlineLabel 0x0 +int attr tabMaxWidth 0x0 +int attr tabMinWidth 0x0 +int attr tabMode 0x0 +int attr tabPadding 0x0 +int attr tabPaddingBottom 0x0 +int attr tabPaddingEnd 0x0 +int attr tabPaddingStart 0x0 +int attr tabPaddingTop 0x0 +int attr tabRippleColor 0x0 +int attr tabSecondaryStyle 0x0 +int attr tabSelectedTextAppearance 0x0 +int attr tabSelectedTextColor 0x0 +int attr tabStyle 0x0 +int attr tabTextAppearance 0x0 +int attr tabTextColor 0x0 +int attr tabUnboundedRipple 0x0 +int attr tag 0x0 +int attr targetId 0x0 +int attr telltales_tailColor 0x0 +int attr telltales_tailScale 0x0 +int attr telltales_velocityMode 0x0 +int attr textAllCaps 0x0 +int attr textAppearanceBody1 0x0 +int attr textAppearanceBody2 0x0 +int attr textAppearanceBodyLarge 0x0 +int attr textAppearanceBodyMedium 0x0 +int attr textAppearanceBodySmall 0x0 +int attr textAppearanceButton 0x0 +int attr textAppearanceCaption 0x0 +int attr textAppearanceDisplayLarge 0x0 +int attr textAppearanceDisplayMedium 0x0 +int attr textAppearanceDisplaySmall 0x0 +int attr textAppearanceHeadline1 0x0 +int attr textAppearanceHeadline2 0x0 +int attr textAppearanceHeadline3 0x0 +int attr textAppearanceHeadline4 0x0 +int attr textAppearanceHeadline5 0x0 +int attr textAppearanceHeadline6 0x0 +int attr textAppearanceHeadlineLarge 0x0 +int attr textAppearanceHeadlineMedium 0x0 +int attr textAppearanceHeadlineSmall 0x0 +int attr textAppearanceLabelLarge 0x0 +int attr textAppearanceLabelMedium 0x0 +int attr textAppearanceLabelSmall 0x0 +int attr textAppearanceLargePopupMenu 0x0 +int attr textAppearanceLineHeightEnabled 0x0 +int attr textAppearanceListItem 0x0 +int attr textAppearanceListItemSecondary 0x0 +int attr textAppearanceListItemSmall 0x0 +int attr textAppearanceOverline 0x0 +int attr textAppearancePopupMenuHeader 0x0 +int attr textAppearanceSearchResultSubtitle 0x0 +int attr textAppearanceSearchResultTitle 0x0 +int attr textAppearanceSmallPopupMenu 0x0 +int attr textAppearanceSubtitle1 0x0 +int attr textAppearanceSubtitle2 0x0 +int attr textAppearanceTitleLarge 0x0 +int attr textAppearanceTitleMedium 0x0 +int attr textAppearanceTitleSmall 0x0 +int attr textColorAlertDialogListItem 0x0 +int attr textColorSearchUrl 0x0 +int attr textEndPadding 0x0 +int attr textInputFilledDenseStyle 0x0 +int attr textInputFilledExposedDropdownMenuStyle 0x0 +int attr textInputFilledStyle 0x0 +int attr textInputLayoutFocusedRectEnabled 0x0 +int attr textInputOutlinedDenseStyle 0x0 +int attr textInputOutlinedExposedDropdownMenuStyle 0x0 +int attr textInputOutlinedStyle 0x0 +int attr textInputStyle 0x0 +int attr textLocale 0x0 +int attr textStartPadding 0x0 +int attr theme 0x0 +int attr thickness 0x0 +int attr thumbColor 0x0 +int attr thumbElevation 0x0 +int attr thumbIcon 0x0 +int attr thumbIconTint 0x0 +int attr thumbIconTintMode 0x0 +int attr thumbRadius 0x0 +int attr thumbStrokeColor 0x0 +int attr thumbStrokeWidth 0x0 +int attr thumbTextPadding 0x0 +int attr thumbTint 0x0 +int attr thumbTintMode 0x0 +int attr tickColor 0x0 +int attr tickColorActive 0x0 +int attr tickColorInactive 0x0 +int attr tickMark 0x0 +int attr tickMarkTint 0x0 +int attr tickMarkTintMode 0x0 +int attr tickRadiusActive 0x0 +int attr tickRadiusInactive 0x0 +int attr tickVisible 0x0 +int attr tint 0x0 +int attr tintMode 0x0 +int attr tintNavigationIcon 0x0 +int attr title 0x0 +int attr titleCentered 0x0 +int attr titleCollapseMode 0x0 +int attr titleEnabled 0x0 +int attr titleMargin 0x0 +int attr titleMarginBottom 0x0 +int attr titleMarginEnd 0x0 +int attr titleMarginStart 0x0 +int attr titleMarginTop 0x0 +int attr titleMargins 0x0 +int attr titlePositionInterpolator 0x0 +int attr titleTextAppearance 0x0 +int attr titleTextColor 0x0 +int attr titleTextEllipsize 0x0 +int attr titleTextStyle 0x0 +int attr toggleCheckedStateOnClick 0x0 +int attr toolbarId 0x0 +int attr toolbarNavigationButtonStyle 0x0 +int attr toolbarStyle 0x0 +int attr toolbarSurfaceStyle 0x0 +int attr tooltipForegroundColor 0x0 +int attr tooltipFrameBackground 0x0 +int attr tooltipStyle 0x0 +int attr tooltipText 0x0 +int attr topInsetScrimEnabled 0x0 +int attr touchAnchorId 0x0 +int attr touchAnchorSide 0x0 +int attr touchRegionId 0x0 +int attr track 0x0 +int attr trackColor 0x0 +int attr trackColorActive 0x0 +int attr trackColorInactive 0x0 +int attr trackCornerRadius 0x0 +int attr trackDecoration 0x0 +int attr trackDecorationTint 0x0 +int attr trackDecorationTintMode 0x0 +int attr trackHeight 0x0 +int attr trackThickness 0x0 +int attr trackTint 0x0 +int attr trackTintMode 0x0 +int attr transitionDisable 0x0 +int attr transitionEasing 0x0 +int attr transitionFlags 0x0 +int attr transitionPathRotate 0x0 +int attr transitionShapeAppearance 0x0 +int attr triggerId 0x0 +int attr triggerReceiver 0x0 +int attr triggerSlack 0x0 +int attr ttcIndex 0x0 +int attr useCompatPadding 0x0 +int attr useDrawerArrowDrawable 0x0 +int attr useMaterialThemeColors 0x0 +int attr values 0x0 +int attr verticalOffset 0x0 +int attr verticalOffsetWithText 0x0 +int attr viewInflaterClass 0x0 +int attr visibilityMode 0x0 +int attr voiceIcon 0x0 +int attr warmth 0x0 +int attr waveDecay 0x0 +int attr waveOffset 0x0 +int attr wavePeriod 0x0 +int attr waveShape 0x0 +int attr waveVariesBy 0x0 +int attr windowActionBar 0x0 +int attr windowActionBarOverlay 0x0 +int attr windowActionModeOverlay 0x0 +int attr windowFixedHeightMajor 0x0 +int attr windowFixedHeightMinor 0x0 +int attr windowFixedWidthMajor 0x0 +int attr windowFixedWidthMinor 0x0 +int attr windowMinWidthMajor 0x0 +int attr windowMinWidthMinor 0x0 +int attr windowNoTitle 0x0 +int attr yearSelectedStyle 0x0 +int attr yearStyle 0x0 +int attr yearTodayStyle 0x0 +int bool abc_action_bar_embed_tabs 0x0 +int bool abc_allow_stacked_button_bar 0x0 +int bool abc_config_actionMenuItemAllCaps 0x0 +int bool mtrl_btn_textappearance_all_caps 0x0 +int color abc_background_cache_hint_selector_material_dark 0x0 +int color abc_background_cache_hint_selector_material_light 0x0 +int color abc_btn_colored_borderless_text_material 0x0 +int color abc_btn_colored_text_material 0x0 +int color abc_color_highlight_material 0x0 +int color abc_decor_view_status_guard 0x0 +int color abc_decor_view_status_guard_light 0x0 +int color abc_hint_foreground_material_dark 0x0 +int color abc_hint_foreground_material_light 0x0 +int color abc_primary_text_disable_only_material_dark 0x0 +int color abc_primary_text_disable_only_material_light 0x0 +int color abc_primary_text_material_dark 0x0 +int color abc_primary_text_material_light 0x0 +int color abc_search_url_text 0x0 +int color abc_search_url_text_normal 0x0 +int color abc_search_url_text_pressed 0x0 +int color abc_search_url_text_selected 0x0 +int color abc_secondary_text_material_dark 0x0 +int color abc_secondary_text_material_light 0x0 +int color abc_tint_btn_checkable 0x0 +int color abc_tint_default 0x0 +int color abc_tint_edittext 0x0 +int color abc_tint_seek_thumb 0x0 +int color abc_tint_spinner 0x0 +int color abc_tint_switch_track 0x0 +int color accent_material_dark 0x0 +int color accent_material_light 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color background_floating_material_dark 0x0 +int color background_floating_material_light 0x0 +int color background_material_dark 0x0 +int color background_material_light 0x0 +int color bright_foreground_disabled_material_dark 0x0 +int color bright_foreground_disabled_material_light 0x0 +int color bright_foreground_inverse_material_dark 0x0 +int color bright_foreground_inverse_material_light 0x0 +int color bright_foreground_material_dark 0x0 +int color bright_foreground_material_light 0x0 +int color button_material_dark 0x0 +int color button_material_light 0x0 +int color cardview_dark_background 0x0 +int color cardview_light_background 0x0 +int color cardview_shadow_end_color 0x0 +int color cardview_shadow_start_color 0x0 +int color design_bottom_navigation_shadow_color 0x0 +int color design_box_stroke_color 0x0 +int color design_dark_default_color_background 0x0 +int color design_dark_default_color_error 0x0 +int color design_dark_default_color_on_background 0x0 +int color design_dark_default_color_on_error 0x0 +int color design_dark_default_color_on_primary 0x0 +int color design_dark_default_color_on_secondary 0x0 +int color design_dark_default_color_on_surface 0x0 +int color design_dark_default_color_primary 0x0 +int color design_dark_default_color_primary_dark 0x0 +int color design_dark_default_color_primary_variant 0x0 +int color design_dark_default_color_secondary 0x0 +int color design_dark_default_color_secondary_variant 0x0 +int color design_dark_default_color_surface 0x0 +int color design_default_color_background 0x0 +int color design_default_color_error 0x0 +int color design_default_color_on_background 0x0 +int color design_default_color_on_error 0x0 +int color design_default_color_on_primary 0x0 +int color design_default_color_on_secondary 0x0 +int color design_default_color_on_surface 0x0 +int color design_default_color_primary 0x0 +int color design_default_color_primary_dark 0x0 +int color design_default_color_primary_variant 0x0 +int color design_default_color_secondary 0x0 +int color design_default_color_secondary_variant 0x0 +int color design_default_color_surface 0x0 +int color design_error 0x0 +int color design_fab_shadow_end_color 0x0 +int color design_fab_shadow_mid_color 0x0 +int color design_fab_shadow_start_color 0x0 +int color design_fab_stroke_end_inner_color 0x0 +int color design_fab_stroke_end_outer_color 0x0 +int color design_fab_stroke_top_inner_color 0x0 +int color design_fab_stroke_top_outer_color 0x0 +int color design_icon_tint 0x0 +int color design_snackbar_background_color 0x0 +int color dim_foreground_disabled_material_dark 0x0 +int color dim_foreground_disabled_material_light 0x0 +int color dim_foreground_material_dark 0x0 +int color dim_foreground_material_light 0x0 +int color error_color_material_dark 0x0 +int color error_color_material_light 0x0 +int color foreground_material_dark 0x0 +int color foreground_material_light 0x0 +int color highlighted_text_material_dark 0x0 +int color highlighted_text_material_light 0x0 +int color m3_appbar_overlay_color 0x0 +int color m3_assist_chip_icon_tint_color 0x0 +int color m3_assist_chip_stroke_color 0x0 +int color m3_button_background_color_selector 0x0 +int color m3_button_foreground_color_selector 0x0 +int color m3_button_outline_color_selector 0x0 +int color m3_button_ripple_color 0x0 +int color m3_button_ripple_color_selector 0x0 +int color m3_calendar_item_disabled_text 0x0 +int color m3_calendar_item_stroke_color 0x0 +int color m3_card_foreground_color 0x0 +int color m3_card_ripple_color 0x0 +int color m3_card_stroke_color 0x0 +int color m3_checkbox_button_icon_tint 0x0 +int color m3_checkbox_button_tint 0x0 +int color m3_chip_assist_text_color 0x0 +int color m3_chip_background_color 0x0 +int color m3_chip_ripple_color 0x0 +int color m3_chip_stroke_color 0x0 +int color m3_chip_text_color 0x0 +int color m3_dark_default_color_primary_text 0x0 +int color m3_dark_default_color_secondary_text 0x0 +int color m3_dark_highlighted_text 0x0 +int color m3_dark_hint_foreground 0x0 +int color m3_dark_primary_text_disable_only 0x0 +int color m3_default_color_primary_text 0x0 +int color m3_default_color_secondary_text 0x0 +int color m3_dynamic_dark_default_color_primary_text 0x0 +int color m3_dynamic_dark_default_color_secondary_text 0x0 +int color m3_dynamic_dark_highlighted_text 0x0 +int color m3_dynamic_dark_hint_foreground 0x0 +int color m3_dynamic_dark_primary_text_disable_only 0x0 +int color m3_dynamic_default_color_primary_text 0x0 +int color m3_dynamic_default_color_secondary_text 0x0 +int color m3_dynamic_highlighted_text 0x0 +int color m3_dynamic_hint_foreground 0x0 +int color m3_dynamic_primary_text_disable_only 0x0 +int color m3_efab_ripple_color_selector 0x0 +int color m3_elevated_chip_background_color 0x0 +int color m3_fab_efab_background_color_selector 0x0 +int color m3_fab_efab_foreground_color_selector 0x0 +int color m3_fab_ripple_color_selector 0x0 +int color m3_filled_icon_button_container_color_selector 0x0 +int color m3_highlighted_text 0x0 +int color m3_hint_foreground 0x0 +int color m3_icon_button_icon_color_selector 0x0 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x0 +int color m3_navigation_bar_item_with_indicator_label_tint 0x0 +int color m3_navigation_bar_ripple_color_selector 0x0 +int color m3_navigation_item_background_color 0x0 +int color m3_navigation_item_icon_tint 0x0 +int color m3_navigation_item_ripple_color 0x0 +int color m3_navigation_item_text_color 0x0 +int color m3_navigation_rail_item_with_indicator_icon_tint 0x0 +int color m3_navigation_rail_item_with_indicator_label_tint 0x0 +int color m3_navigation_rail_ripple_color_selector 0x0 +int color m3_popupmenu_overlay_color 0x0 +int color m3_primary_text_disable_only 0x0 +int color m3_radiobutton_button_tint 0x0 +int color m3_radiobutton_ripple_tint 0x0 +int color m3_ref_palette_black 0x0 +int color m3_ref_palette_dynamic_neutral0 0x0 +int color m3_ref_palette_dynamic_neutral10 0x0 +int color m3_ref_palette_dynamic_neutral100 0x0 +int color m3_ref_palette_dynamic_neutral12 0x0 +int color m3_ref_palette_dynamic_neutral17 0x0 +int color m3_ref_palette_dynamic_neutral20 0x0 +int color m3_ref_palette_dynamic_neutral22 0x0 +int color m3_ref_palette_dynamic_neutral24 0x0 +int color m3_ref_palette_dynamic_neutral30 0x0 +int color m3_ref_palette_dynamic_neutral4 0x0 +int color m3_ref_palette_dynamic_neutral40 0x0 +int color m3_ref_palette_dynamic_neutral50 0x0 +int color m3_ref_palette_dynamic_neutral6 0x0 +int color m3_ref_palette_dynamic_neutral60 0x0 +int color m3_ref_palette_dynamic_neutral70 0x0 +int color m3_ref_palette_dynamic_neutral80 0x0 +int color m3_ref_palette_dynamic_neutral87 0x0 +int color m3_ref_palette_dynamic_neutral90 0x0 +int color m3_ref_palette_dynamic_neutral92 0x0 +int color m3_ref_palette_dynamic_neutral94 0x0 +int color m3_ref_palette_dynamic_neutral95 0x0 +int color m3_ref_palette_dynamic_neutral96 0x0 +int color m3_ref_palette_dynamic_neutral98 0x0 +int color m3_ref_palette_dynamic_neutral99 0x0 +int color m3_ref_palette_dynamic_neutral_variant0 0x0 +int color m3_ref_palette_dynamic_neutral_variant10 0x0 +int color m3_ref_palette_dynamic_neutral_variant100 0x0 +int color m3_ref_palette_dynamic_neutral_variant20 0x0 +int color m3_ref_palette_dynamic_neutral_variant30 0x0 +int color m3_ref_palette_dynamic_neutral_variant40 0x0 +int color m3_ref_palette_dynamic_neutral_variant50 0x0 +int color m3_ref_palette_dynamic_neutral_variant60 0x0 +int color m3_ref_palette_dynamic_neutral_variant70 0x0 +int color m3_ref_palette_dynamic_neutral_variant80 0x0 +int color m3_ref_palette_dynamic_neutral_variant90 0x0 +int color m3_ref_palette_dynamic_neutral_variant95 0x0 +int color m3_ref_palette_dynamic_neutral_variant99 0x0 +int color m3_ref_palette_dynamic_primary0 0x0 +int color m3_ref_palette_dynamic_primary10 0x0 +int color m3_ref_palette_dynamic_primary100 0x0 +int color m3_ref_palette_dynamic_primary20 0x0 +int color m3_ref_palette_dynamic_primary30 0x0 +int color m3_ref_palette_dynamic_primary40 0x0 +int color m3_ref_palette_dynamic_primary50 0x0 +int color m3_ref_palette_dynamic_primary60 0x0 +int color m3_ref_palette_dynamic_primary70 0x0 +int color m3_ref_palette_dynamic_primary80 0x0 +int color m3_ref_palette_dynamic_primary90 0x0 +int color m3_ref_palette_dynamic_primary95 0x0 +int color m3_ref_palette_dynamic_primary99 0x0 +int color m3_ref_palette_dynamic_secondary0 0x0 +int color m3_ref_palette_dynamic_secondary10 0x0 +int color m3_ref_palette_dynamic_secondary100 0x0 +int color m3_ref_palette_dynamic_secondary20 0x0 +int color m3_ref_palette_dynamic_secondary30 0x0 +int color m3_ref_palette_dynamic_secondary40 0x0 +int color m3_ref_palette_dynamic_secondary50 0x0 +int color m3_ref_palette_dynamic_secondary60 0x0 +int color m3_ref_palette_dynamic_secondary70 0x0 +int color m3_ref_palette_dynamic_secondary80 0x0 +int color m3_ref_palette_dynamic_secondary90 0x0 +int color m3_ref_palette_dynamic_secondary95 0x0 +int color m3_ref_palette_dynamic_secondary99 0x0 +int color m3_ref_palette_dynamic_tertiary0 0x0 +int color m3_ref_palette_dynamic_tertiary10 0x0 +int color m3_ref_palette_dynamic_tertiary100 0x0 +int color m3_ref_palette_dynamic_tertiary20 0x0 +int color m3_ref_palette_dynamic_tertiary30 0x0 +int color m3_ref_palette_dynamic_tertiary40 0x0 +int color m3_ref_palette_dynamic_tertiary50 0x0 +int color m3_ref_palette_dynamic_tertiary60 0x0 +int color m3_ref_palette_dynamic_tertiary70 0x0 +int color m3_ref_palette_dynamic_tertiary80 0x0 +int color m3_ref_palette_dynamic_tertiary90 0x0 +int color m3_ref_palette_dynamic_tertiary95 0x0 +int color m3_ref_palette_dynamic_tertiary99 0x0 +int color m3_ref_palette_error0 0x0 +int color m3_ref_palette_error10 0x0 +int color m3_ref_palette_error100 0x0 +int color m3_ref_palette_error20 0x0 +int color m3_ref_palette_error30 0x0 +int color m3_ref_palette_error40 0x0 +int color m3_ref_palette_error50 0x0 +int color m3_ref_palette_error60 0x0 +int color m3_ref_palette_error70 0x0 +int color m3_ref_palette_error80 0x0 +int color m3_ref_palette_error90 0x0 +int color m3_ref_palette_error95 0x0 +int color m3_ref_palette_error99 0x0 +int color m3_ref_palette_neutral0 0x0 +int color m3_ref_palette_neutral10 0x0 +int color m3_ref_palette_neutral100 0x0 +int color m3_ref_palette_neutral12 0x0 +int color m3_ref_palette_neutral17 0x0 +int color m3_ref_palette_neutral20 0x0 +int color m3_ref_palette_neutral22 0x0 +int color m3_ref_palette_neutral24 0x0 +int color m3_ref_palette_neutral30 0x0 +int color m3_ref_palette_neutral4 0x0 +int color m3_ref_palette_neutral40 0x0 +int color m3_ref_palette_neutral50 0x0 +int color m3_ref_palette_neutral6 0x0 +int color m3_ref_palette_neutral60 0x0 +int color m3_ref_palette_neutral70 0x0 +int color m3_ref_palette_neutral80 0x0 +int color m3_ref_palette_neutral87 0x0 +int color m3_ref_palette_neutral90 0x0 +int color m3_ref_palette_neutral92 0x0 +int color m3_ref_palette_neutral94 0x0 +int color m3_ref_palette_neutral95 0x0 +int color m3_ref_palette_neutral96 0x0 +int color m3_ref_palette_neutral98 0x0 +int color m3_ref_palette_neutral99 0x0 +int color m3_ref_palette_neutral_variant0 0x0 +int color m3_ref_palette_neutral_variant10 0x0 +int color m3_ref_palette_neutral_variant100 0x0 +int color m3_ref_palette_neutral_variant20 0x0 +int color m3_ref_palette_neutral_variant30 0x0 +int color m3_ref_palette_neutral_variant40 0x0 +int color m3_ref_palette_neutral_variant50 0x0 +int color m3_ref_palette_neutral_variant60 0x0 +int color m3_ref_palette_neutral_variant70 0x0 +int color m3_ref_palette_neutral_variant80 0x0 +int color m3_ref_palette_neutral_variant90 0x0 +int color m3_ref_palette_neutral_variant95 0x0 +int color m3_ref_palette_neutral_variant99 0x0 +int color m3_ref_palette_primary0 0x0 +int color m3_ref_palette_primary10 0x0 +int color m3_ref_palette_primary100 0x0 +int color m3_ref_palette_primary20 0x0 +int color m3_ref_palette_primary30 0x0 +int color m3_ref_palette_primary40 0x0 +int color m3_ref_palette_primary50 0x0 +int color m3_ref_palette_primary60 0x0 +int color m3_ref_palette_primary70 0x0 +int color m3_ref_palette_primary80 0x0 +int color m3_ref_palette_primary90 0x0 +int color m3_ref_palette_primary95 0x0 +int color m3_ref_palette_primary99 0x0 +int color m3_ref_palette_secondary0 0x0 +int color m3_ref_palette_secondary10 0x0 +int color m3_ref_palette_secondary100 0x0 +int color m3_ref_palette_secondary20 0x0 +int color m3_ref_palette_secondary30 0x0 +int color m3_ref_palette_secondary40 0x0 +int color m3_ref_palette_secondary50 0x0 +int color m3_ref_palette_secondary60 0x0 +int color m3_ref_palette_secondary70 0x0 +int color m3_ref_palette_secondary80 0x0 +int color m3_ref_palette_secondary90 0x0 +int color m3_ref_palette_secondary95 0x0 +int color m3_ref_palette_secondary99 0x0 +int color m3_ref_palette_tertiary0 0x0 +int color m3_ref_palette_tertiary10 0x0 +int color m3_ref_palette_tertiary100 0x0 +int color m3_ref_palette_tertiary20 0x0 +int color m3_ref_palette_tertiary30 0x0 +int color m3_ref_palette_tertiary40 0x0 +int color m3_ref_palette_tertiary50 0x0 +int color m3_ref_palette_tertiary60 0x0 +int color m3_ref_palette_tertiary70 0x0 +int color m3_ref_palette_tertiary80 0x0 +int color m3_ref_palette_tertiary90 0x0 +int color m3_ref_palette_tertiary95 0x0 +int color m3_ref_palette_tertiary99 0x0 +int color m3_ref_palette_white 0x0 +int color m3_selection_control_ripple_color_selector 0x0 +int color m3_simple_item_ripple_color 0x0 +int color m3_slider_active_track_color 0x0 +int color m3_slider_halo_color 0x0 +int color m3_slider_inactive_track_color 0x0 +int color m3_slider_thumb_color 0x0 +int color m3_switch_thumb_tint 0x0 +int color m3_switch_track_tint 0x0 +int color m3_sys_color_dark_background 0x0 +int color m3_sys_color_dark_error 0x0 +int color m3_sys_color_dark_error_container 0x0 +int color m3_sys_color_dark_inverse_on_surface 0x0 +int color m3_sys_color_dark_inverse_primary 0x0 +int color m3_sys_color_dark_inverse_surface 0x0 +int color m3_sys_color_dark_on_background 0x0 +int color m3_sys_color_dark_on_error 0x0 +int color m3_sys_color_dark_on_error_container 0x0 +int color m3_sys_color_dark_on_primary 0x0 +int color m3_sys_color_dark_on_primary_container 0x0 +int color m3_sys_color_dark_on_secondary 0x0 +int color m3_sys_color_dark_on_secondary_container 0x0 +int color m3_sys_color_dark_on_surface 0x0 +int color m3_sys_color_dark_on_surface_variant 0x0 +int color m3_sys_color_dark_on_tertiary 0x0 +int color m3_sys_color_dark_on_tertiary_container 0x0 +int color m3_sys_color_dark_outline 0x0 +int color m3_sys_color_dark_outline_variant 0x0 +int color m3_sys_color_dark_primary 0x0 +int color m3_sys_color_dark_primary_container 0x0 +int color m3_sys_color_dark_secondary 0x0 +int color m3_sys_color_dark_secondary_container 0x0 +int color m3_sys_color_dark_surface 0x0 +int color m3_sys_color_dark_surface_bright 0x0 +int color m3_sys_color_dark_surface_container 0x0 +int color m3_sys_color_dark_surface_container_high 0x0 +int color m3_sys_color_dark_surface_container_highest 0x0 +int color m3_sys_color_dark_surface_container_low 0x0 +int color m3_sys_color_dark_surface_container_lowest 0x0 +int color m3_sys_color_dark_surface_dim 0x0 +int color m3_sys_color_dark_surface_variant 0x0 +int color m3_sys_color_dark_tertiary 0x0 +int color m3_sys_color_dark_tertiary_container 0x0 +int color m3_sys_color_dynamic_dark_background 0x0 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x0 +int color m3_sys_color_dynamic_dark_inverse_primary 0x0 +int color m3_sys_color_dynamic_dark_inverse_surface 0x0 +int color m3_sys_color_dynamic_dark_on_background 0x0 +int color m3_sys_color_dynamic_dark_on_primary 0x0 +int color m3_sys_color_dynamic_dark_on_primary_container 0x0 +int color m3_sys_color_dynamic_dark_on_secondary 0x0 +int color m3_sys_color_dynamic_dark_on_secondary_container 0x0 +int color m3_sys_color_dynamic_dark_on_surface 0x0 +int color m3_sys_color_dynamic_dark_on_surface_variant 0x0 +int color m3_sys_color_dynamic_dark_on_tertiary 0x0 +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x0 +int color m3_sys_color_dynamic_dark_outline 0x0 +int color m3_sys_color_dynamic_dark_outline_variant 0x0 +int color m3_sys_color_dynamic_dark_primary 0x0 +int color m3_sys_color_dynamic_dark_primary_container 0x0 +int color m3_sys_color_dynamic_dark_secondary 0x0 +int color m3_sys_color_dynamic_dark_secondary_container 0x0 +int color m3_sys_color_dynamic_dark_surface 0x0 +int color m3_sys_color_dynamic_dark_surface_bright 0x0 +int color m3_sys_color_dynamic_dark_surface_container 0x0 +int color m3_sys_color_dynamic_dark_surface_container_high 0x0 +int color m3_sys_color_dynamic_dark_surface_container_highest 0x0 +int color m3_sys_color_dynamic_dark_surface_container_low 0x0 +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x0 +int color m3_sys_color_dynamic_dark_surface_dim 0x0 +int color m3_sys_color_dynamic_dark_surface_variant 0x0 +int color m3_sys_color_dynamic_dark_tertiary 0x0 +int color m3_sys_color_dynamic_dark_tertiary_container 0x0 +int color m3_sys_color_dynamic_light_background 0x0 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x0 +int color m3_sys_color_dynamic_light_inverse_primary 0x0 +int color m3_sys_color_dynamic_light_inverse_surface 0x0 +int color m3_sys_color_dynamic_light_on_background 0x0 +int color m3_sys_color_dynamic_light_on_primary 0x0 +int color m3_sys_color_dynamic_light_on_primary_container 0x0 +int color m3_sys_color_dynamic_light_on_secondary 0x0 +int color m3_sys_color_dynamic_light_on_secondary_container 0x0 +int color m3_sys_color_dynamic_light_on_surface 0x0 +int color m3_sys_color_dynamic_light_on_surface_variant 0x0 +int color m3_sys_color_dynamic_light_on_tertiary 0x0 +int color m3_sys_color_dynamic_light_on_tertiary_container 0x0 +int color m3_sys_color_dynamic_light_outline 0x0 +int color m3_sys_color_dynamic_light_outline_variant 0x0 +int color m3_sys_color_dynamic_light_primary 0x0 +int color m3_sys_color_dynamic_light_primary_container 0x0 +int color m3_sys_color_dynamic_light_secondary 0x0 +int color m3_sys_color_dynamic_light_secondary_container 0x0 +int color m3_sys_color_dynamic_light_surface 0x0 +int color m3_sys_color_dynamic_light_surface_bright 0x0 +int color m3_sys_color_dynamic_light_surface_container 0x0 +int color m3_sys_color_dynamic_light_surface_container_high 0x0 +int color m3_sys_color_dynamic_light_surface_container_highest 0x0 +int color m3_sys_color_dynamic_light_surface_container_low 0x0 +int color m3_sys_color_dynamic_light_surface_container_lowest 0x0 +int color m3_sys_color_dynamic_light_surface_dim 0x0 +int color m3_sys_color_dynamic_light_surface_variant 0x0 +int color m3_sys_color_dynamic_light_tertiary 0x0 +int color m3_sys_color_dynamic_light_tertiary_container 0x0 +int color m3_sys_color_dynamic_on_primary_fixed 0x0 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x0 +int color m3_sys_color_dynamic_on_secondary_fixed 0x0 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x0 +int color m3_sys_color_dynamic_on_tertiary_fixed 0x0 +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x0 +int color m3_sys_color_dynamic_primary_fixed 0x0 +int color m3_sys_color_dynamic_primary_fixed_dim 0x0 +int color m3_sys_color_dynamic_secondary_fixed 0x0 +int color m3_sys_color_dynamic_secondary_fixed_dim 0x0 +int color m3_sys_color_dynamic_tertiary_fixed 0x0 +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x0 +int color m3_sys_color_light_background 0x0 +int color m3_sys_color_light_error 0x0 +int color m3_sys_color_light_error_container 0x0 +int color m3_sys_color_light_inverse_on_surface 0x0 +int color m3_sys_color_light_inverse_primary 0x0 +int color m3_sys_color_light_inverse_surface 0x0 +int color m3_sys_color_light_on_background 0x0 +int color m3_sys_color_light_on_error 0x0 +int color m3_sys_color_light_on_error_container 0x0 +int color m3_sys_color_light_on_primary 0x0 +int color m3_sys_color_light_on_primary_container 0x0 +int color m3_sys_color_light_on_secondary 0x0 +int color m3_sys_color_light_on_secondary_container 0x0 +int color m3_sys_color_light_on_surface 0x0 +int color m3_sys_color_light_on_surface_variant 0x0 +int color m3_sys_color_light_on_tertiary 0x0 +int color m3_sys_color_light_on_tertiary_container 0x0 +int color m3_sys_color_light_outline 0x0 +int color m3_sys_color_light_outline_variant 0x0 +int color m3_sys_color_light_primary 0x0 +int color m3_sys_color_light_primary_container 0x0 +int color m3_sys_color_light_secondary 0x0 +int color m3_sys_color_light_secondary_container 0x0 +int color m3_sys_color_light_surface 0x0 +int color m3_sys_color_light_surface_bright 0x0 +int color m3_sys_color_light_surface_container 0x0 +int color m3_sys_color_light_surface_container_high 0x0 +int color m3_sys_color_light_surface_container_highest 0x0 +int color m3_sys_color_light_surface_container_low 0x0 +int color m3_sys_color_light_surface_container_lowest 0x0 +int color m3_sys_color_light_surface_dim 0x0 +int color m3_sys_color_light_surface_variant 0x0 +int color m3_sys_color_light_tertiary 0x0 +int color m3_sys_color_light_tertiary_container 0x0 +int color m3_sys_color_on_primary_fixed 0x0 +int color m3_sys_color_on_primary_fixed_variant 0x0 +int color m3_sys_color_on_secondary_fixed 0x0 +int color m3_sys_color_on_secondary_fixed_variant 0x0 +int color m3_sys_color_on_tertiary_fixed 0x0 +int color m3_sys_color_on_tertiary_fixed_variant 0x0 +int color m3_sys_color_primary_fixed 0x0 +int color m3_sys_color_primary_fixed_dim 0x0 +int color m3_sys_color_secondary_fixed 0x0 +int color m3_sys_color_secondary_fixed_dim 0x0 +int color m3_sys_color_tertiary_fixed 0x0 +int color m3_sys_color_tertiary_fixed_dim 0x0 +int color m3_tabs_icon_color 0x0 +int color m3_tabs_icon_color_secondary 0x0 +int color m3_tabs_ripple_color 0x0 +int color m3_tabs_ripple_color_secondary 0x0 +int color m3_tabs_text_color 0x0 +int color m3_tabs_text_color_secondary 0x0 +int color m3_text_button_background_color_selector 0x0 +int color m3_text_button_foreground_color_selector 0x0 +int color m3_text_button_ripple_color_selector 0x0 +int color m3_textfield_filled_background_color 0x0 +int color m3_textfield_indicator_text_color 0x0 +int color m3_textfield_input_text_color 0x0 +int color m3_textfield_label_color 0x0 +int color m3_textfield_stroke_color 0x0 +int color m3_timepicker_button_background_color 0x0 +int color m3_timepicker_button_ripple_color 0x0 +int color m3_timepicker_button_text_color 0x0 +int color m3_timepicker_clock_text_color 0x0 +int color m3_timepicker_display_background_color 0x0 +int color m3_timepicker_display_ripple_color 0x0 +int color m3_timepicker_display_text_color 0x0 +int color m3_timepicker_secondary_text_button_ripple_color 0x0 +int color m3_timepicker_secondary_text_button_text_color 0x0 +int color m3_timepicker_time_input_stroke_color 0x0 +int color m3_tonal_button_ripple_color_selector 0x0 +int color material_blue_grey_800 0x0 +int color material_blue_grey_900 0x0 +int color material_blue_grey_950 0x0 +int color material_cursor_color 0x0 +int color material_deep_teal_200 0x0 +int color material_deep_teal_500 0x0 +int color material_divider_color 0x0 +int color material_dynamic_neutral0 0x0 +int color material_dynamic_neutral10 0x0 +int color material_dynamic_neutral100 0x0 +int color material_dynamic_neutral20 0x0 +int color material_dynamic_neutral30 0x0 +int color material_dynamic_neutral40 0x0 +int color material_dynamic_neutral50 0x0 +int color material_dynamic_neutral60 0x0 +int color material_dynamic_neutral70 0x0 +int color material_dynamic_neutral80 0x0 +int color material_dynamic_neutral90 0x0 +int color material_dynamic_neutral95 0x0 +int color material_dynamic_neutral99 0x0 +int color material_dynamic_neutral_variant0 0x0 +int color material_dynamic_neutral_variant10 0x0 +int color material_dynamic_neutral_variant100 0x0 +int color material_dynamic_neutral_variant20 0x0 +int color material_dynamic_neutral_variant30 0x0 +int color material_dynamic_neutral_variant40 0x0 +int color material_dynamic_neutral_variant50 0x0 +int color material_dynamic_neutral_variant60 0x0 +int color material_dynamic_neutral_variant70 0x0 +int color material_dynamic_neutral_variant80 0x0 +int color material_dynamic_neutral_variant90 0x0 +int color material_dynamic_neutral_variant95 0x0 +int color material_dynamic_neutral_variant99 0x0 +int color material_dynamic_primary0 0x0 +int color material_dynamic_primary10 0x0 +int color material_dynamic_primary100 0x0 +int color material_dynamic_primary20 0x0 +int color material_dynamic_primary30 0x0 +int color material_dynamic_primary40 0x0 +int color material_dynamic_primary50 0x0 +int color material_dynamic_primary60 0x0 +int color material_dynamic_primary70 0x0 +int color material_dynamic_primary80 0x0 +int color material_dynamic_primary90 0x0 +int color material_dynamic_primary95 0x0 +int color material_dynamic_primary99 0x0 +int color material_dynamic_secondary0 0x0 +int color material_dynamic_secondary10 0x0 +int color material_dynamic_secondary100 0x0 +int color material_dynamic_secondary20 0x0 +int color material_dynamic_secondary30 0x0 +int color material_dynamic_secondary40 0x0 +int color material_dynamic_secondary50 0x0 +int color material_dynamic_secondary60 0x0 +int color material_dynamic_secondary70 0x0 +int color material_dynamic_secondary80 0x0 +int color material_dynamic_secondary90 0x0 +int color material_dynamic_secondary95 0x0 +int color material_dynamic_secondary99 0x0 +int color material_dynamic_tertiary0 0x0 +int color material_dynamic_tertiary10 0x0 +int color material_dynamic_tertiary100 0x0 +int color material_dynamic_tertiary20 0x0 +int color material_dynamic_tertiary30 0x0 +int color material_dynamic_tertiary40 0x0 +int color material_dynamic_tertiary50 0x0 +int color material_dynamic_tertiary60 0x0 +int color material_dynamic_tertiary70 0x0 +int color material_dynamic_tertiary80 0x0 +int color material_dynamic_tertiary90 0x0 +int color material_dynamic_tertiary95 0x0 +int color material_dynamic_tertiary99 0x0 +int color material_grey_100 0x0 +int color material_grey_300 0x0 +int color material_grey_50 0x0 +int color material_grey_600 0x0 +int color material_grey_800 0x0 +int color material_grey_850 0x0 +int color material_grey_900 0x0 +int color material_harmonized_color_error 0x0 +int color material_harmonized_color_error_container 0x0 +int color material_harmonized_color_on_error 0x0 +int color material_harmonized_color_on_error_container 0x0 +int color material_on_background_disabled 0x0 +int color material_on_background_emphasis_high_type 0x0 +int color material_on_background_emphasis_medium 0x0 +int color material_on_primary_disabled 0x0 +int color material_on_primary_emphasis_high_type 0x0 +int color material_on_primary_emphasis_medium 0x0 +int color material_on_surface_disabled 0x0 +int color material_on_surface_emphasis_high_type 0x0 +int color material_on_surface_emphasis_medium 0x0 +int color material_on_surface_stroke 0x0 +int color material_personalized__highlighted_text 0x0 +int color material_personalized__highlighted_text_inverse 0x0 +int color material_personalized_color_background 0x0 +int color material_personalized_color_control_activated 0x0 +int color material_personalized_color_control_highlight 0x0 +int color material_personalized_color_control_normal 0x0 +int color material_personalized_color_error 0x0 +int color material_personalized_color_error_container 0x0 +int color material_personalized_color_on_background 0x0 +int color material_personalized_color_on_error 0x0 +int color material_personalized_color_on_error_container 0x0 +int color material_personalized_color_on_primary 0x0 +int color material_personalized_color_on_primary_container 0x0 +int color material_personalized_color_on_secondary 0x0 +int color material_personalized_color_on_secondary_container 0x0 +int color material_personalized_color_on_surface 0x0 +int color material_personalized_color_on_surface_inverse 0x0 +int color material_personalized_color_on_surface_variant 0x0 +int color material_personalized_color_on_tertiary 0x0 +int color material_personalized_color_on_tertiary_container 0x0 +int color material_personalized_color_outline 0x0 +int color material_personalized_color_outline_variant 0x0 +int color material_personalized_color_primary 0x0 +int color material_personalized_color_primary_container 0x0 +int color material_personalized_color_primary_inverse 0x0 +int color material_personalized_color_primary_text 0x0 +int color material_personalized_color_primary_text_inverse 0x0 +int color material_personalized_color_secondary 0x0 +int color material_personalized_color_secondary_container 0x0 +int color material_personalized_color_secondary_text 0x0 +int color material_personalized_color_secondary_text_inverse 0x0 +int color material_personalized_color_surface 0x0 +int color material_personalized_color_surface_bright 0x0 +int color material_personalized_color_surface_container 0x0 +int color material_personalized_color_surface_container_high 0x0 +int color material_personalized_color_surface_container_highest 0x0 +int color material_personalized_color_surface_container_low 0x0 +int color material_personalized_color_surface_container_lowest 0x0 +int color material_personalized_color_surface_dim 0x0 +int color material_personalized_color_surface_inverse 0x0 +int color material_personalized_color_surface_variant 0x0 +int color material_personalized_color_tertiary 0x0 +int color material_personalized_color_tertiary_container 0x0 +int color material_personalized_color_text_hint_foreground_inverse 0x0 +int color material_personalized_color_text_primary_inverse 0x0 +int color material_personalized_color_text_primary_inverse_disable_only 0x0 +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x0 +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x0 +int color material_personalized_hint_foreground 0x0 +int color material_personalized_hint_foreground_inverse 0x0 +int color material_personalized_primary_inverse_text_disable_only 0x0 +int color material_personalized_primary_text_disable_only 0x0 +int color material_slider_active_tick_marks_color 0x0 +int color material_slider_active_track_color 0x0 +int color material_slider_halo_color 0x0 +int color material_slider_inactive_tick_marks_color 0x0 +int color material_slider_inactive_track_color 0x0 +int color material_slider_thumb_color 0x0 +int color material_timepicker_button_background 0x0 +int color material_timepicker_button_stroke 0x0 +int color material_timepicker_clock_text_color 0x0 +int color material_timepicker_clockface 0x0 +int color material_timepicker_modebutton_tint 0x0 +int color mtrl_btn_bg_color_selector 0x0 +int color mtrl_btn_ripple_color 0x0 +int color mtrl_btn_stroke_color_selector 0x0 +int color mtrl_btn_text_btn_bg_color_selector 0x0 +int color mtrl_btn_text_btn_ripple_color 0x0 +int color mtrl_btn_text_color_disabled 0x0 +int color mtrl_btn_text_color_selector 0x0 +int color mtrl_btn_transparent_bg_color 0x0 +int color mtrl_calendar_item_stroke_color 0x0 +int color mtrl_calendar_selected_range 0x0 +int color mtrl_card_view_foreground 0x0 +int color mtrl_card_view_ripple 0x0 +int color mtrl_chip_background_color 0x0 +int color mtrl_chip_close_icon_tint 0x0 +int color mtrl_chip_surface_color 0x0 +int color mtrl_chip_text_color 0x0 +int color mtrl_choice_chip_background_color 0x0 +int color mtrl_choice_chip_ripple_color 0x0 +int color mtrl_choice_chip_text_color 0x0 +int color mtrl_error 0x0 +int color mtrl_fab_bg_color_selector 0x0 +int color mtrl_fab_icon_text_color_selector 0x0 +int color mtrl_fab_ripple_color 0x0 +int color mtrl_filled_background_color 0x0 +int color mtrl_filled_icon_tint 0x0 +int color mtrl_filled_stroke_color 0x0 +int color mtrl_indicator_text_color 0x0 +int color mtrl_navigation_bar_colored_item_tint 0x0 +int color mtrl_navigation_bar_colored_ripple_color 0x0 +int color mtrl_navigation_bar_item_tint 0x0 +int color mtrl_navigation_bar_ripple_color 0x0 +int color mtrl_navigation_item_background_color 0x0 +int color mtrl_navigation_item_icon_tint 0x0 +int color mtrl_navigation_item_text_color 0x0 +int color mtrl_on_primary_text_btn_text_color_selector 0x0 +int color mtrl_on_surface_ripple_color 0x0 +int color mtrl_outlined_icon_tint 0x0 +int color mtrl_outlined_stroke_color 0x0 +int color mtrl_popupmenu_overlay_color 0x0 +int color mtrl_scrim_color 0x0 +int color mtrl_switch_thumb_icon_tint 0x0 +int color mtrl_switch_thumb_tint 0x0 +int color mtrl_switch_track_decoration_tint 0x0 +int color mtrl_switch_track_tint 0x0 +int color mtrl_tabs_colored_ripple_color 0x0 +int color mtrl_tabs_icon_color_selector 0x0 +int color mtrl_tabs_icon_color_selector_colored 0x0 +int color mtrl_tabs_legacy_text_color_selector 0x0 +int color mtrl_tabs_ripple_color 0x0 +int color mtrl_text_btn_text_color_selector 0x0 +int color mtrl_textinput_default_box_stroke_color 0x0 +int color mtrl_textinput_disabled_color 0x0 +int color mtrl_textinput_filled_box_default_background_color 0x0 +int color mtrl_textinput_focused_box_stroke_color 0x0 +int color mtrl_textinput_hovered_box_stroke_color 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int color primary_dark_material_dark 0x0 +int color primary_dark_material_light 0x0 +int color primary_material_dark 0x0 +int color primary_material_light 0x0 +int color primary_text_default_material_dark 0x0 +int color primary_text_default_material_light 0x0 +int color primary_text_disabled_material_dark 0x0 +int color primary_text_disabled_material_light 0x0 +int color ripple_material_dark 0x0 +int color ripple_material_light 0x0 +int color secondary_text_default_material_dark 0x0 +int color secondary_text_default_material_light 0x0 +int color secondary_text_disabled_material_dark 0x0 +int color secondary_text_disabled_material_light 0x0 +int color switch_thumb_disabled_material_dark 0x0 +int color switch_thumb_disabled_material_light 0x0 +int color switch_thumb_material_dark 0x0 +int color switch_thumb_material_light 0x0 +int color switch_thumb_normal_material_dark 0x0 +int color switch_thumb_normal_material_light 0x0 +int color tooltip_background_dark 0x0 +int color tooltip_background_light 0x0 +int dimen abc_action_bar_content_inset_material 0x0 +int dimen abc_action_bar_content_inset_with_nav 0x0 +int dimen abc_action_bar_default_height_material 0x0 +int dimen abc_action_bar_default_padding_end_material 0x0 +int dimen abc_action_bar_default_padding_start_material 0x0 +int dimen abc_action_bar_elevation_material 0x0 +int dimen abc_action_bar_icon_vertical_padding_material 0x0 +int dimen abc_action_bar_overflow_padding_end_material 0x0 +int dimen abc_action_bar_overflow_padding_start_material 0x0 +int dimen abc_action_bar_stacked_max_height 0x0 +int dimen abc_action_bar_stacked_tab_max_width 0x0 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 +int dimen abc_action_bar_subtitle_top_margin_material 0x0 +int dimen abc_action_button_min_height_material 0x0 +int dimen abc_action_button_min_width_material 0x0 +int dimen abc_action_button_min_width_overflow_material 0x0 +int dimen abc_alert_dialog_button_bar_height 0x0 +int dimen abc_alert_dialog_button_dimen 0x0 +int dimen abc_button_inset_horizontal_material 0x0 +int dimen abc_button_inset_vertical_material 0x0 +int dimen abc_button_padding_horizontal_material 0x0 +int dimen abc_button_padding_vertical_material 0x0 +int dimen abc_cascading_menus_min_smallest_width 0x0 +int dimen abc_config_prefDialogWidth 0x0 +int dimen abc_control_corner_material 0x0 +int dimen abc_control_inset_material 0x0 +int dimen abc_control_padding_material 0x0 +int dimen abc_dialog_corner_radius_material 0x0 +int dimen abc_dialog_fixed_height_major 0x0 +int dimen abc_dialog_fixed_height_minor 0x0 +int dimen abc_dialog_fixed_width_major 0x0 +int dimen abc_dialog_fixed_width_minor 0x0 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 +int dimen abc_dialog_list_padding_top_no_title 0x0 +int dimen abc_dialog_min_width_major 0x0 +int dimen abc_dialog_min_width_minor 0x0 +int dimen abc_dialog_padding_material 0x0 +int dimen abc_dialog_padding_top_material 0x0 +int dimen abc_dialog_title_divider_material 0x0 +int dimen abc_disabled_alpha_material_dark 0x0 +int dimen abc_disabled_alpha_material_light 0x0 +int dimen abc_dropdownitem_icon_width 0x0 +int dimen abc_dropdownitem_text_padding_left 0x0 +int dimen abc_dropdownitem_text_padding_right 0x0 +int dimen abc_edit_text_inset_bottom_material 0x0 +int dimen abc_edit_text_inset_horizontal_material 0x0 +int dimen abc_edit_text_inset_top_material 0x0 +int dimen abc_floating_window_z 0x0 +int dimen abc_list_item_height_large_material 0x0 +int dimen abc_list_item_height_material 0x0 +int dimen abc_list_item_height_small_material 0x0 +int dimen abc_list_item_padding_horizontal_material 0x0 +int dimen abc_panel_menu_list_width 0x0 +int dimen abc_progress_bar_height_material 0x0 +int dimen abc_search_view_preferred_height 0x0 +int dimen abc_search_view_preferred_width 0x0 +int dimen abc_seekbar_track_background_height_material 0x0 +int dimen abc_seekbar_track_progress_height_material 0x0 +int dimen abc_select_dialog_padding_start_material 0x0 +int dimen abc_star_big 0x0 +int dimen abc_star_medium 0x0 +int dimen abc_star_small 0x0 +int dimen abc_switch_padding 0x0 +int dimen abc_text_size_body_1_material 0x0 +int dimen abc_text_size_body_2_material 0x0 +int dimen abc_text_size_button_material 0x0 +int dimen abc_text_size_caption_material 0x0 +int dimen abc_text_size_display_1_material 0x0 +int dimen abc_text_size_display_2_material 0x0 +int dimen abc_text_size_display_3_material 0x0 +int dimen abc_text_size_display_4_material 0x0 +int dimen abc_text_size_headline_material 0x0 +int dimen abc_text_size_large_material 0x0 +int dimen abc_text_size_medium_material 0x0 +int dimen abc_text_size_menu_header_material 0x0 +int dimen abc_text_size_menu_material 0x0 +int dimen abc_text_size_small_material 0x0 +int dimen abc_text_size_subhead_material 0x0 +int dimen abc_text_size_subtitle_material_toolbar 0x0 +int dimen abc_text_size_title_material 0x0 +int dimen abc_text_size_title_material_toolbar 0x0 +int dimen appcompat_dialog_background_inset 0x0 +int dimen cardview_compat_inset_shadow 0x0 +int dimen cardview_default_elevation 0x0 +int dimen cardview_default_radius 0x0 +int dimen clock_face_margin_start 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen def_drawer_elevation 0x0 +int dimen design_appbar_elevation 0x0 +int dimen design_bottom_navigation_active_item_max_width 0x0 +int dimen design_bottom_navigation_active_item_min_width 0x0 +int dimen design_bottom_navigation_active_text_size 0x0 +int dimen design_bottom_navigation_elevation 0x0 +int dimen design_bottom_navigation_height 0x0 +int dimen design_bottom_navigation_icon_size 0x0 +int dimen design_bottom_navigation_item_max_width 0x0 +int dimen design_bottom_navigation_item_min_width 0x0 +int dimen design_bottom_navigation_label_padding 0x0 +int dimen design_bottom_navigation_margin 0x0 +int dimen design_bottom_navigation_shadow_height 0x0 +int dimen design_bottom_navigation_text_size 0x0 +int dimen design_bottom_sheet_elevation 0x0 +int dimen design_bottom_sheet_modal_elevation 0x0 +int dimen design_bottom_sheet_peek_height_min 0x0 +int dimen design_fab_border_width 0x0 +int dimen design_fab_elevation 0x0 +int dimen design_fab_image_size 0x0 +int dimen design_fab_size_mini 0x0 +int dimen design_fab_size_normal 0x0 +int dimen design_fab_translation_z_hovered_focused 0x0 +int dimen design_fab_translation_z_pressed 0x0 +int dimen design_navigation_elevation 0x0 +int dimen design_navigation_icon_padding 0x0 +int dimen design_navigation_icon_size 0x0 +int dimen design_navigation_item_horizontal_padding 0x0 +int dimen design_navigation_item_icon_padding 0x0 +int dimen design_navigation_item_vertical_padding 0x0 +int dimen design_navigation_max_width 0x0 +int dimen design_navigation_padding_bottom 0x0 +int dimen design_navigation_separator_vertical_padding 0x0 +int dimen design_snackbar_action_inline_max_width 0x0 +int dimen design_snackbar_action_text_color_alpha 0x0 +int dimen design_snackbar_background_corner_radius 0x0 +int dimen design_snackbar_elevation 0x0 +int dimen design_snackbar_extra_spacing_horizontal 0x0 +int dimen design_snackbar_max_width 0x0 +int dimen design_snackbar_min_width 0x0 +int dimen design_snackbar_padding_horizontal 0x0 +int dimen design_snackbar_padding_vertical 0x0 +int dimen design_snackbar_padding_vertical_2lines 0x0 +int dimen design_snackbar_text_size 0x0 +int dimen design_tab_max_width 0x0 +int dimen design_tab_scrollable_min_width 0x0 +int dimen design_tab_text_size 0x0 +int dimen design_tab_text_size_2line 0x0 +int dimen design_textinput_caption_translate_y 0x0 +int dimen disabled_alpha_material_dark 0x0 +int dimen disabled_alpha_material_light 0x0 +int dimen fastscroll_default_thickness 0x0 +int dimen fastscroll_margin 0x0 +int dimen fastscroll_minimum_range 0x0 +int dimen highlight_alpha_material_colored 0x0 +int dimen highlight_alpha_material_dark 0x0 +int dimen highlight_alpha_material_light 0x0 +int dimen hint_alpha_material_dark 0x0 +int dimen hint_alpha_material_light 0x0 +int dimen hint_pressed_alpha_material_dark 0x0 +int dimen hint_pressed_alpha_material_light 0x0 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x0 +int dimen item_touch_helper_swipe_escape_max_velocity 0x0 +int dimen item_touch_helper_swipe_escape_velocity 0x0 +int dimen m3_alert_dialog_action_bottom_padding 0x0 +int dimen m3_alert_dialog_action_top_padding 0x0 +int dimen m3_alert_dialog_corner_size 0x0 +int dimen m3_alert_dialog_elevation 0x0 +int dimen m3_alert_dialog_icon_margin 0x0 +int dimen m3_alert_dialog_icon_size 0x0 +int dimen m3_alert_dialog_title_bottom_margin 0x0 +int dimen m3_appbar_expanded_title_margin_bottom 0x0 +int dimen m3_appbar_expanded_title_margin_horizontal 0x0 +int dimen m3_appbar_scrim_height_trigger 0x0 +int dimen m3_appbar_scrim_height_trigger_large 0x0 +int dimen m3_appbar_scrim_height_trigger_medium 0x0 +int dimen m3_appbar_size_compact 0x0 +int dimen m3_appbar_size_large 0x0 +int dimen m3_appbar_size_medium 0x0 +int dimen m3_badge_horizontal_offset 0x0 +int dimen m3_badge_offset 0x0 +int dimen m3_badge_size 0x0 +int dimen m3_badge_vertical_offset 0x0 +int dimen m3_badge_with_text_horizontal_offset 0x0 +int dimen m3_badge_with_text_offset 0x0 +int dimen m3_badge_with_text_size 0x0 +int dimen m3_badge_with_text_vertical_offset 0x0 +int dimen m3_bottom_nav_item_active_indicator_height 0x0 +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x0 +int dimen m3_bottom_nav_item_active_indicator_width 0x0 +int dimen m3_bottom_nav_item_padding_bottom 0x0 +int dimen m3_bottom_nav_item_padding_top 0x0 +int dimen m3_bottom_nav_min_height 0x0 +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x0 +int dimen m3_bottom_sheet_elevation 0x0 +int dimen m3_bottom_sheet_modal_elevation 0x0 +int dimen m3_bottomappbar_fab_cradle_margin 0x0 +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x0 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x0 +int dimen m3_bottomappbar_fab_end_margin 0x0 +int dimen m3_bottomappbar_height 0x0 +int dimen m3_bottomappbar_horizontal_padding 0x0 +int dimen m3_btn_dialog_btn_min_width 0x0 +int dimen m3_btn_dialog_btn_spacing 0x0 +int dimen m3_btn_disabled_elevation 0x0 +int dimen m3_btn_disabled_translation_z 0x0 +int dimen m3_btn_elevated_btn_elevation 0x0 +int dimen m3_btn_elevation 0x0 +int dimen m3_btn_icon_btn_padding_left 0x0 +int dimen m3_btn_icon_btn_padding_right 0x0 +int dimen m3_btn_icon_only_default_padding 0x0 +int dimen m3_btn_icon_only_default_size 0x0 +int dimen m3_btn_icon_only_icon_padding 0x0 +int dimen m3_btn_icon_only_min_width 0x0 +int dimen m3_btn_inset 0x0 +int dimen m3_btn_max_width 0x0 +int dimen m3_btn_padding_bottom 0x0 +int dimen m3_btn_padding_left 0x0 +int dimen m3_btn_padding_right 0x0 +int dimen m3_btn_padding_top 0x0 +int dimen m3_btn_stroke_size 0x0 +int dimen m3_btn_text_btn_icon_padding_left 0x0 +int dimen m3_btn_text_btn_icon_padding_right 0x0 +int dimen m3_btn_text_btn_padding_left 0x0 +int dimen m3_btn_text_btn_padding_right 0x0 +int dimen m3_btn_translation_z_base 0x0 +int dimen m3_btn_translation_z_hovered 0x0 +int dimen m3_card_disabled_z 0x0 +int dimen m3_card_dragged_z 0x0 +int dimen m3_card_elevated_disabled_z 0x0 +int dimen m3_card_elevated_dragged_z 0x0 +int dimen m3_card_elevated_elevation 0x0 +int dimen m3_card_elevated_hovered_z 0x0 +int dimen m3_card_elevation 0x0 +int dimen m3_card_hovered_z 0x0 +int dimen m3_card_stroke_width 0x0 +int dimen m3_carousel_debug_keyline_width 0x0 +int dimen m3_carousel_extra_small_item_size 0x0 +int dimen m3_carousel_gone_size 0x0 +int dimen m3_carousel_small_item_default_corner_size 0x0 +int dimen m3_carousel_small_item_size_max 0x0 +int dimen m3_carousel_small_item_size_min 0x0 +int dimen m3_chip_checked_hovered_translation_z 0x0 +int dimen m3_chip_corner_size 0x0 +int dimen m3_chip_disabled_translation_z 0x0 +int dimen m3_chip_dragged_translation_z 0x0 +int dimen m3_chip_elevated_elevation 0x0 +int dimen m3_chip_hovered_translation_z 0x0 +int dimen m3_chip_icon_size 0x0 +int dimen m3_comp_assist_chip_container_height 0x0 +int dimen m3_comp_assist_chip_elevated_container_elevation 0x0 +int dimen m3_comp_assist_chip_flat_container_elevation 0x0 +int dimen m3_comp_assist_chip_flat_outline_width 0x0 +int dimen m3_comp_assist_chip_with_icon_icon_size 0x0 +int dimen m3_comp_badge_large_size 0x0 +int dimen m3_comp_badge_size 0x0 +int dimen m3_comp_bottom_app_bar_container_elevation 0x0 +int dimen m3_comp_bottom_app_bar_container_height 0x0 +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x0 +int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x0 +int dimen m3_comp_divider_thickness 0x0 +int dimen m3_comp_elevated_button_container_elevation 0x0 +int dimen m3_comp_elevated_button_disabled_container_elevation 0x0 +int dimen m3_comp_elevated_card_container_elevation 0x0 +int dimen m3_comp_elevated_card_icon_size 0x0 +int dimen m3_comp_extended_fab_primary_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_container_height 0x0 +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x0 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x0 +int dimen m3_comp_extended_fab_primary_icon_size 0x0 +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x0 +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_container_elevation 0x0 +int dimen m3_comp_fab_primary_container_height 0x0 +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_hover_container_elevation 0x0 +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_icon_size 0x0 +int dimen m3_comp_fab_primary_large_container_height 0x0 +int dimen m3_comp_fab_primary_large_icon_size 0x0 +int dimen m3_comp_fab_primary_pressed_container_elevation 0x0 +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x0 +int dimen m3_comp_fab_primary_small_container_height 0x0 +int dimen m3_comp_fab_primary_small_icon_size 0x0 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x0 +int dimen m3_comp_filled_button_container_elevation 0x0 +int dimen m3_comp_filled_button_with_icon_icon_size 0x0 +int dimen m3_comp_filled_card_container_elevation 0x0 +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x0 +int dimen m3_comp_filled_card_icon_size 0x0 +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x0 +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x0 +int dimen m3_comp_filter_chip_container_height 0x0 +int dimen m3_comp_filter_chip_elevated_container_elevation 0x0 +int dimen m3_comp_filter_chip_flat_container_elevation 0x0 +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x0 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x0 +int dimen m3_comp_input_chip_container_elevation 0x0 +int dimen m3_comp_input_chip_container_height 0x0 +int dimen m3_comp_input_chip_unselected_outline_width 0x0 +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x0 +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x0 +int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x0 +int dimen m3_comp_menu_container_elevation 0x0 +int dimen m3_comp_navigation_bar_active_indicator_height 0x0 +int dimen m3_comp_navigation_bar_active_indicator_width 0x0 +int dimen m3_comp_navigation_bar_container_elevation 0x0 +int dimen m3_comp_navigation_bar_container_height 0x0 +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x0 +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x0 +int dimen m3_comp_navigation_bar_icon_size 0x0 +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_container_width 0x0 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_icon_size 0x0 +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x0 +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x0 +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x0 +int dimen m3_comp_navigation_rail_active_indicator_height 0x0 +int dimen m3_comp_navigation_rail_active_indicator_width 0x0 +int dimen m3_comp_navigation_rail_container_elevation 0x0 +int dimen m3_comp_navigation_rail_container_width 0x0 +int dimen m3_comp_navigation_rail_icon_size 0x0 +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x0 +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x0 +int dimen m3_comp_outlined_button_outline_width 0x0 +int dimen m3_comp_outlined_card_container_elevation 0x0 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x0 +int dimen m3_comp_outlined_card_icon_size 0x0 +int dimen m3_comp_outlined_card_outline_width 0x0 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x0 +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x0 +int dimen m3_comp_outlined_text_field_focus_outline_width 0x0 +int dimen m3_comp_outlined_text_field_outline_width 0x0 +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x0 +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_divider_height 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x0 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x0 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x0 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x0 +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x0 +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_search_bar_avatar_size 0x0 +int dimen m3_comp_search_bar_container_elevation 0x0 +int dimen m3_comp_search_bar_container_height 0x0 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x0 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x0 +int dimen m3_comp_search_view_container_elevation 0x0 +int dimen m3_comp_search_view_docked_header_container_height 0x0 +int dimen m3_comp_search_view_full_screen_header_container_height 0x0 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x0 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x0 +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x0 +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x0 +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x0 +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x0 +int dimen m3_comp_sheet_side_docked_container_width 0x0 +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x0 +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x0 +int dimen m3_comp_slider_disabled_active_track_opacity 0x0 +int dimen m3_comp_slider_disabled_handle_opacity 0x0 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x0 +int dimen m3_comp_slider_inactive_track_height 0x0 +int dimen m3_comp_snackbar_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_container_height 0x0 +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x0 +int dimen m3_comp_suggestion_chip_flat_outline_width 0x0 +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x0 +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x0 +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x0 +int dimen m3_comp_switch_disabled_track_opacity 0x0 +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x0 +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x0 +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x0 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x0 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_switch_track_height 0x0 +int dimen m3_comp_switch_track_width 0x0 +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x0 +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x0 +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x0 +int dimen m3_comp_text_button_focus_state_layer_opacity 0x0 +int dimen m3_comp_text_button_hover_state_layer_opacity 0x0 +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x0 +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x0 +int dimen m3_comp_time_picker_container_elevation 0x0 +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_period_selector_outline_width 0x0 +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x0 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x0 +int dimen m3_comp_top_app_bar_large_container_height 0x0 +int dimen m3_comp_top_app_bar_medium_container_height 0x0 +int dimen m3_comp_top_app_bar_small_container_elevation 0x0 +int dimen m3_comp_top_app_bar_small_container_height 0x0 +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x0 +int dimen m3_datepicker_elevation 0x0 +int dimen m3_divider_heavy_thickness 0x0 +int dimen m3_extended_fab_bottom_padding 0x0 +int dimen m3_extended_fab_end_padding 0x0 +int dimen m3_extended_fab_icon_padding 0x0 +int dimen m3_extended_fab_min_height 0x0 +int dimen m3_extended_fab_start_padding 0x0 +int dimen m3_extended_fab_top_padding 0x0 +int dimen m3_fab_border_width 0x0 +int dimen m3_fab_corner_size 0x0 +int dimen m3_fab_translation_z_hovered_focused 0x0 +int dimen m3_fab_translation_z_pressed 0x0 +int dimen m3_large_fab_max_image_size 0x0 +int dimen m3_large_fab_size 0x0 +int dimen m3_menu_elevation 0x0 +int dimen m3_navigation_drawer_layout_corner_size 0x0 +int dimen m3_navigation_item_horizontal_padding 0x0 +int dimen m3_navigation_item_icon_padding 0x0 +int dimen m3_navigation_item_shape_inset_bottom 0x0 +int dimen m3_navigation_item_shape_inset_end 0x0 +int dimen m3_navigation_item_shape_inset_start 0x0 +int dimen m3_navigation_item_shape_inset_top 0x0 +int dimen m3_navigation_item_vertical_padding 0x0 +int dimen m3_navigation_menu_divider_horizontal_padding 0x0 +int dimen m3_navigation_menu_headline_horizontal_padding 0x0 +int dimen m3_navigation_rail_default_width 0x0 +int dimen m3_navigation_rail_elevation 0x0 +int dimen m3_navigation_rail_icon_size 0x0 +int dimen m3_navigation_rail_item_active_indicator_height 0x0 +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x0 +int dimen m3_navigation_rail_item_active_indicator_width 0x0 +int dimen m3_navigation_rail_item_min_height 0x0 +int dimen m3_navigation_rail_item_padding_bottom 0x0 +int dimen m3_navigation_rail_item_padding_top 0x0 +int dimen m3_ripple_default_alpha 0x0 +int dimen m3_ripple_focused_alpha 0x0 +int dimen m3_ripple_hovered_alpha 0x0 +int dimen m3_ripple_pressed_alpha 0x0 +int dimen m3_ripple_selectable_pressed_alpha 0x0 +int dimen m3_searchbar_elevation 0x0 +int dimen m3_searchbar_height 0x0 +int dimen m3_searchbar_margin_horizontal 0x0 +int dimen m3_searchbar_margin_vertical 0x0 +int dimen m3_searchbar_outlined_stroke_width 0x0 +int dimen m3_searchbar_padding_start 0x0 +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x0 +int dimen m3_searchbar_text_size 0x0 +int dimen m3_searchview_divider_size 0x0 +int dimen m3_searchview_elevation 0x0 +int dimen m3_searchview_height 0x0 +int dimen m3_side_sheet_margin_detached 0x0 +int dimen m3_side_sheet_modal_elevation 0x0 +int dimen m3_side_sheet_standard_elevation 0x0 +int dimen m3_side_sheet_width 0x0 +int dimen m3_simple_item_color_hovered_alpha 0x0 +int dimen m3_simple_item_color_selected_alpha 0x0 +int dimen m3_slider_inactive_track_height 0x0 +int dimen m3_slider_thumb_elevation 0x0 +int dimen m3_small_fab_max_image_size 0x0 +int dimen m3_small_fab_size 0x0 +int dimen m3_snackbar_action_text_color_alpha 0x0 +int dimen m3_snackbar_margin 0x0 +int dimen m3_sys_elevation_level0 0x0 +int dimen m3_sys_elevation_level1 0x0 +int dimen m3_sys_elevation_level2 0x0 +int dimen m3_sys_elevation_level3 0x0 +int dimen m3_sys_elevation_level4 0x0 +int dimen m3_sys_elevation_level5 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_control_y2 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_linear_control_x1 0x0 +int dimen m3_sys_motion_easing_linear_control_x2 0x0 +int dimen m3_sys_motion_easing_linear_control_y1 0x0 +int dimen m3_sys_motion_easing_linear_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_control_y2 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x0 +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x0 +int dimen m3_sys_state_dragged_state_layer_opacity 0x0 +int dimen m3_sys_state_focus_state_layer_opacity 0x0 +int dimen m3_sys_state_hover_state_layer_opacity 0x0 +int dimen m3_sys_state_pressed_state_layer_opacity 0x0 +int dimen m3_timepicker_display_stroke_width 0x0 +int dimen m3_timepicker_window_elevation 0x0 +int dimen m3_toolbar_text_size_title 0x0 +int dimen material_bottom_sheet_max_width 0x0 +int dimen material_clock_display_height 0x0 +int dimen material_clock_display_padding 0x0 +int dimen material_clock_display_width 0x0 +int dimen material_clock_face_margin_top 0x0 +int dimen material_clock_hand_center_dot_radius 0x0 +int dimen material_clock_hand_padding 0x0 +int dimen material_clock_hand_stroke_width 0x0 +int dimen material_clock_number_text_size 0x0 +int dimen material_clock_period_toggle_height 0x0 +int dimen material_clock_period_toggle_horizontal_gap 0x0 +int dimen material_clock_period_toggle_vertical_gap 0x0 +int dimen material_clock_period_toggle_width 0x0 +int dimen material_clock_size 0x0 +int dimen material_cursor_inset 0x0 +int dimen material_cursor_width 0x0 +int dimen material_divider_thickness 0x0 +int dimen material_emphasis_disabled 0x0 +int dimen material_emphasis_disabled_background 0x0 +int dimen material_emphasis_high_type 0x0 +int dimen material_emphasis_medium 0x0 +int dimen material_filled_edittext_font_1_3_padding_bottom 0x0 +int dimen material_filled_edittext_font_1_3_padding_top 0x0 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x0 +int dimen material_filled_edittext_font_2_0_padding_top 0x0 +int dimen material_font_1_3_box_collapsed_padding_top 0x0 +int dimen material_font_2_0_box_collapsed_padding_top 0x0 +int dimen material_helper_text_default_padding_top 0x0 +int dimen material_helper_text_font_1_3_padding_horizontal 0x0 +int dimen material_helper_text_font_1_3_padding_top 0x0 +int dimen material_input_text_to_prefix_suffix_padding 0x0 +int dimen material_textinput_default_width 0x0 +int dimen material_textinput_max_width 0x0 +int dimen material_textinput_min_width 0x0 +int dimen material_time_picker_minimum_screen_height 0x0 +int dimen material_time_picker_minimum_screen_width 0x0 +int dimen material_timepicker_dialog_buttons_margin_top 0x0 +int dimen mtrl_alert_dialog_background_inset_bottom 0x0 +int dimen mtrl_alert_dialog_background_inset_end 0x0 +int dimen mtrl_alert_dialog_background_inset_start 0x0 +int dimen mtrl_alert_dialog_background_inset_top 0x0 +int dimen mtrl_alert_dialog_picker_background_inset 0x0 +int dimen mtrl_badge_horizontal_edge_offset 0x0 +int dimen mtrl_badge_long_text_horizontal_padding 0x0 +int dimen mtrl_badge_size 0x0 +int dimen mtrl_badge_text_horizontal_edge_offset 0x0 +int dimen mtrl_badge_text_size 0x0 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x0 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x0 +int dimen mtrl_badge_with_text_size 0x0 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x0 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x0 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x0 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x0 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x0 +int dimen mtrl_bottomappbar_height 0x0 +int dimen mtrl_btn_corner_radius 0x0 +int dimen mtrl_btn_dialog_btn_min_width 0x0 +int dimen mtrl_btn_disabled_elevation 0x0 +int dimen mtrl_btn_disabled_z 0x0 +int dimen mtrl_btn_elevation 0x0 +int dimen mtrl_btn_focused_z 0x0 +int dimen mtrl_btn_hovered_z 0x0 +int dimen mtrl_btn_icon_btn_padding_left 0x0 +int dimen mtrl_btn_icon_padding 0x0 +int dimen mtrl_btn_inset 0x0 +int dimen mtrl_btn_letter_spacing 0x0 +int dimen mtrl_btn_max_width 0x0 +int dimen mtrl_btn_padding_bottom 0x0 +int dimen mtrl_btn_padding_left 0x0 +int dimen mtrl_btn_padding_right 0x0 +int dimen mtrl_btn_padding_top 0x0 +int dimen mtrl_btn_pressed_z 0x0 +int dimen mtrl_btn_snackbar_margin_horizontal 0x0 +int dimen mtrl_btn_stroke_size 0x0 +int dimen mtrl_btn_text_btn_icon_padding 0x0 +int dimen mtrl_btn_text_btn_padding_left 0x0 +int dimen mtrl_btn_text_btn_padding_right 0x0 +int dimen mtrl_btn_text_size 0x0 +int dimen mtrl_btn_z 0x0 +int dimen mtrl_calendar_action_confirm_button_min_width 0x0 +int dimen mtrl_calendar_action_height 0x0 +int dimen mtrl_calendar_action_padding 0x0 +int dimen mtrl_calendar_bottom_padding 0x0 +int dimen mtrl_calendar_content_padding 0x0 +int dimen mtrl_calendar_day_corner 0x0 +int dimen mtrl_calendar_day_height 0x0 +int dimen mtrl_calendar_day_horizontal_padding 0x0 +int dimen mtrl_calendar_day_today_stroke 0x0 +int dimen mtrl_calendar_day_vertical_padding 0x0 +int dimen mtrl_calendar_day_width 0x0 +int dimen mtrl_calendar_days_of_week_height 0x0 +int dimen mtrl_calendar_dialog_background_inset 0x0 +int dimen mtrl_calendar_header_content_padding 0x0 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x0 +int dimen mtrl_calendar_header_divider_thickness 0x0 +int dimen mtrl_calendar_header_height 0x0 +int dimen mtrl_calendar_header_height_fullscreen 0x0 +int dimen mtrl_calendar_header_selection_line_height 0x0 +int dimen mtrl_calendar_header_text_padding 0x0 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x0 +int dimen mtrl_calendar_header_toggle_margin_top 0x0 +int dimen mtrl_calendar_landscape_header_width 0x0 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x0 +int dimen mtrl_calendar_month_horizontal_padding 0x0 +int dimen mtrl_calendar_month_vertical_padding 0x0 +int dimen mtrl_calendar_navigation_bottom_padding 0x0 +int dimen mtrl_calendar_navigation_height 0x0 +int dimen mtrl_calendar_navigation_top_padding 0x0 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x0 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x0 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x0 +int dimen mtrl_calendar_text_input_padding_top 0x0 +int dimen mtrl_calendar_title_baseline_to_top 0x0 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x0 +int dimen mtrl_calendar_year_corner 0x0 +int dimen mtrl_calendar_year_height 0x0 +int dimen mtrl_calendar_year_horizontal_padding 0x0 +int dimen mtrl_calendar_year_vertical_padding 0x0 +int dimen mtrl_calendar_year_width 0x0 +int dimen mtrl_card_checked_icon_margin 0x0 +int dimen mtrl_card_checked_icon_size 0x0 +int dimen mtrl_card_corner_radius 0x0 +int dimen mtrl_card_dragged_z 0x0 +int dimen mtrl_card_elevation 0x0 +int dimen mtrl_card_spacing 0x0 +int dimen mtrl_chip_pressed_translation_z 0x0 +int dimen mtrl_chip_text_size 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x0 +int dimen mtrl_extended_fab_bottom_padding 0x0 +int dimen mtrl_extended_fab_disabled_elevation 0x0 +int dimen mtrl_extended_fab_disabled_translation_z 0x0 +int dimen mtrl_extended_fab_elevation 0x0 +int dimen mtrl_extended_fab_end_padding 0x0 +int dimen mtrl_extended_fab_end_padding_icon 0x0 +int dimen mtrl_extended_fab_icon_size 0x0 +int dimen mtrl_extended_fab_icon_text_spacing 0x0 +int dimen mtrl_extended_fab_min_height 0x0 +int dimen mtrl_extended_fab_min_width 0x0 +int dimen mtrl_extended_fab_start_padding 0x0 +int dimen mtrl_extended_fab_start_padding_icon 0x0 +int dimen mtrl_extended_fab_top_padding 0x0 +int dimen mtrl_extended_fab_translation_z_base 0x0 +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x0 +int dimen mtrl_extended_fab_translation_z_pressed 0x0 +int dimen mtrl_fab_elevation 0x0 +int dimen mtrl_fab_min_touch_target 0x0 +int dimen mtrl_fab_translation_z_hovered_focused 0x0 +int dimen mtrl_fab_translation_z_pressed 0x0 +int dimen mtrl_high_ripple_default_alpha 0x0 +int dimen mtrl_high_ripple_focused_alpha 0x0 +int dimen mtrl_high_ripple_hovered_alpha 0x0 +int dimen mtrl_high_ripple_pressed_alpha 0x0 +int dimen mtrl_low_ripple_default_alpha 0x0 +int dimen mtrl_low_ripple_focused_alpha 0x0 +int dimen mtrl_low_ripple_hovered_alpha 0x0 +int dimen mtrl_low_ripple_pressed_alpha 0x0 +int dimen mtrl_min_touch_target_size 0x0 +int dimen mtrl_navigation_bar_item_default_icon_size 0x0 +int dimen mtrl_navigation_bar_item_default_margin 0x0 +int dimen mtrl_navigation_elevation 0x0 +int dimen mtrl_navigation_item_horizontal_padding 0x0 +int dimen mtrl_navigation_item_icon_padding 0x0 +int dimen mtrl_navigation_item_icon_size 0x0 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x0 +int dimen mtrl_navigation_item_shape_vertical_margin 0x0 +int dimen mtrl_navigation_rail_active_text_size 0x0 +int dimen mtrl_navigation_rail_compact_width 0x0 +int dimen mtrl_navigation_rail_default_width 0x0 +int dimen mtrl_navigation_rail_elevation 0x0 +int dimen mtrl_navigation_rail_icon_margin 0x0 +int dimen mtrl_navigation_rail_icon_size 0x0 +int dimen mtrl_navigation_rail_margin 0x0 +int dimen mtrl_navigation_rail_text_bottom_margin 0x0 +int dimen mtrl_navigation_rail_text_size 0x0 +int dimen mtrl_progress_circular_inset 0x0 +int dimen mtrl_progress_circular_inset_extra_small 0x0 +int dimen mtrl_progress_circular_inset_medium 0x0 +int dimen mtrl_progress_circular_inset_small 0x0 +int dimen mtrl_progress_circular_radius 0x0 +int dimen mtrl_progress_circular_size 0x0 +int dimen mtrl_progress_circular_size_extra_small 0x0 +int dimen mtrl_progress_circular_size_medium 0x0 +int dimen mtrl_progress_circular_size_small 0x0 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x0 +int dimen mtrl_progress_circular_track_thickness_medium 0x0 +int dimen mtrl_progress_circular_track_thickness_small 0x0 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x0 +int dimen mtrl_progress_track_thickness 0x0 +int dimen mtrl_shape_corner_size_large_component 0x0 +int dimen mtrl_shape_corner_size_medium_component 0x0 +int dimen mtrl_shape_corner_size_small_component 0x0 +int dimen mtrl_slider_halo_radius 0x0 +int dimen mtrl_slider_label_padding 0x0 +int dimen mtrl_slider_label_radius 0x0 +int dimen mtrl_slider_label_square_side 0x0 +int dimen mtrl_slider_thumb_elevation 0x0 +int dimen mtrl_slider_thumb_radius 0x0 +int dimen mtrl_slider_tick_radius 0x0 +int dimen mtrl_slider_track_height 0x0 +int dimen mtrl_slider_track_side_padding 0x0 +int dimen mtrl_slider_widget_height 0x0 +int dimen mtrl_snackbar_action_text_color_alpha 0x0 +int dimen mtrl_snackbar_background_corner_radius 0x0 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x0 +int dimen mtrl_snackbar_margin 0x0 +int dimen mtrl_snackbar_message_margin_horizontal 0x0 +int dimen mtrl_snackbar_padding_horizontal 0x0 +int dimen mtrl_switch_text_padding 0x0 +int dimen mtrl_switch_thumb_elevation 0x0 +int dimen mtrl_switch_thumb_size 0x0 +int dimen mtrl_switch_track_height 0x0 +int dimen mtrl_switch_track_width 0x0 +int dimen mtrl_textinput_box_corner_radius_medium 0x0 +int dimen mtrl_textinput_box_corner_radius_small 0x0 +int dimen mtrl_textinput_box_label_cutout_padding 0x0 +int dimen mtrl_textinput_box_stroke_width_default 0x0 +int dimen mtrl_textinput_box_stroke_width_focused 0x0 +int dimen mtrl_textinput_counter_margin_start 0x0 +int dimen mtrl_textinput_end_icon_margin_start 0x0 +int dimen mtrl_textinput_outline_box_expanded_padding 0x0 +int dimen mtrl_textinput_start_icon_margin_end 0x0 +int dimen mtrl_toolbar_default_height 0x0 +int dimen mtrl_tooltip_arrowSize 0x0 +int dimen mtrl_tooltip_cornerSize 0x0 +int dimen mtrl_tooltip_minHeight 0x0 +int dimen mtrl_tooltip_minWidth 0x0 +int dimen mtrl_tooltip_padding 0x0 +int dimen mtrl_transition_shared_axis_slide_distance 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int dimen tooltip_corner_radius 0x0 +int dimen tooltip_horizontal_padding 0x0 +int dimen tooltip_margin 0x0 +int dimen tooltip_precise_anchor_extra_offset 0x0 +int dimen tooltip_precise_anchor_threshold 0x0 +int dimen tooltip_vertical_padding 0x0 +int dimen tooltip_y_offset_non_touch 0x0 +int dimen tooltip_y_offset_touch 0x0 +int drawable abc_ab_share_pack_mtrl_alpha 0x0 +int drawable abc_action_bar_item_background_material 0x0 +int drawable abc_btn_borderless_material 0x0 +int drawable abc_btn_check_material 0x0 +int drawable abc_btn_check_material_anim 0x0 +int drawable abc_btn_check_to_on_mtrl_000 0x0 +int drawable abc_btn_check_to_on_mtrl_015 0x0 +int drawable abc_btn_colored_material 0x0 +int drawable abc_btn_default_mtrl_shape 0x0 +int drawable abc_btn_radio_material 0x0 +int drawable abc_btn_radio_material_anim 0x0 +int drawable abc_btn_radio_to_on_mtrl_000 0x0 +int drawable abc_btn_radio_to_on_mtrl_015 0x0 +int drawable abc_btn_switch_to_on_mtrl_00001 0x0 +int drawable abc_btn_switch_to_on_mtrl_00012 0x0 +int drawable abc_cab_background_internal_bg 0x0 +int drawable abc_cab_background_top_material 0x0 +int drawable abc_cab_background_top_mtrl_alpha 0x0 +int drawable abc_control_background_material 0x0 +int drawable abc_dialog_material_background 0x0 +int drawable abc_edit_text_material 0x0 +int drawable abc_ic_ab_back_material 0x0 +int drawable abc_ic_arrow_drop_right_black_24dp 0x0 +int drawable abc_ic_clear_material 0x0 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 +int drawable abc_ic_go_search_api_material 0x0 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_cut_mtrl_alpha 0x0 +int drawable abc_ic_menu_overflow_material 0x0 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 +int drawable abc_ic_menu_share_mtrl_alpha 0x0 +int drawable abc_ic_search_api_material 0x0 +int drawable abc_ic_star_black_16dp 0x0 +int drawable abc_ic_star_black_36dp 0x0 +int drawable abc_ic_star_black_48dp 0x0 +int drawable abc_ic_star_half_black_16dp 0x0 +int drawable abc_ic_star_half_black_36dp 0x0 +int drawable abc_ic_star_half_black_48dp 0x0 +int drawable abc_ic_voice_search_api_material 0x0 +int drawable abc_item_background_holo_dark 0x0 +int drawable abc_item_background_holo_light 0x0 +int drawable abc_list_divider_material 0x0 +int drawable abc_list_divider_mtrl_alpha 0x0 +int drawable abc_list_focused_holo 0x0 +int drawable abc_list_longpressed_holo 0x0 +int drawable abc_list_pressed_holo_dark 0x0 +int drawable abc_list_pressed_holo_light 0x0 +int drawable abc_list_selector_background_transition_holo_dark 0x0 +int drawable abc_list_selector_background_transition_holo_light 0x0 +int drawable abc_list_selector_disabled_holo_dark 0x0 +int drawable abc_list_selector_disabled_holo_light 0x0 +int drawable abc_list_selector_holo_dark 0x0 +int drawable abc_list_selector_holo_light 0x0 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 +int drawable abc_popup_background_mtrl_mult 0x0 +int drawable abc_ratingbar_indicator_material 0x0 +int drawable abc_ratingbar_material 0x0 +int drawable abc_ratingbar_small_material 0x0 +int drawable abc_scrubber_control_off_mtrl_alpha 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 +int drawable abc_scrubber_primary_mtrl_alpha 0x0 +int drawable abc_scrubber_track_mtrl_alpha 0x0 +int drawable abc_seekbar_thumb_material 0x0 +int drawable abc_seekbar_tick_mark_material 0x0 +int drawable abc_seekbar_track_material 0x0 +int drawable abc_spinner_mtrl_am_alpha 0x0 +int drawable abc_spinner_textfield_background_material 0x0 +int drawable abc_star_black_48dp 0x0 +int drawable abc_star_half_black_48dp 0x0 +int drawable abc_switch_thumb_material 0x0 +int drawable abc_switch_track_mtrl_alpha 0x0 +int drawable abc_tab_indicator_material 0x0 +int drawable abc_tab_indicator_mtrl_alpha 0x0 +int drawable abc_text_cursor_material 0x0 +int drawable abc_text_select_handle_left_mtrl 0x0 +int drawable abc_text_select_handle_left_mtrl_dark 0x0 +int drawable abc_text_select_handle_left_mtrl_light 0x0 +int drawable abc_text_select_handle_middle_mtrl 0x0 +int drawable abc_text_select_handle_middle_mtrl_dark 0x0 +int drawable abc_text_select_handle_middle_mtrl_light 0x0 +int drawable abc_text_select_handle_right_mtrl 0x0 +int drawable abc_text_select_handle_right_mtrl_dark 0x0 +int drawable abc_text_select_handle_right_mtrl_light 0x0 +int drawable abc_textfield_activated_mtrl_alpha 0x0 +int drawable abc_textfield_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_activated_mtrl_alpha 0x0 +int drawable abc_textfield_search_default_mtrl_alpha 0x0 +int drawable abc_textfield_search_material 0x0 +int drawable abc_vector_test 0x0 +int drawable avd_hide_password 0x0 +int drawable avd_show_password 0x0 +int drawable btn_checkbox_checked_mtrl 0x0 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 +int drawable btn_checkbox_unchecked_mtrl 0x0 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 +int drawable btn_radio_off_mtrl 0x0 +int drawable btn_radio_off_to_on_mtrl_animation 0x0 +int drawable btn_radio_on_mtrl 0x0 +int drawable btn_radio_on_to_off_mtrl_animation 0x0 +int drawable design_fab_background 0x0 +int drawable design_ic_visibility 0x0 +int drawable design_ic_visibility_off 0x0 +int drawable design_password_eye 0x0 +int drawable design_snackbar_background 0x0 +int drawable ic_arrow_back_black_24 0x0 +int drawable ic_clear_black_24 0x0 +int drawable ic_clock_black_24dp 0x0 +int drawable ic_keyboard_black_24dp 0x0 +int drawable ic_m3_chip_check 0x0 +int drawable ic_m3_chip_checked_circle 0x0 +int drawable ic_m3_chip_close 0x0 +int drawable ic_mtrl_checked_circle 0x0 +int drawable ic_mtrl_chip_checked_black 0x0 +int drawable ic_mtrl_chip_checked_circle 0x0 +int drawable ic_mtrl_chip_close_circle 0x0 +int drawable ic_search_black_24 0x0 +int drawable m3_appbar_background 0x0 +int drawable m3_avd_hide_password 0x0 +int drawable m3_avd_show_password 0x0 +int drawable m3_password_eye 0x0 +int drawable m3_popupmenu_background_overlay 0x0 +int drawable m3_radiobutton_ripple 0x0 +int drawable m3_selection_control_ripple 0x0 +int drawable m3_tabs_background 0x0 +int drawable m3_tabs_line_indicator 0x0 +int drawable m3_tabs_rounded_line_indicator 0x0 +int drawable m3_tabs_transparent_background 0x0 +int drawable material_cursor_drawable 0x0 +int drawable material_ic_calendar_black_24dp 0x0 +int drawable material_ic_clear_black_24dp 0x0 +int drawable material_ic_edit_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_left_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x0 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x0 +int drawable material_ic_menu_arrow_down_black_24dp 0x0 +int drawable material_ic_menu_arrow_up_black_24dp 0x0 +int drawable mtrl_bottomsheet_drag_handle 0x0 +int drawable mtrl_checkbox_button 0x0 +int drawable mtrl_checkbox_button_checked_unchecked 0x0 +int drawable mtrl_checkbox_button_icon 0x0 +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x0 +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x0 +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x0 +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x0 +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x0 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x0 +int drawable mtrl_checkbox_button_unchecked_checked 0x0 +int drawable mtrl_dialog_background 0x0 +int drawable mtrl_dropdown_arrow 0x0 +int drawable mtrl_ic_arrow_drop_down 0x0 +int drawable mtrl_ic_arrow_drop_up 0x0 +int drawable mtrl_ic_cancel 0x0 +int drawable mtrl_ic_check_mark 0x0 +int drawable mtrl_ic_checkbox_checked 0x0 +int drawable mtrl_ic_checkbox_unchecked 0x0 +int drawable mtrl_ic_error 0x0 +int drawable mtrl_ic_indeterminate 0x0 +int drawable mtrl_navigation_bar_item_background 0x0 +int drawable mtrl_popupmenu_background 0x0 +int drawable mtrl_popupmenu_background_overlay 0x0 +int drawable mtrl_switch_thumb 0x0 +int drawable mtrl_switch_thumb_checked 0x0 +int drawable mtrl_switch_thumb_checked_pressed 0x0 +int drawable mtrl_switch_thumb_checked_unchecked 0x0 +int drawable mtrl_switch_thumb_pressed 0x0 +int drawable mtrl_switch_thumb_pressed_checked 0x0 +int drawable mtrl_switch_thumb_pressed_unchecked 0x0 +int drawable mtrl_switch_thumb_unchecked 0x0 +int drawable mtrl_switch_thumb_unchecked_checked 0x0 +int drawable mtrl_switch_thumb_unchecked_pressed 0x0 +int drawable mtrl_switch_track 0x0 +int drawable mtrl_switch_track_decoration 0x0 +int drawable mtrl_tabs_default_indicator 0x0 +int drawable navigation_empty_icon 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int drawable test_level_drawable 0x0 +int drawable tooltip_frame_dark 0x0 +int drawable tooltip_frame_light 0x0 +int id BOTTOM_END 0x0 +int id BOTTOM_START 0x0 +int id NO_DEBUG 0x0 +int id SHOW_ALL 0x0 +int id SHOW_PATH 0x0 +int id SHOW_PROGRESS 0x0 +int id TOP_END 0x0 +int id TOP_START 0x0 +int id accelerate 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_bar 0x0 +int id action_bar_activity_content 0x0 +int id action_bar_container 0x0 +int id action_bar_root 0x0 +int id action_bar_spinner 0x0 +int id action_bar_subtitle 0x0 +int id action_bar_title 0x0 +int id action_container 0x0 +int id action_context_bar 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_menu_divider 0x0 +int id action_menu_presenter 0x0 +int id action_mode_bar 0x0 +int id action_mode_bar_stub 0x0 +int id action_mode_close_button 0x0 +int id action_text 0x0 +int id actions 0x0 +int id activity_chooser_view_content 0x0 +int id add 0x0 +int id adjacent 0x0 +int id alertTitle 0x0 +int id aligned 0x0 +int id always 0x0 +int id alwaysAllow 0x0 +int id alwaysDisallow 0x0 +int id androidx_window_activity_scope 0x0 +int id animateToEnd 0x0 +int id animateToStart 0x0 +int id arc 0x0 +int id asConfigured 0x0 +int id async 0x0 +int id auto 0x0 +int id autoComplete 0x0 +int id autoCompleteToEnd 0x0 +int id autoCompleteToStart 0x0 +int id barrier 0x0 +int id baseline 0x0 +int id blocking 0x0 +int id bottom 0x0 +int id bottomToTop 0x0 +int id bounce 0x0 +int id buttonPanel 0x0 +int id cancel_button 0x0 +int id center 0x0 +int id centerCrop 0x0 +int id centerInside 0x0 +int id chain 0x0 +int id checkbox 0x0 +int id checked 0x0 +int id chronometer 0x0 +int id circle_center 0x0 +int id clear_text 0x0 +int id clockwise 0x0 +int id compress 0x0 +int id confirm_button 0x0 +int id container 0x0 +int id content 0x0 +int id contentPanel 0x0 +int id contiguous 0x0 +int id coordinator 0x0 +int id cos 0x0 +int id counterclockwise 0x0 +int id cradle 0x0 +int id custom 0x0 +int id customPanel 0x0 +int id cut 0x0 +int id date_picker_actions 0x0 +int id decelerate 0x0 +int id decelerateAndComplete 0x0 +int id decor_content_parent 0x0 +int id default_activity_button 0x0 +int id deltaRelative 0x0 +int id design_bottom_sheet 0x0 +int id design_menu_item_action_area 0x0 +int id design_menu_item_action_area_stub 0x0 +int id design_menu_item_text 0x0 +int id design_navigation_view 0x0 +int id dialog_button 0x0 +int id disjoint 0x0 +int id dragDown 0x0 +int id dragEnd 0x0 +int id dragLeft 0x0 +int id dragRight 0x0 +int id dragStart 0x0 +int id dragUp 0x0 +int id dropdown_menu 0x0 +int id easeIn 0x0 +int id easeInOut 0x0 +int id easeOut 0x0 +int id edge 0x0 +int id edit_query 0x0 +int id elastic 0x0 +int id embed 0x0 +int id end 0x0 +int id endToStart 0x0 +int id expand_activities_button 0x0 +int id expanded_menu 0x0 +int id fade 0x0 +int id fill 0x0 +int id filled 0x0 +int id fitCenter 0x0 +int id fitEnd 0x0 +int id fitStart 0x0 +int id fitXY 0x0 +int id fixed 0x0 +int id flip 0x0 +int id floating 0x0 +int id forever 0x0 +int id fragment_container_view_tag 0x0 +int id fullscreen_header 0x0 +int id ghost_view 0x0 +int id ghost_view_holder 0x0 +int id glide_custom_view_target_tag 0x0 +int id gone 0x0 +int id group_divider 0x0 +int id header_title 0x0 +int id home 0x0 +int id honorRequest 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id ignore 0x0 +int id ignoreRequest 0x0 +int id image 0x0 +int id indeterminate 0x0 +int id info 0x0 +int id invisible 0x0 +int id inward 0x0 +int id italic 0x0 +int id item_touch_helper_previous_elevation 0x0 +int id jumpToEnd 0x0 +int id jumpToStart 0x0 +int id labeled 0x0 +int id layout 0x0 +int id left 0x0 +int id leftToRight 0x0 +int id legacy 0x0 +int id line1 0x0 +int id line3 0x0 +int id linear 0x0 +int id listMode 0x0 +int id list_item 0x0 +int id locale 0x0 +int id ltr 0x0 +int id m3_side_sheet 0x0 +int id marquee 0x0 +int id masked 0x0 +int id match_parent 0x0 +int id material_clock_display 0x0 +int id material_clock_display_and_toggle 0x0 +int id material_clock_face 0x0 +int id material_clock_hand 0x0 +int id material_clock_level 0x0 +int id material_clock_period_am_button 0x0 +int id material_clock_period_pm_button 0x0 +int id material_clock_period_toggle 0x0 +int id material_hour_text_input 0x0 +int id material_hour_tv 0x0 +int id material_label 0x0 +int id material_minute_text_input 0x0 +int id material_minute_tv 0x0 +int id material_textinput_timepicker 0x0 +int id material_timepicker_cancel_button 0x0 +int id material_timepicker_container 0x0 +int id material_timepicker_mode_button 0x0 +int id material_timepicker_ok_button 0x0 +int id material_timepicker_view 0x0 +int id material_value_index 0x0 +int id matrix 0x0 +int id message 0x0 +int id middle 0x0 +int id mini 0x0 +int id month_grid 0x0 +int id month_navigation_bar 0x0 +int id month_navigation_fragment_toggle 0x0 +int id month_navigation_next 0x0 +int id month_navigation_previous 0x0 +int id month_title 0x0 +int id motion_base 0x0 +int id mtrl_anchor_parent 0x0 +int id mtrl_calendar_day_selector_frame 0x0 +int id mtrl_calendar_days_of_week 0x0 +int id mtrl_calendar_frame 0x0 +int id mtrl_calendar_main_pane 0x0 +int id mtrl_calendar_months 0x0 +int id mtrl_calendar_selection_frame 0x0 +int id mtrl_calendar_text_input_frame 0x0 +int id mtrl_calendar_year_selector_frame 0x0 +int id mtrl_card_checked_layer_id 0x0 +int id mtrl_child_content_container 0x0 +int id mtrl_internal_children_alpha_tag 0x0 +int id mtrl_motion_snapshot_view 0x0 +int id mtrl_picker_fullscreen 0x0 +int id mtrl_picker_header 0x0 +int id mtrl_picker_header_selection_text 0x0 +int id mtrl_picker_header_title_and_selection 0x0 +int id mtrl_picker_header_toggle 0x0 +int id mtrl_picker_text_input_date 0x0 +int id mtrl_picker_text_input_range_end 0x0 +int id mtrl_picker_text_input_range_start 0x0 +int id mtrl_picker_title_text 0x0 +int id mtrl_view_tag_bottom_padding 0x0 +int id multiply 0x0 +int id navigation_bar_item_active_indicator_view 0x0 +int id navigation_bar_item_icon_container 0x0 +int id navigation_bar_item_icon_view 0x0 +int id navigation_bar_item_labels_group 0x0 +int id navigation_bar_item_large_label_view 0x0 +int id navigation_bar_item_small_label_view 0x0 +int id navigation_header_container 0x0 +int id never 0x0 +int id none 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id off 0x0 +int id on 0x0 +int id outline 0x0 +int id outward 0x0 +int id packed 0x0 +int id parallax 0x0 +int id parent 0x0 +int id parentPanel 0x0 +int id parentRelative 0x0 +int id parent_matrix 0x0 +int id password_toggle 0x0 +int id path 0x0 +int id pathRelative 0x0 +int id percent 0x0 +int id pin 0x0 +int id position 0x0 +int id postLayout 0x0 +int id pressed 0x0 +int id progress_circular 0x0 +int id progress_horizontal 0x0 +int id radio 0x0 +int id rectangles 0x0 +int id reverseSawtooth 0x0 +int id right 0x0 +int id rightToLeft 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id rounded 0x0 +int id row_index_key 0x0 +int id rtl 0x0 +int id save_non_transition_alpha 0x0 +int id save_overlay_view 0x0 +int id sawtooth 0x0 +int id scale 0x0 +int id screen 0x0 +int id scrollIndicatorDown 0x0 +int id scrollIndicatorUp 0x0 +int id scrollView 0x0 +int id scrollable 0x0 +int id search_badge 0x0 +int id search_bar 0x0 +int id search_bar_text_view 0x0 +int id search_button 0x0 +int id search_close_btn 0x0 +int id search_edit_frame 0x0 +int id search_go_btn 0x0 +int id search_mag_icon 0x0 +int id search_plate 0x0 +int id search_src_text 0x0 +int id search_view_background 0x0 +int id search_view_clear_button 0x0 +int id search_view_content_container 0x0 +int id search_view_divider 0x0 +int id search_view_dummy_toolbar 0x0 +int id search_view_edit_text 0x0 +int id search_view_header_container 0x0 +int id search_view_root 0x0 +int id search_view_scrim 0x0 +int id search_view_search_prefix 0x0 +int id search_view_status_bar_spacer 0x0 +int id search_view_toolbar 0x0 +int id search_view_toolbar_container 0x0 +int id search_voice_btn 0x0 +int id select_dialog_listview 0x0 +int id selected 0x0 +int id selection_type 0x0 +int id shortcut 0x0 +int id sin 0x0 +int id slide 0x0 +int id snackbar_action 0x0 +int id snackbar_text 0x0 +int id spacer 0x0 +int id special_effects_controller_view_tag 0x0 +int id spline 0x0 +int id split_action_bar 0x0 +int id spread 0x0 +int id spread_inside 0x0 +int id square 0x0 +int id src_atop 0x0 +int id src_in 0x0 +int id src_over 0x0 +int id standard 0x0 +int id start 0x0 +int id startHorizontal 0x0 +int id startToEnd 0x0 +int id startVertical 0x0 +int id staticLayout 0x0 +int id staticPostLayout 0x0 +int id stop 0x0 +int id stretch 0x0 +int id submenuarrow 0x0 +int id submit_area 0x0 +int id tabMode 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 0x0 +int id text 0x0 +int id text2 0x0 +int id textSpacerNoButtons 0x0 +int id textSpacerNoTitle 0x0 +int id text_input_end_icon 0x0 +int id text_input_error_icon 0x0 +int id text_input_start_icon 0x0 +int id textinput_counter 0x0 +int id textinput_error 0x0 +int id textinput_helper_text 0x0 +int id textinput_placeholder 0x0 +int id textinput_prefix_text 0x0 +int id textinput_suffix_text 0x0 +int id time 0x0 +int id title 0x0 +int id titleDividerNoCustom 0x0 +int id title_template 0x0 +int id top 0x0 +int id topPanel 0x0 +int id topToBottom 0x0 +int id touch_outside 0x0 +int id transition_current_scene 0x0 +int id transition_layout_save 0x0 +int id transition_position 0x0 +int id transition_scene_layoutid_cache 0x0 +int id transition_transform 0x0 +int id triangle 0x0 +int id unchecked 0x0 +int id uniform 0x0 +int id unlabeled 0x0 +int id up 0x0 +int id view_offset_helper 0x0 +int id view_tree_lifecycle_owner 0x0 +int id view_tree_on_back_pressed_dispatcher_owner 0x0 +int id view_tree_saved_state_registry_owner 0x0 +int id view_tree_view_model_store_owner 0x0 +int id visible 0x0 +int id visible_removing_fragment_view_tag 0x0 +int id with_icon 0x0 +int id withinBounds 0x0 +int id wrap 0x0 +int id wrap_content 0x0 +int integer abc_config_activityDefaultDur 0x0 +int integer abc_config_activityShortDur 0x0 +int integer app_bar_elevation_anim_duration 0x0 +int integer bottom_sheet_slide_duration 0x0 +int integer cancel_button_image_alpha 0x0 +int integer config_tooltipAnimTime 0x0 +int integer design_snackbar_text_max_lines 0x0 +int integer design_tab_indicator_anim_duration_ms 0x0 +int integer hide_password_duration 0x0 +int integer m3_btn_anim_delay_ms 0x0 +int integer m3_btn_anim_duration_ms 0x0 +int integer m3_card_anim_delay_ms 0x0 +int integer m3_card_anim_duration_ms 0x0 +int integer m3_chip_anim_duration 0x0 +int integer m3_sys_motion_duration_extra_long1 0x0 +int integer m3_sys_motion_duration_extra_long2 0x0 +int integer m3_sys_motion_duration_extra_long3 0x0 +int integer m3_sys_motion_duration_extra_long4 0x0 +int integer m3_sys_motion_duration_long1 0x0 +int integer m3_sys_motion_duration_long2 0x0 +int integer m3_sys_motion_duration_long3 0x0 +int integer m3_sys_motion_duration_long4 0x0 +int integer m3_sys_motion_duration_medium1 0x0 +int integer m3_sys_motion_duration_medium2 0x0 +int integer m3_sys_motion_duration_medium3 0x0 +int integer m3_sys_motion_duration_medium4 0x0 +int integer m3_sys_motion_duration_short1 0x0 +int integer m3_sys_motion_duration_short2 0x0 +int integer m3_sys_motion_duration_short3 0x0 +int integer m3_sys_motion_duration_short4 0x0 +int integer m3_sys_motion_path 0x0 +int integer m3_sys_shape_corner_extra_large_corner_family 0x0 +int integer m3_sys_shape_corner_extra_small_corner_family 0x0 +int integer m3_sys_shape_corner_full_corner_family 0x0 +int integer m3_sys_shape_corner_large_corner_family 0x0 +int integer m3_sys_shape_corner_medium_corner_family 0x0 +int integer m3_sys_shape_corner_small_corner_family 0x0 +int integer material_motion_duration_long_1 0x0 +int integer material_motion_duration_long_2 0x0 +int integer material_motion_duration_medium_1 0x0 +int integer material_motion_duration_medium_2 0x0 +int integer material_motion_duration_short_1 0x0 +int integer material_motion_duration_short_2 0x0 +int integer material_motion_path 0x0 +int integer mtrl_badge_max_character_count 0x0 +int integer mtrl_btn_anim_delay_ms 0x0 +int integer mtrl_btn_anim_duration_ms 0x0 +int integer mtrl_calendar_header_orientation 0x0 +int integer mtrl_calendar_selection_text_lines 0x0 +int integer mtrl_calendar_year_selector_span 0x0 +int integer mtrl_card_anim_delay_ms 0x0 +int integer mtrl_card_anim_duration_ms 0x0 +int integer mtrl_chip_anim_duration 0x0 +int integer mtrl_switch_thumb_motion_duration 0x0 +int integer mtrl_switch_thumb_post_morphing_duration 0x0 +int integer mtrl_switch_thumb_pre_morphing_duration 0x0 +int integer mtrl_switch_thumb_pressed_duration 0x0 +int integer mtrl_switch_thumb_viewport_center_coordinate 0x0 +int integer mtrl_switch_thumb_viewport_size 0x0 +int integer mtrl_switch_track_viewport_height 0x0 +int integer mtrl_switch_track_viewport_width 0x0 +int integer mtrl_tab_indicator_anim_duration_ms 0x0 +int integer mtrl_view_gone 0x0 +int integer mtrl_view_invisible 0x0 +int integer mtrl_view_visible 0x0 +int integer show_password_duration 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 +int interpolator fast_out_slow_in 0x0 +int interpolator m3_sys_motion_easing_emphasized 0x0 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x0 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x0 +int interpolator m3_sys_motion_easing_linear 0x0 +int interpolator m3_sys_motion_easing_standard 0x0 +int interpolator m3_sys_motion_easing_standard_accelerate 0x0 +int interpolator m3_sys_motion_easing_standard_decelerate 0x0 +int interpolator mtrl_fast_out_linear_in 0x0 +int interpolator mtrl_fast_out_slow_in 0x0 +int interpolator mtrl_linear 0x0 +int interpolator mtrl_linear_out_slow_in 0x0 +int layout abc_action_bar_title_item 0x0 +int layout abc_action_bar_up_container 0x0 +int layout abc_action_menu_item_layout 0x0 +int layout abc_action_menu_layout 0x0 +int layout abc_action_mode_bar 0x0 +int layout abc_action_mode_close_item_material 0x0 +int layout abc_activity_chooser_view 0x0 +int layout abc_activity_chooser_view_list_item 0x0 +int layout abc_alert_dialog_button_bar_material 0x0 +int layout abc_alert_dialog_material 0x0 +int layout abc_alert_dialog_title_material 0x0 +int layout abc_cascading_menu_item_layout 0x0 +int layout abc_dialog_title_material 0x0 +int layout abc_expanded_menu_layout 0x0 +int layout abc_list_menu_item_checkbox 0x0 +int layout abc_list_menu_item_icon 0x0 +int layout abc_list_menu_item_layout 0x0 +int layout abc_list_menu_item_radio 0x0 +int layout abc_popup_menu_header_item_layout 0x0 +int layout abc_popup_menu_item_layout 0x0 +int layout abc_screen_content_include 0x0 +int layout abc_screen_simple 0x0 +int layout abc_screen_simple_overlay_action_mode 0x0 +int layout abc_screen_toolbar 0x0 +int layout abc_search_dropdown_item_icons_2line 0x0 +int layout abc_search_view 0x0 +int layout abc_select_dialog_material 0x0 +int layout abc_tooltip 0x0 +int layout custom_dialog 0x0 +int layout design_bottom_navigation_item 0x0 +int layout design_bottom_sheet_dialog 0x0 +int layout design_layout_snackbar 0x0 +int layout design_layout_snackbar_include 0x0 +int layout design_layout_tab_icon 0x0 +int layout design_layout_tab_text 0x0 +int layout design_menu_item_action_area 0x0 +int layout design_navigation_item 0x0 +int layout design_navigation_item_header 0x0 +int layout design_navigation_item_separator 0x0 +int layout design_navigation_item_subheader 0x0 +int layout design_navigation_menu 0x0 +int layout design_navigation_menu_item 0x0 +int layout design_text_input_end_icon 0x0 +int layout design_text_input_start_icon 0x0 +int layout m3_alert_dialog 0x0 +int layout m3_alert_dialog_actions 0x0 +int layout m3_alert_dialog_title 0x0 +int layout m3_auto_complete_simple_item 0x0 +int layout m3_side_sheet_dialog 0x0 +int layout material_chip_input_combo 0x0 +int layout material_clock_display 0x0 +int layout material_clock_display_divider 0x0 +int layout material_clock_period_toggle 0x0 +int layout material_clock_period_toggle_land 0x0 +int layout material_clockface_textview 0x0 +int layout material_clockface_view 0x0 +int layout material_radial_view_group 0x0 +int layout material_textinput_timepicker 0x0 +int layout material_time_chip 0x0 +int layout material_time_input 0x0 +int layout material_timepicker 0x0 +int layout material_timepicker_dialog 0x0 +int layout material_timepicker_textinput_display 0x0 +int layout mtrl_alert_dialog 0x0 +int layout mtrl_alert_dialog_actions 0x0 +int layout mtrl_alert_dialog_title 0x0 +int layout mtrl_alert_select_dialog_item 0x0 +int layout mtrl_alert_select_dialog_multichoice 0x0 +int layout mtrl_alert_select_dialog_singlechoice 0x0 +int layout mtrl_auto_complete_simple_item 0x0 +int layout mtrl_calendar_day 0x0 +int layout mtrl_calendar_day_of_week 0x0 +int layout mtrl_calendar_days_of_week 0x0 +int layout mtrl_calendar_horizontal 0x0 +int layout mtrl_calendar_month 0x0 +int layout mtrl_calendar_month_labeled 0x0 +int layout mtrl_calendar_month_navigation 0x0 +int layout mtrl_calendar_months 0x0 +int layout mtrl_calendar_vertical 0x0 +int layout mtrl_calendar_year 0x0 +int layout mtrl_layout_snackbar 0x0 +int layout mtrl_layout_snackbar_include 0x0 +int layout mtrl_navigation_rail_item 0x0 +int layout mtrl_picker_actions 0x0 +int layout mtrl_picker_dialog 0x0 +int layout mtrl_picker_fullscreen 0x0 +int layout mtrl_picker_header_dialog 0x0 +int layout mtrl_picker_header_fullscreen 0x0 +int layout mtrl_picker_header_selection_text 0x0 +int layout mtrl_picker_header_title_text 0x0 +int layout mtrl_picker_header_toggle 0x0 +int layout mtrl_picker_text_input_date 0x0 +int layout mtrl_picker_text_input_date_range 0x0 +int layout mtrl_search_bar 0x0 +int layout mtrl_search_view 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int layout select_dialog_item_material 0x0 +int layout select_dialog_multichoice_material 0x0 +int layout select_dialog_singlechoice_material 0x0 +int layout support_simple_spinner_dropdown_item 0x0 +int plurals mtrl_badge_content_description 0x0 +int string abc_action_bar_home_description 0x0 +int string abc_action_bar_up_description 0x0 +int string abc_action_menu_overflow_description 0x0 +int string abc_action_mode_done 0x0 +int string abc_activity_chooser_view_see_all 0x0 +int string abc_activitychooserview_choose_application 0x0 +int string abc_capital_off 0x0 +int string abc_capital_on 0x0 +int string abc_menu_alt_shortcut_label 0x0 +int string abc_menu_ctrl_shortcut_label 0x0 +int string abc_menu_delete_shortcut_label 0x0 +int string abc_menu_enter_shortcut_label 0x0 +int string abc_menu_function_shortcut_label 0x0 +int string abc_menu_meta_shortcut_label 0x0 +int string abc_menu_shift_shortcut_label 0x0 +int string abc_menu_space_shortcut_label 0x0 +int string abc_menu_sym_shortcut_label 0x0 +int string abc_prepend_shortcut_label 0x0 +int string abc_search_hint 0x0 +int string abc_searchview_description_clear 0x0 +int string abc_searchview_description_query 0x0 +int string abc_searchview_description_search 0x0 +int string abc_searchview_description_submit 0x0 +int string abc_searchview_description_voice 0x0 +int string abc_shareactionprovider_share_with 0x0 +int string abc_shareactionprovider_share_with_application 0x0 +int string abc_toolbar_collapse_description 0x0 +int string appbar_scrolling_view_behavior 0x0 +int string bottom_sheet_behavior 0x0 +int string bottomsheet_action_collapse 0x0 +int string bottomsheet_action_expand 0x0 +int string bottomsheet_action_expand_halfway 0x0 +int string bottomsheet_drag_handle_clicked 0x0 +int string bottomsheet_drag_handle_content_description 0x0 +int string character_counter_content_description 0x0 +int string character_counter_overflowed_content_description 0x0 +int string character_counter_pattern 0x0 +int string clear_text_end_icon_content_description 0x0 +int string error_a11y_label 0x0 +int string error_icon_content_description 0x0 +int string exposed_dropdown_menu_content_description 0x0 +int string fab_transformation_scrim_behavior 0x0 +int string fab_transformation_sheet_behavior 0x0 +int string hide_bottom_view_on_scroll_behavior 0x0 +int string icon_content_description 0x0 +int string item_view_role_description 0x0 +int string m3_ref_typeface_brand_medium 0x0 +int string m3_ref_typeface_brand_regular 0x0 +int string m3_ref_typeface_plain_medium 0x0 +int string m3_ref_typeface_plain_regular 0x0 +int string m3_sys_motion_easing_emphasized 0x0 +int string m3_sys_motion_easing_emphasized_accelerate 0x0 +int string m3_sys_motion_easing_emphasized_decelerate 0x0 +int string m3_sys_motion_easing_emphasized_path_data 0x0 +int string m3_sys_motion_easing_legacy 0x0 +int string m3_sys_motion_easing_legacy_accelerate 0x0 +int string m3_sys_motion_easing_legacy_decelerate 0x0 +int string m3_sys_motion_easing_linear 0x0 +int string m3_sys_motion_easing_standard 0x0 +int string m3_sys_motion_easing_standard_accelerate 0x0 +int string m3_sys_motion_easing_standard_decelerate 0x0 +int string material_clock_display_divider 0x0 +int string material_clock_toggle_content_description 0x0 +int string material_hour_24h_suffix 0x0 +int string material_hour_selection 0x0 +int string material_hour_suffix 0x0 +int string material_minute_selection 0x0 +int string material_minute_suffix 0x0 +int string material_motion_easing_accelerated 0x0 +int string material_motion_easing_decelerated 0x0 +int string material_motion_easing_emphasized 0x0 +int string material_motion_easing_linear 0x0 +int string material_motion_easing_standard 0x0 +int string material_slider_range_end 0x0 +int string material_slider_range_start 0x0 +int string material_slider_value 0x0 +int string material_timepicker_am 0x0 +int string material_timepicker_clock_mode_description 0x0 +int string material_timepicker_hour 0x0 +int string material_timepicker_minute 0x0 +int string material_timepicker_pm 0x0 +int string material_timepicker_select_time 0x0 +int string material_timepicker_text_input_mode_description 0x0 +int string maui_empty_unused 0x0 +int string mtrl_badge_numberless_content_description 0x0 +int string mtrl_checkbox_button_icon_path_checked 0x0 +int string mtrl_checkbox_button_icon_path_group_name 0x0 +int string mtrl_checkbox_button_icon_path_indeterminate 0x0 +int string mtrl_checkbox_button_icon_path_name 0x0 +int string mtrl_checkbox_button_path_checked 0x0 +int string mtrl_checkbox_button_path_group_name 0x0 +int string mtrl_checkbox_button_path_name 0x0 +int string mtrl_checkbox_button_path_unchecked 0x0 +int string mtrl_checkbox_state_description_checked 0x0 +int string mtrl_checkbox_state_description_indeterminate 0x0 +int string mtrl_checkbox_state_description_unchecked 0x0 +int string mtrl_chip_close_icon_content_description 0x0 +int string mtrl_exceed_max_badge_number_content_description 0x0 +int string mtrl_exceed_max_badge_number_suffix 0x0 +int string mtrl_picker_a11y_next_month 0x0 +int string mtrl_picker_a11y_prev_month 0x0 +int string mtrl_picker_announce_current_range_selection 0x0 +int string mtrl_picker_announce_current_selection 0x0 +int string mtrl_picker_announce_current_selection_none 0x0 +int string mtrl_picker_cancel 0x0 +int string mtrl_picker_confirm 0x0 +int string mtrl_picker_date_header_selected 0x0 +int string mtrl_picker_date_header_title 0x0 +int string mtrl_picker_date_header_unselected 0x0 +int string mtrl_picker_day_of_week_column_header 0x0 +int string mtrl_picker_end_date_description 0x0 +int string mtrl_picker_invalid_format 0x0 +int string mtrl_picker_invalid_format_example 0x0 +int string mtrl_picker_invalid_format_use 0x0 +int string mtrl_picker_invalid_range 0x0 +int string mtrl_picker_navigate_to_current_year_description 0x0 +int string mtrl_picker_navigate_to_year_description 0x0 +int string mtrl_picker_out_of_range 0x0 +int string mtrl_picker_range_header_only_end_selected 0x0 +int string mtrl_picker_range_header_only_start_selected 0x0 +int string mtrl_picker_range_header_selected 0x0 +int string mtrl_picker_range_header_title 0x0 +int string mtrl_picker_range_header_unselected 0x0 +int string mtrl_picker_save 0x0 +int string mtrl_picker_start_date_description 0x0 +int string mtrl_picker_text_input_date_hint 0x0 +int string mtrl_picker_text_input_date_range_end_hint 0x0 +int string mtrl_picker_text_input_date_range_start_hint 0x0 +int string mtrl_picker_text_input_day_abbr 0x0 +int string mtrl_picker_text_input_month_abbr 0x0 +int string mtrl_picker_text_input_year_abbr 0x0 +int string mtrl_picker_today_description 0x0 +int string mtrl_picker_toggle_to_calendar_input_mode 0x0 +int string mtrl_picker_toggle_to_day_selection 0x0 +int string mtrl_picker_toggle_to_text_input_mode 0x0 +int string mtrl_picker_toggle_to_year_selection 0x0 +int string mtrl_switch_thumb_group_name 0x0 +int string mtrl_switch_thumb_path_checked 0x0 +int string mtrl_switch_thumb_path_morphing 0x0 +int string mtrl_switch_thumb_path_name 0x0 +int string mtrl_switch_thumb_path_pressed 0x0 +int string mtrl_switch_thumb_path_unchecked 0x0 +int string mtrl_switch_track_decoration_path 0x0 +int string mtrl_switch_track_path 0x0 +int string mtrl_timepicker_cancel 0x0 +int string mtrl_timepicker_confirm 0x0 +int string password_toggle_content_description 0x0 +int string path_password_eye 0x0 +int string path_password_eye_mask_strike_through 0x0 +int string path_password_eye_mask_visible 0x0 +int string path_password_strike_through 0x0 +int string search_menu_title 0x0 +int string searchbar_scrolling_view_behavior 0x0 +int string searchview_clear_text_content_description 0x0 +int string searchview_navigation_content_description 0x0 +int string side_sheet_accessibility_pane_title 0x0 +int string side_sheet_behavior 0x0 +int string status_bar_notification_info_overflow 0x0 +int style AlertDialog_AppCompat 0x0 +int style AlertDialog_AppCompat_Light 0x0 +int style Animation_AppCompat_Dialog 0x0 +int style Animation_AppCompat_DropDownUp 0x0 +int style Animation_AppCompat_Tooltip 0x0 +int style Animation_Design_BottomSheetDialog 0x0 +int style Animation_Material3_BottomSheetDialog 0x0 +int style Animation_Material3_SideSheetDialog 0x0 +int style Animation_MaterialComponents_BottomSheetDialog 0x0 +int style Base_AlertDialog_AppCompat 0x0 +int style Base_AlertDialog_AppCompat_Light 0x0 +int style Base_Animation_AppCompat_Dialog 0x0 +int style Base_Animation_AppCompat_DropDownUp 0x0 +int style Base_Animation_AppCompat_Tooltip 0x0 +int style Base_CardView 0x0 +int style Base_DialogWindowTitleBackground_AppCompat 0x0 +int style Base_DialogWindowTitle_AppCompat 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x0 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x0 +int style Base_TextAppearance_AppCompat 0x0 +int style Base_TextAppearance_AppCompat_Body1 0x0 +int style Base_TextAppearance_AppCompat_Body2 0x0 +int style Base_TextAppearance_AppCompat_Button 0x0 +int style Base_TextAppearance_AppCompat_Caption 0x0 +int style Base_TextAppearance_AppCompat_Display1 0x0 +int style Base_TextAppearance_AppCompat_Display2 0x0 +int style Base_TextAppearance_AppCompat_Display3 0x0 +int style Base_TextAppearance_AppCompat_Display4 0x0 +int style Base_TextAppearance_AppCompat_Headline 0x0 +int style Base_TextAppearance_AppCompat_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Large 0x0 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Medium 0x0 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Menu 0x0 +int style Base_TextAppearance_AppCompat_SearchResult 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 +int style Base_TextAppearance_AppCompat_Small 0x0 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Subhead 0x0 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Title 0x0 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Tooltip 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style Base_TextAppearance_Material3_Search 0x0 +int style Base_TextAppearance_MaterialComponents_Badge 0x0 +int style Base_TextAppearance_MaterialComponents_Button 0x0 +int style Base_TextAppearance_MaterialComponents_Headline6 0x0 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x0 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style Base_ThemeOverlay_AppCompat 0x0 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dark 0x0 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style Base_ThemeOverlay_AppCompat_Light 0x0 +int style Base_ThemeOverlay_Material3_AutoCompleteTextView 0x0 +int style Base_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_ThemeOverlay_Material3_Dialog 0x0 +int style Base_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_ThemeOverlay_Material3_TextInputEditText 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x0 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x0 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style Base_Theme_AppCompat 0x0 +int style Base_Theme_AppCompat_CompactMenu 0x0 +int style Base_Theme_AppCompat_Dialog 0x0 +int style Base_Theme_AppCompat_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 +int style Base_Theme_AppCompat_Light 0x0 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 +int style Base_Theme_AppCompat_Light_Dialog 0x0 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Base_Theme_Material3_Dark 0x0 +int style Base_Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Base_Theme_Material3_Dark_Dialog 0x0 +int style Base_Theme_Material3_Dark_SideSheetDialog 0x0 +int style Base_Theme_Material3_Light 0x0 +int style Base_Theme_Material3_Light_BottomSheetDialog 0x0 +int style Base_Theme_Material3_Light_Dialog 0x0 +int style Base_Theme_Material3_Light_SideSheetDialog 0x0 +int style Base_Theme_MaterialComponents 0x0 +int style Base_Theme_MaterialComponents_Bridge 0x0 +int style Base_Theme_MaterialComponents_CompactMenu 0x0 +int style Base_Theme_MaterialComponents_Dialog 0x0 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x0 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x0 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x0 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x0 +int style Base_Theme_MaterialComponents_Light 0x0 +int style Base_Theme_MaterialComponents_Light_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x0 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x0 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x0 +int style Base_V14_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_V14_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style Base_V14_Theme_Material3_Dark 0x0 +int style Base_V14_Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Base_V14_Theme_Material3_Dark_Dialog 0x0 +int style Base_V14_Theme_Material3_Dark_SideSheetDialog 0x0 +int style Base_V14_Theme_Material3_Light 0x0 +int style Base_V14_Theme_Material3_Light_BottomSheetDialog 0x0 +int style Base_V14_Theme_Material3_Light_Dialog 0x0 +int style Base_V14_Theme_Material3_Light_SideSheetDialog 0x0 +int style Base_V14_Theme_MaterialComponents 0x0 +int style Base_V14_Theme_MaterialComponents_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Dialog 0x0 +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Base_V14_Widget_MaterialComponents_AutoCompleteTextView 0x0 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V21_ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style Base_V21_ThemeOverlay_Material3_SideSheetDialog 0x0 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style Base_V21_Theme_AppCompat 0x0 +int style Base_V21_Theme_AppCompat_Dialog 0x0 +int style Base_V21_Theme_AppCompat_Light 0x0 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V21_Theme_MaterialComponents 0x0 +int style Base_V21_Theme_MaterialComponents_Dialog 0x0 +int style Base_V21_Theme_MaterialComponents_Light 0x0 +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x0 +int style Base_V22_Theme_AppCompat 0x0 +int style Base_V22_Theme_AppCompat_Light 0x0 +int style Base_V23_Theme_AppCompat 0x0 +int style Base_V23_Theme_AppCompat_Light 0x0 +int style Base_V24_Theme_Material3_Dark 0x0 +int style Base_V24_Theme_Material3_Dark_Dialog 0x0 +int style Base_V24_Theme_Material3_Light 0x0 +int style Base_V24_Theme_Material3_Light_Dialog 0x0 +int style Base_V26_Theme_AppCompat 0x0 +int style Base_V26_Theme_AppCompat_Light 0x0 +int style Base_V26_Widget_AppCompat_Toolbar 0x0 +int style Base_V28_Theme_AppCompat 0x0 +int style Base_V28_Theme_AppCompat_Light 0x0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat 0x0 +int style Base_V7_Theme_AppCompat_Dialog 0x0 +int style Base_V7_Theme_AppCompat_Light 0x0 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_V7_Widget_AppCompat_EditText 0x0 +int style Base_V7_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_ActionBar 0x0 +int style Base_Widget_AppCompat_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_ActionButton 0x0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 +int style Base_Widget_AppCompat_ActionMode 0x0 +int style Base_Widget_AppCompat_ActivityChooserView 0x0 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 +int style Base_Widget_AppCompat_Button 0x0 +int style Base_Widget_AppCompat_ButtonBar 0x0 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Borderless 0x0 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Base_Widget_AppCompat_Button_Colored 0x0 +int style Base_Widget_AppCompat_Button_Small 0x0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Base_Widget_AppCompat_EditText 0x0 +int style Base_Widget_AppCompat_ImageButton 0x0 +int style Base_Widget_AppCompat_Light_ActionBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu 0x0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_ListMenuView 0x0 +int style Base_Widget_AppCompat_ListPopupWindow 0x0 +int style Base_Widget_AppCompat_ListView 0x0 +int style Base_Widget_AppCompat_ListView_DropDown 0x0 +int style Base_Widget_AppCompat_ListView_Menu 0x0 +int style Base_Widget_AppCompat_PopupMenu 0x0 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Base_Widget_AppCompat_PopupWindow 0x0 +int style Base_Widget_AppCompat_ProgressBar 0x0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Base_Widget_AppCompat_RatingBar 0x0 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 +int style Base_Widget_AppCompat_RatingBar_Small 0x0 +int style Base_Widget_AppCompat_SearchView 0x0 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 +int style Base_Widget_AppCompat_SeekBar 0x0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 +int style Base_Widget_AppCompat_Spinner 0x0 +int style Base_Widget_AppCompat_Spinner_Underlined 0x0 +int style Base_Widget_AppCompat_TextView 0x0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Base_Widget_AppCompat_Toolbar 0x0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Base_Widget_Design_TabLayout 0x0 +int style Base_Widget_Material3_ActionBar_Solid 0x0 +int style Base_Widget_Material3_ActionMode 0x0 +int style Base_Widget_Material3_BottomNavigationView 0x0 +int style Base_Widget_Material3_CardView 0x0 +int style Base_Widget_Material3_Chip 0x0 +int style Base_Widget_Material3_CollapsingToolbar 0x0 +int style Base_Widget_Material3_CompoundButton_CheckBox 0x0 +int style Base_Widget_Material3_CompoundButton_RadioButton 0x0 +int style Base_Widget_Material3_CompoundButton_Switch 0x0 +int style Base_Widget_Material3_ExtendedFloatingActionButton 0x0 +int style Base_Widget_Material3_ExtendedFloatingActionButton_Icon 0x0 +int style Base_Widget_Material3_FloatingActionButton 0x0 +int style Base_Widget_Material3_FloatingActionButton_Large 0x0 +int style Base_Widget_Material3_FloatingActionButton_Small 0x0 +int style Base_Widget_Material3_Light_ActionBar_Solid 0x0 +int style Base_Widget_Material3_MaterialCalendar_NavigationButton 0x0 +int style Base_Widget_Material3_Snackbar 0x0 +int style Base_Widget_Material3_TabLayout 0x0 +int style Base_Widget_Material3_TabLayout_OnSurface 0x0 +int style Base_Widget_Material3_TabLayout_Secondary 0x0 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x0 +int style Base_Widget_MaterialComponents_CheckedTextView 0x0 +int style Base_Widget_MaterialComponents_Chip 0x0 +int style Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x0 +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x0 +int style Base_Widget_MaterialComponents_PopupMenu 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x0 +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x0 +int style Base_Widget_MaterialComponents_Slider 0x0 +int style Base_Widget_MaterialComponents_Snackbar 0x0 +int style Base_Widget_MaterialComponents_TextInputEditText 0x0 +int style Base_Widget_MaterialComponents_TextInputLayout 0x0 +int style Base_Widget_MaterialComponents_TextView 0x0 +int style CardView 0x0 +int style CardView_Dark 0x0 +int style CardView_Light 0x0 +int style MaterialAlertDialog_Material3 0x0 +int style MaterialAlertDialog_Material3_Animation 0x0 +int style MaterialAlertDialog_Material3_Body_Text 0x0 +int style MaterialAlertDialog_Material3_Body_Text_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Icon 0x0 +int style MaterialAlertDialog_Material3_Title_Icon_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Panel 0x0 +int style MaterialAlertDialog_Material3_Title_Panel_CenterStacked 0x0 +int style MaterialAlertDialog_Material3_Title_Text 0x0 +int style MaterialAlertDialog_Material3_Title_Text_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents 0x0 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x0 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x0 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x0 +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x0 +int style Platform_AppCompat 0x0 +int style Platform_AppCompat_Light 0x0 +int style Platform_MaterialComponents 0x0 +int style Platform_MaterialComponents_Dialog 0x0 +int style Platform_MaterialComponents_Light 0x0 +int style Platform_MaterialComponents_Light_Dialog 0x0 +int style Platform_ThemeOverlay_AppCompat 0x0 +int style Platform_ThemeOverlay_AppCompat_Dark 0x0 +int style Platform_ThemeOverlay_AppCompat_Light 0x0 +int style Platform_V21_AppCompat 0x0 +int style Platform_V21_AppCompat_Light 0x0 +int style Platform_V25_AppCompat 0x0 +int style Platform_V25_AppCompat_Light 0x0 +int style Platform_Widget_AppCompat_Spinner 0x0 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 +int style ShapeAppearanceOverlay_Material3_Button 0x0 +int style ShapeAppearanceOverlay_Material3_Chip 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Bottom 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Left 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Right 0x0 +int style ShapeAppearanceOverlay_Material3_Corner_Top 0x0 +int style ShapeAppearanceOverlay_Material3_FloatingActionButton 0x0 +int style ShapeAppearanceOverlay_Material3_NavigationView_Item 0x0 +int style ShapeAppearanceOverlay_Material3_SearchBar 0x0 +int style ShapeAppearanceOverlay_Material3_SearchView 0x0 +int style ShapeAppearanceOverlay_MaterialAlertDialog_Material3 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x0 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x0 +int style ShapeAppearance_M3_Comp_Badge_Large_Shape 0x0 +int style ShapeAppearance_M3_Comp_Badge_Shape 0x0 +int style ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_FilledButton_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchBar_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_Handle_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_StateLayer_Shape 0x0 +int style ShapeAppearance_M3_Comp_Switch_Track_Shape 0x0 +int style ShapeAppearance_M3_Comp_TextButton_Container_Shape 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Full 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Large 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Medium 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_None 0x0 +int style ShapeAppearance_M3_Sys_Shape_Corner_Small 0x0 +int style ShapeAppearance_Material3_Corner_ExtraLarge 0x0 +int style ShapeAppearance_Material3_Corner_ExtraSmall 0x0 +int style ShapeAppearance_Material3_Corner_Full 0x0 +int style ShapeAppearance_Material3_Corner_Large 0x0 +int style ShapeAppearance_Material3_Corner_Medium 0x0 +int style ShapeAppearance_Material3_Corner_None 0x0 +int style ShapeAppearance_Material3_Corner_Small 0x0 +int style ShapeAppearance_Material3_LargeComponent 0x0 +int style ShapeAppearance_Material3_MediumComponent 0x0 +int style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator 0x0 +int style ShapeAppearance_Material3_SmallComponent 0x0 +int style ShapeAppearance_Material3_Tooltip 0x0 +int style ShapeAppearance_MaterialComponents 0x0 +int style ShapeAppearance_MaterialComponents_Badge 0x0 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x0 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x0 +int style ShapeAppearance_MaterialComponents_SmallComponent 0x0 +int style ShapeAppearance_MaterialComponents_Tooltip 0x0 +int style TextAppearance_AppCompat 0x0 +int style TextAppearance_AppCompat_Body1 0x0 +int style TextAppearance_AppCompat_Body2 0x0 +int style TextAppearance_AppCompat_Button 0x0 +int style TextAppearance_AppCompat_Caption 0x0 +int style TextAppearance_AppCompat_Display1 0x0 +int style TextAppearance_AppCompat_Display2 0x0 +int style TextAppearance_AppCompat_Display3 0x0 +int style TextAppearance_AppCompat_Display4 0x0 +int style TextAppearance_AppCompat_Headline 0x0 +int style TextAppearance_AppCompat_Inverse 0x0 +int style TextAppearance_AppCompat_Large 0x0 +int style TextAppearance_AppCompat_Large_Inverse 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Medium 0x0 +int style TextAppearance_AppCompat_Medium_Inverse 0x0 +int style TextAppearance_AppCompat_Menu 0x0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 +int style TextAppearance_AppCompat_SearchResult_Title 0x0 +int style TextAppearance_AppCompat_Small 0x0 +int style TextAppearance_AppCompat_Small_Inverse 0x0 +int style TextAppearance_AppCompat_Subhead 0x0 +int style TextAppearance_AppCompat_Subhead_Inverse 0x0 +int style TextAppearance_AppCompat_Title 0x0 +int style TextAppearance_AppCompat_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Tooltip 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_Button 0x0 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 +int style TextAppearance_AppCompat_Widget_Switch 0x0 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x0 +int style TextAppearance_Design_Counter 0x0 +int style TextAppearance_Design_Counter_Overflow 0x0 +int style TextAppearance_Design_Error 0x0 +int style TextAppearance_Design_HelperText 0x0 +int style TextAppearance_Design_Hint 0x0 +int style TextAppearance_Design_Placeholder 0x0 +int style TextAppearance_Design_Prefix 0x0 +int style TextAppearance_Design_Snackbar_Message 0x0 +int style TextAppearance_Design_Suffix 0x0 +int style TextAppearance_Design_Tab 0x0 +int style TextAppearance_M3_Sys_Typescale_BodyLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_BodyMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_BodySmall 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplayLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplayMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_DisplaySmall 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_HeadlineSmall 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_LabelSmall 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleLarge 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleMedium 0x0 +int style TextAppearance_M3_Sys_Typescale_TitleSmall 0x0 +int style TextAppearance_Material3_ActionBar_Subtitle 0x0 +int style TextAppearance_Material3_ActionBar_Title 0x0 +int style TextAppearance_Material3_BodyLarge 0x0 +int style TextAppearance_Material3_BodyMedium 0x0 +int style TextAppearance_Material3_BodySmall 0x0 +int style TextAppearance_Material3_DisplayLarge 0x0 +int style TextAppearance_Material3_DisplayMedium 0x0 +int style TextAppearance_Material3_DisplaySmall 0x0 +int style TextAppearance_Material3_HeadlineLarge 0x0 +int style TextAppearance_Material3_HeadlineMedium 0x0 +int style TextAppearance_Material3_HeadlineSmall 0x0 +int style TextAppearance_Material3_LabelLarge 0x0 +int style TextAppearance_Material3_LabelMedium 0x0 +int style TextAppearance_Material3_LabelSmall 0x0 +int style TextAppearance_Material3_MaterialTimePicker_Title 0x0 +int style TextAppearance_Material3_SearchBar 0x0 +int style TextAppearance_Material3_SearchView 0x0 +int style TextAppearance_Material3_SearchView_Prefix 0x0 +int style TextAppearance_Material3_TitleLarge 0x0 +int style TextAppearance_Material3_TitleMedium 0x0 +int style TextAppearance_Material3_TitleSmall 0x0 +int style TextAppearance_MaterialComponents_Badge 0x0 +int style TextAppearance_MaterialComponents_Body1 0x0 +int style TextAppearance_MaterialComponents_Body2 0x0 +int style TextAppearance_MaterialComponents_Button 0x0 +int style TextAppearance_MaterialComponents_Caption 0x0 +int style TextAppearance_MaterialComponents_Chip 0x0 +int style TextAppearance_MaterialComponents_Headline1 0x0 +int style TextAppearance_MaterialComponents_Headline2 0x0 +int style TextAppearance_MaterialComponents_Headline3 0x0 +int style TextAppearance_MaterialComponents_Headline4 0x0 +int style TextAppearance_MaterialComponents_Headline5 0x0 +int style TextAppearance_MaterialComponents_Headline6 0x0 +int style TextAppearance_MaterialComponents_Overline 0x0 +int style TextAppearance_MaterialComponents_Subtitle1 0x0 +int style TextAppearance_MaterialComponents_Subtitle2 0x0 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x0 +int style TextAppearance_MaterialComponents_Tooltip 0x0 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 +int style ThemeOverlay_AppCompat 0x0 +int style ThemeOverlay_AppCompat_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dark 0x0 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 +int style ThemeOverlay_AppCompat_DayNight 0x0 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 +int style ThemeOverlay_AppCompat_Dialog 0x0 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 +int style ThemeOverlay_AppCompat_Light 0x0 +int style ThemeOverlay_Design_TextInputEditText 0x0 +int style ThemeOverlay_Material3 0x0 +int style ThemeOverlay_Material3_ActionBar 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox 0x0 +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style ThemeOverlay_Material3_BottomAppBar 0x0 +int style ThemeOverlay_Material3_BottomAppBar_Legacy 0x0 +int style ThemeOverlay_Material3_BottomSheetDialog 0x0 +int style ThemeOverlay_Material3_Button 0x0 +int style ThemeOverlay_Material3_Button_ElevatedButton 0x0 +int style ThemeOverlay_Material3_Button_IconButton 0x0 +int style ThemeOverlay_Material3_Button_IconButton_Filled 0x0 +int style ThemeOverlay_Material3_Button_IconButton_Filled_Tonal 0x0 +int style ThemeOverlay_Material3_Button_TextButton 0x0 +int style ThemeOverlay_Material3_Button_TextButton_Snackbar 0x0 +int style ThemeOverlay_Material3_Button_TonalButton 0x0 +int style ThemeOverlay_Material3_Chip 0x0 +int style ThemeOverlay_Material3_Chip_Assist 0x0 +int style ThemeOverlay_Material3_Dark 0x0 +int style ThemeOverlay_Material3_Dark_ActionBar 0x0 +int style ThemeOverlay_Material3_DayNight_BottomSheetDialog 0x0 +int style ThemeOverlay_Material3_DayNight_SideSheetDialog 0x0 +int style ThemeOverlay_Material3_Dialog 0x0 +int style ThemeOverlay_Material3_Dialog_Alert 0x0 +int style ThemeOverlay_Material3_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_Material3_DynamicColors_Dark 0x0 +int style ThemeOverlay_Material3_DynamicColors_DayNight 0x0 +int style ThemeOverlay_Material3_DynamicColors_Light 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface 0x0 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Primary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Secondary 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Surface 0x0 +int style ThemeOverlay_Material3_FloatingActionButton_Tertiary 0x0 +int style ThemeOverlay_Material3_HarmonizedColors 0x0 +int style ThemeOverlay_Material3_HarmonizedColors_Empty 0x0 +int style ThemeOverlay_Material3_Light 0x0 +int style ThemeOverlay_Material3_Light_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_Material3_MaterialAlertDialog 0x0 +int style ThemeOverlay_Material3_MaterialAlertDialog_Centered 0x0 +int style ThemeOverlay_Material3_MaterialCalendar 0x0 +int style ThemeOverlay_Material3_MaterialCalendar_Fullscreen 0x0 +int style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton 0x0 +int style ThemeOverlay_Material3_MaterialTimePicker 0x0 +int style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText 0x0 +int style ThemeOverlay_Material3_NavigationView 0x0 +int style ThemeOverlay_Material3_PersonalizedColors 0x0 +int style ThemeOverlay_Material3_Search 0x0 +int style ThemeOverlay_Material3_SideSheetDialog 0x0 +int style ThemeOverlay_Material3_Snackbar 0x0 +int style ThemeOverlay_Material3_TextInputEditText 0x0 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox 0x0 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense 0x0 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox 0x0 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense 0x0 +int style ThemeOverlay_Material3_Toolbar_Surface 0x0 +int style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon 0x0 +int style ThemeOverlay_MaterialComponents 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x0 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x0 +int style ThemeOverlay_MaterialComponents_Dark 0x0 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x0 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x0 +int style ThemeOverlay_MaterialComponents_Dialog 0x0 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x0 +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_MaterialComponents_Light 0x0 +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x0 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x0 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x0 +int style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x0 +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x0 +int style Theme_AppCompat 0x0 +int style Theme_AppCompat_CompactMenu 0x0 +int style Theme_AppCompat_DayNight 0x0 +int style Theme_AppCompat_DayNight_DarkActionBar 0x0 +int style Theme_AppCompat_DayNight_Dialog 0x0 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 +int style Theme_AppCompat_DayNight_NoActionBar 0x0 +int style Theme_AppCompat_Dialog 0x0 +int style Theme_AppCompat_DialogWhenLarge 0x0 +int style Theme_AppCompat_Dialog_Alert 0x0 +int style Theme_AppCompat_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Empty 0x0 +int style Theme_AppCompat_Light 0x0 +int style Theme_AppCompat_Light_DarkActionBar 0x0 +int style Theme_AppCompat_Light_Dialog 0x0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x0 +int style Theme_AppCompat_Light_Dialog_Alert 0x0 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 +int style Theme_AppCompat_Light_NoActionBar 0x0 +int style Theme_AppCompat_NoActionBar 0x0 +int style Theme_Design 0x0 +int style Theme_Design_BottomSheetDialog 0x0 +int style Theme_Design_Light 0x0 +int style Theme_Design_Light_BottomSheetDialog 0x0 +int style Theme_Design_Light_NoActionBar 0x0 +int style Theme_Design_NoActionBar 0x0 +int style Theme_Material3_Dark 0x0 +int style Theme_Material3_Dark_BottomSheetDialog 0x0 +int style Theme_Material3_Dark_Dialog 0x0 +int style Theme_Material3_Dark_DialogWhenLarge 0x0 +int style Theme_Material3_Dark_Dialog_Alert 0x0 +int style Theme_Material3_Dark_Dialog_MinWidth 0x0 +int style Theme_Material3_Dark_NoActionBar 0x0 +int style Theme_Material3_Dark_SideSheetDialog 0x0 +int style Theme_Material3_DayNight 0x0 +int style Theme_Material3_DayNight_BottomSheetDialog 0x0 +int style Theme_Material3_DayNight_Dialog 0x0 +int style Theme_Material3_DayNight_DialogWhenLarge 0x0 +int style Theme_Material3_DayNight_Dialog_Alert 0x0 +int style Theme_Material3_DayNight_Dialog_MinWidth 0x0 +int style Theme_Material3_DayNight_NoActionBar 0x0 +int style Theme_Material3_DayNight_SideSheetDialog 0x0 +int style Theme_Material3_DynamicColors_Dark 0x0 +int style Theme_Material3_DynamicColors_DayNight 0x0 +int style Theme_Material3_DynamicColors_Light 0x0 +int style Theme_Material3_Light 0x0 +int style Theme_Material3_Light_BottomSheetDialog 0x0 +int style Theme_Material3_Light_Dialog 0x0 +int style Theme_Material3_Light_DialogWhenLarge 0x0 +int style Theme_Material3_Light_Dialog_Alert 0x0 +int style Theme_Material3_Light_Dialog_MinWidth 0x0 +int style Theme_Material3_Light_NoActionBar 0x0 +int style Theme_Material3_Light_SideSheetDialog 0x0 +int style Theme_MaterialComponents 0x0 +int style Theme_MaterialComponents_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_Bridge 0x0 +int style Theme_MaterialComponents_CompactMenu 0x0 +int style Theme_MaterialComponents_DayNight 0x0 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_DayNight_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x0 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog 0x0 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_DayNight_NoActionBar 0x0 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x0 +int style Theme_MaterialComponents_Dialog 0x0 +int style Theme_MaterialComponents_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_Dialog_Alert 0x0 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_Light 0x0 +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x0 +int style Theme_MaterialComponents_Light_Bridge 0x0 +int style Theme_MaterialComponents_Light_DarkActionBar 0x0 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog 0x0 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x0 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x0 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x0 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x0 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x0 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x0 +int style Theme_MaterialComponents_Light_NoActionBar 0x0 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x0 +int style Theme_MaterialComponents_NoActionBar 0x0 +int style Theme_MaterialComponents_NoActionBar_Bridge 0x0 +int style Widget_AppCompat_ActionBar 0x0 +int style Widget_AppCompat_ActionBar_Solid 0x0 +int style Widget_AppCompat_ActionBar_TabBar 0x0 +int style Widget_AppCompat_ActionBar_TabText 0x0 +int style Widget_AppCompat_ActionBar_TabView 0x0 +int style Widget_AppCompat_ActionButton 0x0 +int style Widget_AppCompat_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_ActionButton_Overflow 0x0 +int style Widget_AppCompat_ActionMode 0x0 +int style Widget_AppCompat_ActivityChooserView 0x0 +int style Widget_AppCompat_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Button 0x0 +int style Widget_AppCompat_ButtonBar 0x0 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Borderless 0x0 +int style Widget_AppCompat_Button_Borderless_Colored 0x0 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 +int style Widget_AppCompat_Button_Colored 0x0 +int style Widget_AppCompat_Button_Small 0x0 +int style Widget_AppCompat_CompoundButton_CheckBox 0x0 +int style Widget_AppCompat_CompoundButton_RadioButton 0x0 +int style Widget_AppCompat_CompoundButton_Switch 0x0 +int style Widget_AppCompat_DrawerArrowToggle 0x0 +int style Widget_AppCompat_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_EditText 0x0 +int style Widget_AppCompat_ImageButton 0x0 +int style Widget_AppCompat_Light_ActionBar 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid 0x0 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText 0x0 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView 0x0 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 +int style Widget_AppCompat_Light_ActionButton 0x0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 +int style Widget_AppCompat_Light_ActivityChooserView 0x0 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 +int style Widget_AppCompat_Light_ListPopupWindow 0x0 +int style Widget_AppCompat_Light_ListView_DropDown 0x0 +int style Widget_AppCompat_Light_PopupMenu 0x0 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_Light_SearchView 0x0 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_ListMenuView 0x0 +int style Widget_AppCompat_ListPopupWindow 0x0 +int style Widget_AppCompat_ListView 0x0 +int style Widget_AppCompat_ListView_DropDown 0x0 +int style Widget_AppCompat_ListView_Menu 0x0 +int style Widget_AppCompat_PopupMenu 0x0 +int style Widget_AppCompat_PopupMenu_Overflow 0x0 +int style Widget_AppCompat_PopupWindow 0x0 +int style Widget_AppCompat_ProgressBar 0x0 +int style Widget_AppCompat_ProgressBar_Horizontal 0x0 +int style Widget_AppCompat_RatingBar 0x0 +int style Widget_AppCompat_RatingBar_Indicator 0x0 +int style Widget_AppCompat_RatingBar_Small 0x0 +int style Widget_AppCompat_SearchView 0x0 +int style Widget_AppCompat_SearchView_ActionBar 0x0 +int style Widget_AppCompat_SeekBar 0x0 +int style Widget_AppCompat_SeekBar_Discrete 0x0 +int style Widget_AppCompat_Spinner 0x0 +int style Widget_AppCompat_Spinner_DropDown 0x0 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 +int style Widget_AppCompat_Spinner_Underlined 0x0 +int style Widget_AppCompat_TextView 0x0 +int style Widget_AppCompat_TextView_SpinnerItem 0x0 +int style Widget_AppCompat_Toolbar 0x0 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int style Widget_Design_AppBarLayout 0x0 +int style Widget_Design_BottomNavigationView 0x0 +int style Widget_Design_BottomSheet_Modal 0x0 +int style Widget_Design_CollapsingToolbar 0x0 +int style Widget_Design_FloatingActionButton 0x0 +int style Widget_Design_NavigationView 0x0 +int style Widget_Design_ScrimInsetsFrameLayout 0x0 +int style Widget_Design_Snackbar 0x0 +int style Widget_Design_TabLayout 0x0 +int style Widget_Design_TextInputEditText 0x0 +int style Widget_Design_TextInputLayout 0x0 +int style Widget_Material3_ActionBar_Solid 0x0 +int style Widget_Material3_ActionMode 0x0 +int style Widget_Material3_AppBarLayout 0x0 +int style Widget_Material3_AutoCompleteTextView_FilledBox 0x0 +int style Widget_Material3_AutoCompleteTextView_FilledBox_Dense 0x0 +int style Widget_Material3_AutoCompleteTextView_OutlinedBox 0x0 +int style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style Widget_Material3_Badge 0x0 +int style Widget_Material3_BottomAppBar 0x0 +int style Widget_Material3_BottomAppBar_Button_Navigation 0x0 +int style Widget_Material3_BottomAppBar_Legacy 0x0 +int style Widget_Material3_BottomNavigationView 0x0 +int style Widget_Material3_BottomNavigationView_ActiveIndicator 0x0 +int style Widget_Material3_BottomSheet 0x0 +int style Widget_Material3_BottomSheet_DragHandle 0x0 +int style Widget_Material3_BottomSheet_Modal 0x0 +int style Widget_Material3_Button 0x0 +int style Widget_Material3_Button_ElevatedButton 0x0 +int style Widget_Material3_Button_ElevatedButton_Icon 0x0 +int style Widget_Material3_Button_Icon 0x0 +int style Widget_Material3_Button_IconButton 0x0 +int style Widget_Material3_Button_IconButton_Filled 0x0 +int style Widget_Material3_Button_IconButton_Filled_Tonal 0x0 +int style Widget_Material3_Button_IconButton_Outlined 0x0 +int style Widget_Material3_Button_OutlinedButton 0x0 +int style Widget_Material3_Button_OutlinedButton_Icon 0x0 +int style Widget_Material3_Button_TextButton 0x0 +int style Widget_Material3_Button_TextButton_Dialog 0x0 +int style Widget_Material3_Button_TextButton_Dialog_Flush 0x0 +int style Widget_Material3_Button_TextButton_Dialog_Icon 0x0 +int style Widget_Material3_Button_TextButton_Icon 0x0 +int style Widget_Material3_Button_TextButton_Snackbar 0x0 +int style Widget_Material3_Button_TonalButton 0x0 +int style Widget_Material3_Button_TonalButton_Icon 0x0 +int style Widget_Material3_Button_UnelevatedButton 0x0 +int style Widget_Material3_CardView_Elevated 0x0 +int style Widget_Material3_CardView_Filled 0x0 +int style Widget_Material3_CardView_Outlined 0x0 +int style Widget_Material3_CheckedTextView 0x0 +int style Widget_Material3_ChipGroup 0x0 +int style Widget_Material3_Chip_Assist 0x0 +int style Widget_Material3_Chip_Assist_Elevated 0x0 +int style Widget_Material3_Chip_Filter 0x0 +int style Widget_Material3_Chip_Filter_Elevated 0x0 +int style Widget_Material3_Chip_Input 0x0 +int style Widget_Material3_Chip_Input_Elevated 0x0 +int style Widget_Material3_Chip_Input_Icon 0x0 +int style Widget_Material3_Chip_Input_Icon_Elevated 0x0 +int style Widget_Material3_Chip_Suggestion 0x0 +int style Widget_Material3_Chip_Suggestion_Elevated 0x0 +int style Widget_Material3_CircularProgressIndicator 0x0 +int style Widget_Material3_CircularProgressIndicator_ExtraSmall 0x0 +int style Widget_Material3_CircularProgressIndicator_Medium 0x0 +int style Widget_Material3_CircularProgressIndicator_Small 0x0 +int style Widget_Material3_CollapsingToolbar 0x0 +int style Widget_Material3_CollapsingToolbar_Large 0x0 +int style Widget_Material3_CollapsingToolbar_Medium 0x0 +int style Widget_Material3_CompoundButton_CheckBox 0x0 +int style Widget_Material3_CompoundButton_MaterialSwitch 0x0 +int style Widget_Material3_CompoundButton_RadioButton 0x0 +int style Widget_Material3_CompoundButton_Switch 0x0 +int style Widget_Material3_DrawerLayout 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Primary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Secondary 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Surface 0x0 +int style Widget_Material3_ExtendedFloatingActionButton_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Large_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Large_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Primary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Secondary 0x0 +int style Widget_Material3_FloatingActionButton_Small_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Small_Tertiary 0x0 +int style Widget_Material3_FloatingActionButton_Surface 0x0 +int style Widget_Material3_FloatingActionButton_Tertiary 0x0 +int style Widget_Material3_Light_ActionBar_Solid 0x0 +int style Widget_Material3_LinearProgressIndicator 0x0 +int style Widget_Material3_MaterialButtonToggleGroup 0x0 +int style Widget_Material3_MaterialCalendar 0x0 +int style Widget_Material3_MaterialCalendar_Day 0x0 +int style Widget_Material3_MaterialCalendar_DayOfWeekLabel 0x0 +int style Widget_Material3_MaterialCalendar_DayTextView 0x0 +int style Widget_Material3_MaterialCalendar_Day_Invalid 0x0 +int style Widget_Material3_MaterialCalendar_Day_Selected 0x0 +int style Widget_Material3_MaterialCalendar_Day_Today 0x0 +int style Widget_Material3_MaterialCalendar_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderCancelButton 0x0 +int style Widget_Material3_MaterialCalendar_HeaderDivider 0x0 +int style Widget_Material3_MaterialCalendar_HeaderLayout 0x0 +int style Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderSelection 0x0 +int style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen 0x0 +int style Widget_Material3_MaterialCalendar_HeaderTitle 0x0 +int style Widget_Material3_MaterialCalendar_HeaderToggleButton 0x0 +int style Widget_Material3_MaterialCalendar_Item 0x0 +int style Widget_Material3_MaterialCalendar_MonthNavigationButton 0x0 +int style Widget_Material3_MaterialCalendar_MonthTextView 0x0 +int style Widget_Material3_MaterialCalendar_Year 0x0 +int style Widget_Material3_MaterialCalendar_YearNavigationButton 0x0 +int style Widget_Material3_MaterialCalendar_Year_Selected 0x0 +int style Widget_Material3_MaterialCalendar_Year_Today 0x0 +int style Widget_Material3_MaterialDivider 0x0 +int style Widget_Material3_MaterialDivider_Heavy 0x0 +int style Widget_Material3_MaterialTimePicker 0x0 +int style Widget_Material3_MaterialTimePicker_Button 0x0 +int style Widget_Material3_MaterialTimePicker_Clock 0x0 +int style Widget_Material3_MaterialTimePicker_Display 0x0 +int style Widget_Material3_MaterialTimePicker_Display_Divider 0x0 +int style Widget_Material3_MaterialTimePicker_Display_HelperText 0x0 +int style Widget_Material3_MaterialTimePicker_Display_TextInputEditText 0x0 +int style Widget_Material3_MaterialTimePicker_Display_TextInputLayout 0x0 +int style Widget_Material3_MaterialTimePicker_ImageButton 0x0 +int style Widget_Material3_NavigationRailView 0x0 +int style Widget_Material3_NavigationRailView_ActiveIndicator 0x0 +int style Widget_Material3_NavigationView 0x0 +int style Widget_Material3_PopupMenu 0x0 +int style Widget_Material3_PopupMenu_ContextMenu 0x0 +int style Widget_Material3_PopupMenu_ListPopupWindow 0x0 +int style Widget_Material3_PopupMenu_Overflow 0x0 +int style Widget_Material3_SearchBar 0x0 +int style Widget_Material3_SearchBar_Outlined 0x0 +int style Widget_Material3_SearchView 0x0 +int style Widget_Material3_SearchView_Prefix 0x0 +int style Widget_Material3_SearchView_Toolbar 0x0 +int style Widget_Material3_Search_ActionButton_Overflow 0x0 +int style Widget_Material3_Search_Toolbar_Button_Navigation 0x0 +int style Widget_Material3_SideSheet 0x0 +int style Widget_Material3_SideSheet_Detached 0x0 +int style Widget_Material3_SideSheet_Modal 0x0 +int style Widget_Material3_SideSheet_Modal_Detached 0x0 +int style Widget_Material3_Slider 0x0 +int style Widget_Material3_Slider_Label 0x0 +int style Widget_Material3_Snackbar 0x0 +int style Widget_Material3_Snackbar_FullWidth 0x0 +int style Widget_Material3_Snackbar_TextView 0x0 +int style Widget_Material3_TabLayout 0x0 +int style Widget_Material3_TabLayout_OnSurface 0x0 +int style Widget_Material3_TabLayout_Secondary 0x0 +int style Widget_Material3_TextInputEditText_FilledBox 0x0 +int style Widget_Material3_TextInputEditText_FilledBox_Dense 0x0 +int style Widget_Material3_TextInputEditText_OutlinedBox 0x0 +int style Widget_Material3_TextInputEditText_OutlinedBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_FilledBox 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x0 +int style Widget_Material3_Toolbar 0x0 +int style Widget_Material3_Toolbar_OnSurface 0x0 +int style Widget_Material3_Toolbar_Surface 0x0 +int style Widget_Material3_Tooltip 0x0 +int style Widget_MaterialComponents_ActionBar_Primary 0x0 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x0 +int style Widget_MaterialComponents_ActionBar_Solid 0x0 +int style Widget_MaterialComponents_ActionBar_Surface 0x0 +int style Widget_MaterialComponents_ActionMode 0x0 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x0 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x0 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x0 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_Badge 0x0 +int style Widget_MaterialComponents_BottomAppBar 0x0 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x0 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x0 +int style Widget_MaterialComponents_BottomNavigationView 0x0 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x0 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x0 +int style Widget_MaterialComponents_BottomSheet 0x0 +int style Widget_MaterialComponents_BottomSheet_Modal 0x0 +int style Widget_MaterialComponents_Button 0x0 +int style Widget_MaterialComponents_Button_Icon 0x0 +int style Widget_MaterialComponents_Button_OutlinedButton 0x0 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x0 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x0 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x0 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x0 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x0 +int style Widget_MaterialComponents_CardView 0x0 +int style Widget_MaterialComponents_CheckedTextView 0x0 +int style Widget_MaterialComponents_ChipGroup 0x0 +int style Widget_MaterialComponents_Chip_Action 0x0 +int style Widget_MaterialComponents_Chip_Choice 0x0 +int style Widget_MaterialComponents_Chip_Entry 0x0 +int style Widget_MaterialComponents_Chip_Filter 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x0 +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x0 +int style Widget_MaterialComponents_CollapsingToolbar 0x0 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x0 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x0 +int style Widget_MaterialComponents_CompoundButton_Switch 0x0 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x0 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x0 +int style Widget_MaterialComponents_FloatingActionButton 0x0 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x0 +int style Widget_MaterialComponents_LinearProgressIndicator 0x0 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x0 +int style Widget_MaterialComponents_MaterialCalendar 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x0 +int style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel 0x0 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x0 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x0 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x0 +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x0 +int style Widget_MaterialComponents_MaterialDivider 0x0 +int style Widget_MaterialComponents_NavigationRailView 0x0 +int style Widget_MaterialComponents_NavigationRailView_Colored 0x0 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x0 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x0 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x0 +int style Widget_MaterialComponents_NavigationView 0x0 +int style Widget_MaterialComponents_PopupMenu 0x0 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x0 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x0 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x0 +int style Widget_MaterialComponents_ProgressIndicator 0x0 +int style Widget_MaterialComponents_ShapeableImageView 0x0 +int style Widget_MaterialComponents_Slider 0x0 +int style Widget_MaterialComponents_Snackbar 0x0 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x0 +int style Widget_MaterialComponents_Snackbar_TextView 0x0 +int style Widget_MaterialComponents_TabLayout 0x0 +int style Widget_MaterialComponents_TabLayout_Colored 0x0 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x0 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x0 +int style Widget_MaterialComponents_TextView 0x0 +int style Widget_MaterialComponents_TimePicker 0x0 +int style Widget_MaterialComponents_TimePicker_Button 0x0 +int style Widget_MaterialComponents_TimePicker_Clock 0x0 +int style Widget_MaterialComponents_TimePicker_Display 0x0 +int style Widget_MaterialComponents_TimePicker_Display_Divider 0x0 +int style Widget_MaterialComponents_TimePicker_Display_HelperText 0x0 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x0 +int style Widget_MaterialComponents_TimePicker_Display_TextInputLayout 0x0 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x0 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x0 +int style Widget_MaterialComponents_Toolbar 0x0 +int style Widget_MaterialComponents_Toolbar_Primary 0x0 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x0 +int style Widget_MaterialComponents_Toolbar_Surface 0x0 +int style Widget_MaterialComponents_Tooltip 0x0 +int style Widget_Support_CoordinatorLayout 0x0 +int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x0, 0x0 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable ActivityFilter { 0x0, 0x0 } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityRule { 0x0, 0x0 } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppBarLayoutStates { 0x0, 0x0, 0x0, 0x0 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x0, 0x0, 0x0 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable Badge { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeHeight 2 +int styleable Badge_badgeRadius 3 +int styleable Badge_badgeShapeAppearance 4 +int styleable Badge_badgeShapeAppearanceOverlay 5 +int styleable Badge_badgeTextAppearance 6 +int styleable Badge_badgeTextColor 7 +int styleable Badge_badgeWidePadding 8 +int styleable Badge_badgeWidth 9 +int styleable Badge_badgeWithTextHeight 10 +int styleable Badge_badgeWithTextRadius 11 +int styleable Badge_badgeWithTextShapeAppearance 12 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 13 +int styleable Badge_badgeWithTextWidth 14 +int styleable Badge_horizontalOffset 15 +int styleable Badge_horizontalOffsetWithText 16 +int styleable Badge_maxCharacterCount 17 +int styleable Badge_number 18 +int styleable Badge_offsetAlignmentMode 19 +int styleable Badge_verticalOffset 20 +int styleable Badge_verticalOffsetWithText 21 +int[] styleable BaseProgressIndicator { 0x1010139, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x1010140, 0x0, 0x0 } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x1010120, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_maxWidth 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x0 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x0, 0x0 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x1010140, 0x101013f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x0, 0x0, 0x0 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x0, 0x0 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x0, 0x0, 0x0 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable CollapsingToolbarLayout_Layout { 0x0, 0x0 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animate_relativeTo 27 +int styleable Constraint_barrierAllowsGoneWidgets 28 +int styleable Constraint_barrierDirection 29 +int styleable Constraint_barrierMargin 30 +int styleable Constraint_chainUseRtl 31 +int styleable Constraint_constraint_referenced_ids 32 +int styleable Constraint_drawPath 33 +int styleable Constraint_flow_firstHorizontalBias 34 +int styleable Constraint_flow_firstHorizontalStyle 35 +int styleable Constraint_flow_firstVerticalBias 36 +int styleable Constraint_flow_firstVerticalStyle 37 +int styleable Constraint_flow_horizontalAlign 38 +int styleable Constraint_flow_horizontalBias 39 +int styleable Constraint_flow_horizontalGap 40 +int styleable Constraint_flow_horizontalStyle 41 +int styleable Constraint_flow_lastHorizontalBias 42 +int styleable Constraint_flow_lastHorizontalStyle 43 +int styleable Constraint_flow_lastVerticalBias 44 +int styleable Constraint_flow_lastVerticalStyle 45 +int styleable Constraint_flow_maxElementsWrap 46 +int styleable Constraint_flow_verticalAlign 47 +int styleable Constraint_flow_verticalBias 48 +int styleable Constraint_flow_verticalGap 49 +int styleable Constraint_flow_verticalStyle 50 +int styleable Constraint_flow_wrapMode 51 +int styleable Constraint_layout_constrainedHeight 52 +int styleable Constraint_layout_constrainedWidth 53 +int styleable Constraint_layout_constraintBaseline_creator 54 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 55 +int styleable Constraint_layout_constraintBottom_creator 56 +int styleable Constraint_layout_constraintBottom_toBottomOf 57 +int styleable Constraint_layout_constraintBottom_toTopOf 58 +int styleable Constraint_layout_constraintCircle 59 +int styleable Constraint_layout_constraintCircleAngle 60 +int styleable Constraint_layout_constraintCircleRadius 61 +int styleable Constraint_layout_constraintDimensionRatio 62 +int styleable Constraint_layout_constraintEnd_toEndOf 63 +int styleable Constraint_layout_constraintEnd_toStartOf 64 +int styleable Constraint_layout_constraintGuide_begin 65 +int styleable Constraint_layout_constraintGuide_end 66 +int styleable Constraint_layout_constraintGuide_percent 67 +int styleable Constraint_layout_constraintHeight_default 68 +int styleable Constraint_layout_constraintHeight_max 69 +int styleable Constraint_layout_constraintHeight_min 70 +int styleable Constraint_layout_constraintHeight_percent 71 +int styleable Constraint_layout_constraintHorizontal_bias 72 +int styleable Constraint_layout_constraintHorizontal_chainStyle 73 +int styleable Constraint_layout_constraintHorizontal_weight 74 +int styleable Constraint_layout_constraintLeft_creator 75 +int styleable Constraint_layout_constraintLeft_toLeftOf 76 +int styleable Constraint_layout_constraintLeft_toRightOf 77 +int styleable Constraint_layout_constraintRight_creator 78 +int styleable Constraint_layout_constraintRight_toLeftOf 79 +int styleable Constraint_layout_constraintRight_toRightOf 80 +int styleable Constraint_layout_constraintStart_toEndOf 81 +int styleable Constraint_layout_constraintStart_toStartOf 82 +int styleable Constraint_layout_constraintTag 83 +int styleable Constraint_layout_constraintTop_creator 84 +int styleable Constraint_layout_constraintTop_toBottomOf 85 +int styleable Constraint_layout_constraintTop_toTopOf 86 +int styleable Constraint_layout_constraintVertical_bias 87 +int styleable Constraint_layout_constraintVertical_chainStyle 88 +int styleable Constraint_layout_constraintVertical_weight 89 +int styleable Constraint_layout_constraintWidth_default 90 +int styleable Constraint_layout_constraintWidth_max 91 +int styleable Constraint_layout_constraintWidth_min 92 +int styleable Constraint_layout_constraintWidth_percent 93 +int styleable Constraint_layout_editor_absoluteX 94 +int styleable Constraint_layout_editor_absoluteY 95 +int styleable Constraint_layout_goneMarginBottom 96 +int styleable Constraint_layout_goneMarginEnd 97 +int styleable Constraint_layout_goneMarginLeft 98 +int styleable Constraint_layout_goneMarginRight 99 +int styleable Constraint_layout_goneMarginStart 100 +int styleable Constraint_layout_goneMarginTop 101 +int styleable Constraint_motionProgress 102 +int styleable Constraint_motionStagger 103 +int styleable Constraint_pathMotionArc 104 +int styleable Constraint_pivotAnchor 105 +int styleable Constraint_transitionEasing 106 +int styleable Constraint_transitionPathRotate 107 +int styleable Constraint_visibilityMode 108 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_maxHeight 1 +int styleable ConstraintLayout_Layout_android_maxWidth 2 +int styleable ConstraintLayout_Layout_android_minHeight 3 +int styleable ConstraintLayout_Layout_android_minWidth 4 +int styleable ConstraintLayout_Layout_android_orientation 5 +int styleable ConstraintLayout_Layout_android_padding 6 +int styleable ConstraintLayout_Layout_android_paddingBottom 7 +int styleable ConstraintLayout_Layout_android_paddingEnd 8 +int styleable ConstraintLayout_Layout_android_paddingLeft 9 +int styleable ConstraintLayout_Layout_android_paddingRight 10 +int styleable ConstraintLayout_Layout_android_paddingStart 11 +int styleable ConstraintLayout_Layout_android_paddingTop 12 +int styleable ConstraintLayout_Layout_android_visibility 13 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14 +int styleable ConstraintLayout_Layout_barrierDirection 15 +int styleable ConstraintLayout_Layout_barrierMargin 16 +int styleable ConstraintLayout_Layout_chainUseRtl 17 +int styleable ConstraintLayout_Layout_constraintSet 18 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 19 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 24 +int styleable ConstraintLayout_Layout_flow_horizontalBias 25 +int styleable ConstraintLayout_Layout_flow_horizontalGap 26 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 27 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32 +int styleable ConstraintLayout_Layout_flow_verticalAlign 33 +int styleable ConstraintLayout_Layout_flow_verticalBias 34 +int styleable ConstraintLayout_Layout_flow_verticalGap 35 +int styleable ConstraintLayout_Layout_flow_verticalStyle 36 +int styleable ConstraintLayout_Layout_flow_wrapMode 37 +int styleable ConstraintLayout_Layout_layoutDescription 38 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 39 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 40 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45 +int styleable ConstraintLayout_Layout_layout_constraintCircle 46 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69 +int styleable ConstraintLayout_Layout_layout_constraintTag 70 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 86 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 87 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 88 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 89 +int[] styleable ConstraintLayout_placeholder { 0x0, 0x0 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animate_relativeTo 29 +int styleable ConstraintSet_barrierAllowsGoneWidgets 30 +int styleable ConstraintSet_barrierDirection 31 +int styleable ConstraintSet_barrierMargin 32 +int styleable ConstraintSet_chainUseRtl 33 +int styleable ConstraintSet_constraint_referenced_ids 34 +int styleable ConstraintSet_deriveConstraintsFrom 35 +int styleable ConstraintSet_drawPath 36 +int styleable ConstraintSet_flow_firstHorizontalBias 37 +int styleable ConstraintSet_flow_firstHorizontalStyle 38 +int styleable ConstraintSet_flow_firstVerticalBias 39 +int styleable ConstraintSet_flow_firstVerticalStyle 40 +int styleable ConstraintSet_flow_horizontalAlign 41 +int styleable ConstraintSet_flow_horizontalBias 42 +int styleable ConstraintSet_flow_horizontalGap 43 +int styleable ConstraintSet_flow_horizontalStyle 44 +int styleable ConstraintSet_flow_lastHorizontalBias 45 +int styleable ConstraintSet_flow_lastHorizontalStyle 46 +int styleable ConstraintSet_flow_lastVerticalBias 47 +int styleable ConstraintSet_flow_lastVerticalStyle 48 +int styleable ConstraintSet_flow_maxElementsWrap 49 +int styleable ConstraintSet_flow_verticalAlign 50 +int styleable ConstraintSet_flow_verticalBias 51 +int styleable ConstraintSet_flow_verticalGap 52 +int styleable ConstraintSet_flow_verticalStyle 53 +int styleable ConstraintSet_flow_wrapMode 54 +int styleable ConstraintSet_layout_constrainedHeight 55 +int styleable ConstraintSet_layout_constrainedWidth 56 +int styleable ConstraintSet_layout_constraintBaseline_creator 57 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58 +int styleable ConstraintSet_layout_constraintBottom_creator 59 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 61 +int styleable ConstraintSet_layout_constraintCircle 62 +int styleable ConstraintSet_layout_constraintCircleAngle 63 +int styleable ConstraintSet_layout_constraintCircleRadius 64 +int styleable ConstraintSet_layout_constraintDimensionRatio 65 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 66 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 67 +int styleable ConstraintSet_layout_constraintGuide_begin 68 +int styleable ConstraintSet_layout_constraintGuide_end 69 +int styleable ConstraintSet_layout_constraintGuide_percent 70 +int styleable ConstraintSet_layout_constraintHeight_default 71 +int styleable ConstraintSet_layout_constraintHeight_max 72 +int styleable ConstraintSet_layout_constraintHeight_min 73 +int styleable ConstraintSet_layout_constraintHeight_percent 74 +int styleable ConstraintSet_layout_constraintHorizontal_bias 75 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76 +int styleable ConstraintSet_layout_constraintHorizontal_weight 77 +int styleable ConstraintSet_layout_constraintLeft_creator 78 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 80 +int styleable ConstraintSet_layout_constraintRight_creator 81 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 82 +int styleable ConstraintSet_layout_constraintRight_toRightOf 83 +int styleable ConstraintSet_layout_constraintStart_toEndOf 84 +int styleable ConstraintSet_layout_constraintStart_toStartOf 85 +int styleable ConstraintSet_layout_constraintTag 86 +int styleable ConstraintSet_layout_constraintTop_creator 87 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 88 +int styleable ConstraintSet_layout_constraintTop_toTopOf 89 +int styleable ConstraintSet_layout_constraintVertical_bias 90 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 91 +int styleable ConstraintSet_layout_constraintVertical_weight 92 +int styleable ConstraintSet_layout_constraintWidth_default 93 +int styleable ConstraintSet_layout_constraintWidth_max 94 +int styleable ConstraintSet_layout_constraintWidth_min 95 +int styleable ConstraintSet_layout_constraintWidth_percent 96 +int styleable ConstraintSet_layout_editor_absoluteX 97 +int styleable ConstraintSet_layout_editor_absoluteY 98 +int styleable ConstraintSet_layout_goneMarginBottom 99 +int styleable ConstraintSet_layout_goneMarginEnd 100 +int styleable ConstraintSet_layout_goneMarginLeft 101 +int styleable ConstraintSet_layout_goneMarginRight 102 +int styleable ConstraintSet_layout_goneMarginStart 103 +int styleable ConstraintSet_layout_goneMarginTop 104 +int styleable ConstraintSet_motionProgress 105 +int styleable ConstraintSet_motionStagger 106 +int styleable ConstraintSet_pathMotionArc 107 +int styleable ConstraintSet_pivotAnchor 108 +int styleable ConstraintSet_transitionEasing 109 +int styleable ConstraintSet_transitionPathRotate 110 +int[] styleable CoordinatorLayout { 0x0, 0x0 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customStringValue 8 +int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable DrawerLayout { 0x0 } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x0, 0x0 } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x0 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x0, 0x0 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x0 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_brightness 1 +int styleable ImageFilterView_contrast 2 +int styleable ImageFilterView_crossfade 3 +int styleable ImageFilterView_overlay 4 +int styleable ImageFilterView_round 5 +int styleable ImageFilterView_roundPercent 6 +int styleable ImageFilterView_saturation 7 +int styleable ImageFilterView_warmth 8 +int[] styleable Insets { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingTopSystemWindowInsets 6 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transitionEasing 16 +int styleable KeyAttribute_transitionPathRotate 17 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_waveShape 18 +int styleable KeyCycle_waveVariesBy 19 +int[] styleable KeyPosition { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_waveShape 19 +int[] styleable KeyTrigger { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_layout_constrainedHeight 14 +int styleable Layout_layout_constrainedWidth 15 +int styleable Layout_layout_constraintBaseline_creator 16 +int styleable Layout_layout_constraintBaseline_toBaselineOf 17 +int styleable Layout_layout_constraintBottom_creator 18 +int styleable Layout_layout_constraintBottom_toBottomOf 19 +int styleable Layout_layout_constraintBottom_toTopOf 20 +int styleable Layout_layout_constraintCircle 21 +int styleable Layout_layout_constraintCircleAngle 22 +int styleable Layout_layout_constraintCircleRadius 23 +int styleable Layout_layout_constraintDimensionRatio 24 +int styleable Layout_layout_constraintEnd_toEndOf 25 +int styleable Layout_layout_constraintEnd_toStartOf 26 +int styleable Layout_layout_constraintGuide_begin 27 +int styleable Layout_layout_constraintGuide_end 28 +int styleable Layout_layout_constraintGuide_percent 29 +int styleable Layout_layout_constraintHeight_default 30 +int styleable Layout_layout_constraintHeight_max 31 +int styleable Layout_layout_constraintHeight_min 32 +int styleable Layout_layout_constraintHeight_percent 33 +int styleable Layout_layout_constraintHorizontal_bias 34 +int styleable Layout_layout_constraintHorizontal_chainStyle 35 +int styleable Layout_layout_constraintHorizontal_weight 36 +int styleable Layout_layout_constraintLeft_creator 37 +int styleable Layout_layout_constraintLeft_toLeftOf 38 +int styleable Layout_layout_constraintLeft_toRightOf 39 +int styleable Layout_layout_constraintRight_creator 40 +int styleable Layout_layout_constraintRight_toLeftOf 41 +int styleable Layout_layout_constraintRight_toRightOf 42 +int styleable Layout_layout_constraintStart_toEndOf 43 +int styleable Layout_layout_constraintStart_toStartOf 44 +int styleable Layout_layout_constraintTop_creator 45 +int styleable Layout_layout_constraintTop_toBottomOf 46 +int styleable Layout_layout_constraintTop_toTopOf 47 +int styleable Layout_layout_constraintVertical_bias 48 +int styleable Layout_layout_constraintVertical_chainStyle 49 +int styleable Layout_layout_constraintVertical_weight 50 +int styleable Layout_layout_constraintWidth_default 51 +int styleable Layout_layout_constraintWidth_max 52 +int styleable Layout_layout_constraintWidth_min 53 +int styleable Layout_layout_constraintWidth_percent 54 +int styleable Layout_layout_editor_absoluteX 55 +int styleable Layout_layout_editor_absoluteY 56 +int styleable Layout_layout_goneMarginBottom 57 +int styleable Layout_layout_goneMarginEnd 58 +int styleable Layout_layout_goneMarginLeft 59 +int styleable Layout_layout_goneMarginRight 60 +int styleable Layout_layout_goneMarginStart 61 +int styleable Layout_layout_goneMarginTop 62 +int styleable Layout_maxHeight 63 +int styleable Layout_maxWidth 64 +int styleable Layout_minHeight 65 +int styleable Layout_minWidth 66 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x0, 0x0 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int[] styleable MaterialAutoCompleteTextView { 0x1010220, 0x101048c, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 2 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 3 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 4 +int styleable MaterialAutoCompleteTextView_simpleItems 5 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialButtonToggleGroup { 0x101000e, 0x0, 0x0, 0x0 } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int[] styleable MaterialCalendar { 0x101020d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x1010107, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialCheckBoxStates { 0x0, 0x0 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int[] styleable MaterialDivider { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x0, 0x0 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x0, 0x0 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconTint 1 +int styleable MaterialSwitch_thumbIconTintMode 2 +int styleable MaterialSwitch_trackDecoration 3 +int styleable MaterialSwitch_trackDecorationTint 4 +int styleable MaterialSwitch_trackDecorationTintMode 5 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x0 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x0 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x0, 0x0 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Motion_animate_relativeTo 0 +int styleable Motion_drawPath 1 +int styleable Motion_motionPathRotate 2 +int styleable Motion_motionStagger 3 +int styleable Motion_pathMotionArc 4 +int styleable Motion_transitionEasing 5 +int[] styleable MotionHelper { 0x0, 0x0 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x0, 0x0 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x0, 0x0, 0x0 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarActiveIndicator { 0x10101a5, 0x1010155, 0x1010159, 0x0, 0x0 } +int styleable NavigationBarActiveIndicator_android_color 0 +int styleable NavigationBarActiveIndicator_android_height 1 +int styleable NavigationBarActiveIndicator_android_width 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemActiveIndicatorStyle 2 +int styleable NavigationBarView_itemBackground 3 +int styleable NavigationBarView_itemIconSize 4 +int styleable NavigationBarView_itemIconTint 5 +int styleable NavigationBarView_itemPaddingBottom 6 +int styleable NavigationBarView_itemPaddingTop 7 +int styleable NavigationBarView_itemRippleColor 8 +int styleable NavigationBarView_itemTextAppearanceActive 9 +int styleable NavigationBarView_itemTextAppearanceInactive 10 +int styleable NavigationBarView_itemTextColor 11 +int styleable NavigationBarView_labelVisibilityMode 12 +int styleable NavigationBarView_menu 13 +int[] styleable NavigationRailView { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingTopSystemWindowInsets 4 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x10100b3, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_layout_gravity 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextColor 25 +int styleable NavigationView_itemVerticalPadding 26 +int styleable NavigationView_menu 27 +int styleable NavigationView_shapeAppearance 28 +int styleable NavigationView_shapeAppearanceOverlay 29 +int styleable NavigationView_subheaderColor 30 +int styleable NavigationView_subheaderInsetEnd 31 +int styleable NavigationView_subheaderInsetStart 32 +int styleable NavigationView_subheaderTextAppearance 33 +int styleable NavigationView_topInsetScrimEnabled 34 +int[] styleable OnClick { 0x0, 0x0 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable OnSwipe_dragDirection 0 +int styleable OnSwipe_dragScale 1 +int styleable OnSwipe_dragThreshold 2 +int styleable OnSwipe_limitBoundsTo 3 +int styleable OnSwipe_maxAcceleration 4 +int styleable OnSwipe_maxVelocity 5 +int styleable OnSwipe_moveWhenScrollAtTop 6 +int styleable OnSwipe_nestedScrollFlags 7 +int styleable OnSwipe_onTouchUp 8 +int styleable OnSwipe_touchAnchorId 9 +int styleable OnSwipe_touchAnchorSide 10 +int styleable OnSwipe_touchRegionId 11 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x0 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x0, 0x0, 0x0 } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x0 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x0, 0x0 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x0, 0x0 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x0 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x0 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x1010150, 0x101014f, 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchBar_android_hint 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_textAppearance 2 +int styleable SearchBar_defaultMarginsEnabled 3 +int styleable SearchBar_defaultScrollFlagsEnabled 4 +int styleable SearchBar_elevation 5 +int styleable SearchBar_forceDefaultNavigationOnClickListener 6 +int styleable SearchBar_hideNavigationIcon 7 +int styleable SearchBar_navigationIconTint 8 +int styleable SearchBar_strokeColor 9 +int styleable SearchBar_strokeWidth 10 +int styleable SearchBar_tintNavigationIcon 11 +int[] styleable SearchView { 0x10100da, 0x1010150, 0x1010264, 0x1010220, 0x101011f, 0x101014f, 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_hint 1 +int styleable SearchView_android_imeOptions 2 +int styleable SearchView_android_inputType 3 +int styleable SearchView_android_maxWidth 4 +int styleable SearchView_android_text 5 +int styleable SearchView_android_textAppearance 6 +int styleable SearchView_animateMenuItems 7 +int styleable SearchView_animateNavigationIcon 8 +int styleable SearchView_autoShowKeyboard 9 +int styleable SearchView_closeIcon 10 +int styleable SearchView_commitIcon 11 +int styleable SearchView_defaultQueryHint 12 +int styleable SearchView_goIcon 13 +int styleable SearchView_headerLayout 14 +int styleable SearchView_hideNavigationIcon 15 +int styleable SearchView_iconifiedByDefault 16 +int styleable SearchView_layout 17 +int styleable SearchView_queryBackground 18 +int styleable SearchView_queryHint 19 +int styleable SearchView_searchHintIcon 20 +int styleable SearchView_searchIcon 21 +int styleable SearchView_searchPrefixText 22 +int styleable SearchView_submitBackground 23 +int styleable SearchView_suggestionRowLayout 24 +int styleable SearchView_useDrawerArrowDrawable 25 +int styleable SearchView_voiceIcon 26 +int[] styleable ShapeAppearance { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x1010440, 0x1010120, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SideSheetBehavior_Layout_android_elevation 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_maxWidth 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbRadius 12 +int styleable Slider_thumbStrokeColor 13 +int styleable Slider_thumbStrokeWidth 14 +int styleable Slider_tickColor 15 +int styleable Slider_tickColorActive 16 +int styleable Slider_tickColorInactive 17 +int styleable Slider_tickRadiusActive 18 +int styleable Slider_tickRadiusInactive 19 +int styleable Slider_tickVisible 20 +int styleable Slider_trackColor 21 +int styleable Slider_trackColorActive 22 +int styleable Slider_trackColorInactive 23 +int styleable Slider_trackHeight 24 +int[] styleable Snackbar { 0x0, 0x0, 0x0 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x0, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable SplitPairFilter { 0x0, 0x0, 0x0 } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 +int[] styleable State { 0x10100d0, 0x0 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x0 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x0 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextInputEditText { 0x0 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x1010157, 0x101011f, 0x101015a, 0x101013f, 0x101009a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxEms 2 +int styleable TextInputLayout_android_maxWidth 3 +int styleable TextInputLayout_android_minEms 4 +int styleable TextInputLayout_android_minWidth 5 +int styleable TextInputLayout_android_textColorHint 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_endIconCheckable 24 +int styleable TextInputLayout_endIconContentDescription 25 +int styleable TextInputLayout_endIconDrawable 26 +int styleable TextInputLayout_endIconMinSize 27 +int styleable TextInputLayout_endIconMode 28 +int styleable TextInputLayout_endIconScaleType 29 +int styleable TextInputLayout_endIconTint 30 +int styleable TextInputLayout_endIconTintMode 31 +int styleable TextInputLayout_errorAccessibilityLiveRegion 32 +int styleable TextInputLayout_errorContentDescription 33 +int styleable TextInputLayout_errorEnabled 34 +int styleable TextInputLayout_errorIconDrawable 35 +int styleable TextInputLayout_errorIconTint 36 +int styleable TextInputLayout_errorIconTintMode 37 +int styleable TextInputLayout_errorTextAppearance 38 +int styleable TextInputLayout_errorTextColor 39 +int styleable TextInputLayout_expandedHintEnabled 40 +int styleable TextInputLayout_helperText 41 +int styleable TextInputLayout_helperTextEnabled 42 +int styleable TextInputLayout_helperTextTextAppearance 43 +int styleable TextInputLayout_helperTextTextColor 44 +int styleable TextInputLayout_hintAnimationEnabled 45 +int styleable TextInputLayout_hintEnabled 46 +int styleable TextInputLayout_hintTextAppearance 47 +int styleable TextInputLayout_hintTextColor 48 +int styleable TextInputLayout_passwordToggleContentDescription 49 +int styleable TextInputLayout_passwordToggleDrawable 50 +int styleable TextInputLayout_passwordToggleEnabled 51 +int styleable TextInputLayout_passwordToggleTint 52 +int styleable TextInputLayout_passwordToggleTintMode 53 +int styleable TextInputLayout_placeholderText 54 +int styleable TextInputLayout_placeholderTextAppearance 55 +int styleable TextInputLayout_placeholderTextColor 56 +int styleable TextInputLayout_prefixText 57 +int styleable TextInputLayout_prefixTextAppearance 58 +int styleable TextInputLayout_prefixTextColor 59 +int styleable TextInputLayout_shapeAppearance 60 +int styleable TextInputLayout_shapeAppearanceOverlay 61 +int styleable TextInputLayout_startIconCheckable 62 +int styleable TextInputLayout_startIconContentDescription 63 +int styleable TextInputLayout_startIconDrawable 64 +int styleable TextInputLayout_startIconMinSize 65 +int styleable TextInputLayout_startIconScaleType 66 +int styleable TextInputLayout_startIconTint 67 +int styleable TextInputLayout_startIconTintMode 68 +int styleable TextInputLayout_suffixText 69 +int styleable TextInputLayout_suffixTextAppearance 70 +int styleable TextInputLayout_suffixTextColor 71 +int[] styleable ThemeEnforcement { 0x1010034, 0x0, 0x0 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x1010098, 0x0 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_android_textColor 6 +int styleable Tooltip_backgroundTint 7 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int[] styleable Transition { 0x10100d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..ed3fafcb6acee7b9ac08fa65d294bb2226020859 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..dfef5d592e1aa7e04a6f58c050ebc1a0cd8e0745 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..e0e43e9d537e4495ecd16fbb067577cf9647c5a3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/155/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="maui_empty_unused"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/156.stamp new file mode 100644 index 0000000000000000000000000000000000000000..a6e64f275ed2fd57e120190939fa8fe2988bacf6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156.stamp @@ -0,0 +1 @@ +38537176FC2DF59D \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/.net/__res_name_case_map.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/.net/__res_name_case_map.txt new file mode 100644 index 0000000000000000000000000000000000000000..6efb0a5e23b1c54ed7f796fe5614771864620bd5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/.net/__res_name_case_map.txt @@ -0,0 +1,24 @@ +anim/nav_default_enter_anim.xml;anim/nav_default_enter_anim.xml +anim/nav_default_exit_anim.xml;anim/nav_default_exit_anim.xml +anim/nav_default_pop_enter_anim.xml;anim/nav_default_pop_enter_anim.xml +anim/nav_default_pop_exit_anim.xml;anim/nav_default_pop_exit_anim.xml +drawable/maui_splash.xml;drawable/maui_splash.xml +drawable/maui_splash_image.xml;drawable/maui_splash_image.xml +values/attr.xml;values/attr.xml +values/colors.xml;values/colors.xml +values/styles.xml;values/styles.xml +Layout/drawer_layout.axml;layout/drawer_layout.xml +Layout/fragment_backstack.axml;layout/fragment_backstack.xml +Layout/navigationlayout.axml;layout/navigationlayout.xml +anim/nav_default_enter_anim.xml;anim/nav_default_enter_anim.xml +anim/nav_default_exit_anim.xml;anim/nav_default_exit_anim.xml +anim/nav_default_pop_enter_anim.xml;anim/nav_default_pop_enter_anim.xml +anim/nav_default_pop_exit_anim.xml;anim/nav_default_pop_exit_anim.xml +drawable/maui_splash.xml;drawable/maui_splash.xml +drawable/maui_splash_image.xml;drawable/maui_splash_image.xml +values/attr.xml;values/attr.xml +values/colors.xml;values/colors.xml +values/styles.xml;values/styles.xml +Layout/drawer_layout.axml;layout/drawer_layout.xml +Layout/fragment_backstack.axml;layout/fragment_backstack.xml +Layout/navigationlayout.axml;layout/navigationlayout.xml diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..d115e9c41c92d67b0c85ca8e40548fe4f46089d3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e9461650508acf277b665f15e7855509f713219 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_enter_anim.xml @@ -0,0 +1 @@ +<!-- Copy of slide_in_right from android --><set xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="50%p" android:toXDelta="0" android:duration="@android:integer/config_mediumAnimTime" /><alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="@android:integer/config_mediumAnimTime" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..6aea2ce2946b390d04cafc76e0566fe766c06eab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_exit_anim.xml @@ -0,0 +1 @@ +<!-- Copy of slide_out_left from android --><set xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="0" android:toXDelta="-50%p" android:duration="@android:integer/config_mediumAnimTime" /><alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="@android:integer/config_mediumAnimTime" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_enter_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_enter_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b974ff2802fd936e2e3af535b712db14f907d41 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_enter_anim.xml @@ -0,0 +1 @@ +<!-- Copy of slide_in_left from android --><set xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="-50%p" android:toXDelta="0" android:duration="@android:integer/config_mediumAnimTime" /><alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="@android:integer/config_mediumAnimTime" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_exit_anim.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_exit_anim.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e69f97516fda1ca47a06cc179450e39755637c4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/anim/nav_default_pop_exit_anim.xml @@ -0,0 +1 @@ +<!-- Copy of slide_out_right from android --><set xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="0" android:toXDelta="50%p" android:duration="@android:integer/config_mediumAnimTime" /><alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="@android:integer/config_mediumAnimTime" /></set> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash.xml new file mode 100644 index 0000000000000000000000000000000000000000..26e685e8fe66d48be6370ad28b90fc9fa57f1525 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash.xml @@ -0,0 +1 @@ +<layer-list android:opacity="opaque" xmlns:android="http://schemas.android.com/apk/res/android"><item android:drawable="@color/maui_splash_color" /><item android:drawable="@drawable/maui_splash_image" android:gravity="center" /></layer-list> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash_image.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash_image.xml new file mode 100644 index 0000000000000000000000000000000000000000..6a423ca9a22c4bf2b8b30b0bb8f8b80cf99b3a2d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/drawable/maui_splash_image.xml @@ -0,0 +1 @@ +<layer-list /> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/drawer_layout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/drawer_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..b8eba70ef4d83dc17c02316a454d796ced4a5704 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/drawer_layout.xml @@ -0,0 +1 @@ +<androidx.drawerlayout.widget.DrawerLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"></androidx.drawerlayout.widget.DrawerLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/fragment_backstack.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/fragment_backstack.xml new file mode 100644 index 0000000000000000000000000000000000000000..c2fd79aee225b10134cb3df4e9e6c714ab858975 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/fragment_backstack.xml @@ -0,0 +1 @@ +<androidx.fragment.app.FragmentContainerView android:id="@+id/nav_host" android:name="microsoft.maui.platform.MauiNavHostFragment" android:layout_width="match_parent" android:layout_height="match_parent" app:defaultNavHost="false" app:layout_behavior="@string/appbar_scrolling_view_behavior" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"></androidx.fragment.app.FragmentContainerView> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/navigationlayout.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/navigationlayout.xml new file mode 100644 index 0000000000000000000000000000000000000000..8bc7568ac7902f04883a7a3515251c5eba616947 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/layout/navigationlayout.xml @@ -0,0 +1 @@ +<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/navigation_layout" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><com.google.android.material.appbar.AppBarLayout android:id="@+id/navigationlayout_appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"><androidx.fragment.app.FragmentContainerView android:id="@+id/navigationlayout_toptabs" android:layout_width="match_parent" android:layout_height="wrap_content" /></com.google.android.material.appbar.AppBarLayout><androidx.fragment.app.FragmentContainerView android:id="@+id/navigationlayout_content" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /><androidx.fragment.app.FragmentContainerView android:id="@+id/navigationlayout_bottomtabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom" /></androidx.coordinatorlayout.widget.CoordinatorLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/attr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/attr.xml new file mode 100644 index 0000000000000000000000000000000000000000..0479ecb0573519eb9eedc413cf5e9545c10e51e4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/attr.xml @@ -0,0 +1,4 @@ +<resources><attr name="maui_splash" format="string" /><attr name="appBarLayoutStyle" format="reference" /><attr name="bottomNavigationViewStyle" format="reference" /><!-- + This defines the collectionViewStyle attribute so that we can use it + to add the scrollbars style to the CollectionView/CarouselView renderers. + --><declare-styleable name="ItemsViewRendererTheme"><attr name="collectionViewStyle" format="reference" /></declare-styleable><declare-styleable name="ScrollViewRendererTheme"><attr name="scrollViewStyle" format="reference" /></declare-styleable></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/colors.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/colors.xml new file mode 100644 index 0000000000000000000000000000000000000000..d921d96ca355ef5b79f21a75cb22cb27228139fd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/colors.xml @@ -0,0 +1 @@ +<resources><color name="colorPrimary">#2c3e50</color><color name="colorPrimaryDark">#1B3147</color><color name="colorAccent">#3498db</color><color name="colorActionMenuTextColor">#FFFFFF</color><color name="maui_splash_color">@color/colorPrimary</color></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/styles.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..cf68e6da739174e8fc2723a1cb0adb6a93efe9e7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/156/jl/res/values/styles.xml @@ -0,0 +1,13 @@ +<resources><!-- Base application theme. --><style name="Maui.MainTheme" parent="Theme.MaterialComponents.DayNight"><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item><item name="android:actionMenuTextColor">@color/colorActionMenuTextColor</item><item name="appBarLayoutStyle">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item><item name="bottomNavigationViewStyle">@style/Widget.Design.BottomNavigationView</item><item name="materialButtonStyle">@style/MauiMaterialButton</item><item name="checkboxStyle">@style/MauiCheckBox</item><item name="android:textAllCaps">false</item><item name="alertDialogTheme">@style/MauiAlertDialogTheme</item></style><style name="Maui.MainTheme.NoActionBar" parent="Maui.MainTheme"><item name="windowActionBar">false</item><item name="windowNoTitle">true</item><item name="windowActionModeOverlay">true</item><item name="android:actionModeBackground">?attr/colorPrimary</item><item name="android:actionModeStyle">@style/ActionMode</item></style><style name="ActionMode"><item name="android:background">?attr/colorPrimary</item><item name="android:height">?attr/actionBarSize</item></style><!-- Splash theme --><style name="Maui.SplashTheme" parent="Maui.MainTheme.NoActionBar"><item name="maui_splash">true</item><item name="android:windowBackground">@drawable/maui_splash</item><!-- + Android 12+ specific settings + See: https://developer.android.com/guide/topics/ui/splash-screen#set-theme + --><item name="android:windowSplashScreenBackground">@color/maui_splash_color</item><item name="android:windowSplashScreenAnimatedIcon">@drawable/maui_splash</item></style><!-- Themes for Xamarin.Forms backwards compatibility --><style name="MainTheme" parent="Maui.MainTheme" /><style name="MainTheme.Base" parent="Maui.MainTheme" /><style name="MainTheme.NoActionBar" parent="Maui.MainTheme.NoActionBar" /><style name="AppTheme" parent="Maui.MainTheme" /><style name="AppTheme.NoActionBar" parent="Maui.MainTheme.NoActionBar" /><style name="MauiMaterialButton" parent="Widget.MaterialComponents.Button.UnelevatedButton"><!-- remove all the min sizes as MAUI manages it --><item name="android:minWidth">0dp</item><item name="android:minHeight">0dp</item><!-- padding is the space between the edge of the background and the contents --><item name="android:paddingLeft">0dp</item><item name="android:paddingRight">0dp</item><item name="android:paddingTop">0dp</item><item name="android:paddingBottom">0dp</item><!-- insets are the amount of space btween the actual color and the edge of the view frame --><item name="android:insetTop">0dp</item><item name="android:insetBottom">0dp</item><item name="android:insetLeft">0dp</item><item name="android:insetRight">0dp</item></style><style name="MauiCheckBox" parent="Widget.Material3.CompoundButton.CheckBox"><!-- remove all the min sizes as MAUI manages it --><item name="android:minWidth">0dp</item><item name="android:minHeight">0dp</item></style><style name="MauiAlertDialogTheme" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"><item name="colorPrimary">?attr/colorOnSurface</item></style><!-- + The collectionViewScrollBars style will be used as the default style for ItemsViewRenderer (the base renderer + for CollectionView and CarouselView. We have to use a style to set up the scrollbars because there is currently + no way to add them via code. + + When the renderer is created, we wrap its Context's theme with collectionViewTheme; that way, the + collectionViewScrollBars style will be defined. With the style defined (and with the collectionViewStyle + attribute defined in attrs.xml), we can apply the collectionViewScrollBars style explicitly to the renderer we are + creating (and avoid forcing every child control to have scrollbars). + --><style name="scrollViewScrollBars"><item name="android:scrollbars">vertical|horizontal</item></style><style name="collectionViewTheme"><item name="collectionViewStyle">@style/scrollViewScrollBars</item></style><style name="scrollViewTheme"><item name="scrollViewStyle">@style/scrollViewScrollBars</item></style></resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/157.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/157.stamp new file mode 100644 index 0000000000000000000000000000000000000000..49c1503e1ba031f94ed54ce50c161dc5afe4b6a7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/157.stamp @@ -0,0 +1 @@ +BF2A94DD7C59B2FC \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/.net/__res_name_case_map.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/.net/__res_name_case_map.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdaadec621f275620fa1f140f60e60a47fd62bc1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/.net/__res_name_case_map.txt @@ -0,0 +1 @@ +Resources/xml/microsoft_maui_essentials_fileprovider_file_paths.xml;xml/microsoft_maui_essentials_fileprovider_file_paths.xml diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..22b2811e80e26f051f3c406983ed1e223ce178a0 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res/xml/microsoft_maui_essentials_fileprovider_file_paths.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res/xml/microsoft_maui_essentials_fileprovider_file_paths.xml new file mode 100644 index 0000000000000000000000000000000000000000..bb033541f0c58a77350937b1e285019ccb285e98 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/157/jl/res/xml/microsoft_maui_essentials_fileprovider_file_paths.xml @@ -0,0 +1 @@ +<paths><external-path name="external_files" path="." /><cache-path name="internal_cache" path="." /><external-cache-path name="external_cache" path="." /></paths> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/158.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/158.stamp new file mode 100644 index 0000000000000000000000000000000000000000..c79efa0dfb7ea63928b1f6310bfc96a880a3b42e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/158.stamp @@ -0,0 +1 @@ +A10D93B51F40F839 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/158/jl/libs/F975D0960055A5E3.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/158/jl/libs/F975D0960055A5E3.jar new file mode 100644 index 0000000000000000000000000000000000000000..2a370011d50581af5503bdf22ba13a599f7b7b69 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/158/jl/libs/F975D0960055A5E3.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/159.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/159.stamp new file mode 100644 index 0000000000000000000000000000000000000000..796fe776841c35b40792f88152a2dc3479d7cad0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/159.stamp @@ -0,0 +1 @@ +FAAEC162FC05A935 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/159/jl/libs/B71CFF5D5A0B3AEB.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/159/jl/libs/B71CFF5D5A0B3AEB.jar new file mode 100644 index 0000000000000000000000000000000000000000..df52ace543843baff9556af1559d017951f84a76 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/159/jl/libs/B71CFF5D5A0B3AEB.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/90.stamp new file mode 100644 index 0000000000000000000000000000000000000000..fd33c83e77b22c3802a0374c054a6a6948fb777f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/90.stamp @@ -0,0 +1 @@ +799BA2F0BA3F951F \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..035cd361642bb4f91d826223ab4b6714dacdeb16 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/AndroidManifest.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2018 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.versionedparcelable" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="28" /> + + <application> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl new file mode 100644 index 0000000000000000000000000000000000000000..8efe12bfd04b6a9456601bb6be89ec915b406957 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl @@ -0,0 +1,3 @@ +package androidx.versionedparcelable; + +parcelable ParcelImpl; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..c68ea7abbf5810c6581de09e331d158e9ce26912 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a047c927d0e378dce8c7788496af8c09dbaa5ac --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/90/jl/proguard.txt @@ -0,0 +1,4 @@ +-keep class * implements androidx.versionedparcelable.VersionedParcelable +-keep public class android.support.**Parcelizer { *; } +-keep public class androidx.**Parcelizer { *; } +-keep public class androidx.versionedparcelable.ParcelImpl diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/91.stamp new file mode 100644 index 0000000000000000000000000000000000000000..a2d24bb3efbe1a4dde5d07af2a13167e6c6df03c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/91.stamp @@ -0,0 +1 @@ +CFA79138A40BCFB7 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..4d645042c4061cfecb1601cdc224c7cb34328ad4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.tracing" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="31" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..bd8164d6562f2626e700e915ffa7f0522f7252df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..e36377d21c781ae723ca061181c923bd7dfa58bb Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/91/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/92.stamp new file mode 100644 index 0000000000000000000000000000000000000000..b9cbc5857f1c529509dce053082acb76284b46a2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92.stamp @@ -0,0 +1 @@ +09A8E667A6A2EF29 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ca4f0284da6f434ac681d8abe3b89ab01bb3a8fa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/AndroidManifest.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2020 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + package="androidx.startup" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="31" /> + + <application> + <provider + android:name="androidx.startup.InitializationProvider" + android:authorities="${applicationId}.androidx-startup" + android:exported="false" + tools:node="merge" /> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..bd8164d6562f2626e700e915ffa7f0522f7252df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..fddb3a805a7c4e43c1e861eb8212f6fdb903dd19 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/R.txt @@ -0,0 +1 @@ +int string androidx_startup 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea3d5d71d8859c32acd3c9cea9863d2df5d0139e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/baseline-prof.txt @@ -0,0 +1,4 @@ +# Baseline Profile Rules for androidx.startup + +Landroidx/startup/AppInitializer; +HSPLandroidx/startup/AppInitializer;->**(**)** diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..90d5279ec5de6a10c0ef1efc6ca36cf08fb46f7a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..b35cf7ad39b5ffa71f1615d1921869d25ac3b54e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/proguard.txt @@ -0,0 +1,12 @@ +# It's important that we preserve initializer names, given they are used in the AndroidManifest.xml. +-keepnames class * extends androidx.startup.Initializer + +# These Proguard rules ensures that ComponentInitializers are are neither shrunk nor obfuscated, +# and are a part of the primary dex file. This is because they are discovered and instantiated +# during application startup. +-keep class * extends androidx.startup.Initializer { + # Keep the public no-argument constructor while allowing other methods to be optimized. + <init>(); +} + +-assumenosideeffects class androidx.startup.StartupLogger { public static <methods>; } diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..5afb1c10fd501b1f4a7a2558656f9938b7d42ca6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..2cc6f9234cae8d8725cc66677c80f45b0d448f11 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/92/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="androidx_startup" translatable="false">androidx.startup</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/93.stamp new file mode 100644 index 0000000000000000000000000000000000000000..db89f5cddda8c0f616134b39ce92d3d283654b08 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/93.stamp @@ -0,0 +1 @@ +30DF70518BA80848 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b4e1ab9e5e01092c018ff7efff9892dea37ce449 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/AndroidManifest.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + package="androidx.profileinstaller" > + + <uses-sdk android:minSdkVersion="14" /> + + <application> + <provider + android:name="androidx.startup.InitializationProvider" + android:authorities="${applicationId}.androidx-startup" + android:exported="false" + tools:node="merge" > + <meta-data + android:name="androidx.profileinstaller.ProfileInstallerInitializer" + android:value="androidx.startup" /> + </provider> + + <receiver + android:name="androidx.profileinstaller.ProfileInstallReceiver" + android:directBootAware="false" + android:enabled="true" + android:exported="true" + android:permission="android.permission.DUMP" > + <intent-filter> + <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" /> + </intent-filter> + <intent-filter> + <action android:name="androidx.profileinstaller.action.SKIP_FILE" /> + </intent-filter> + <intent-filter> + <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" /> + </intent-filter> + <intent-filter> + <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" /> + </intent-filter> + </receiver> + </application> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..313d439e08045c83d9b9dbe7ad07c14635eb2654 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..348614d030de870b48c9e15d52c343ab8e12c8ca Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/93/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/94.stamp new file mode 100644 index 0000000000000000000000000000000000000000..976f309992a718f888745b8e56fc02f7902c9082 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/94.stamp @@ -0,0 +1 @@ +FD24BA5B54543869 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..cceae927e837f25a4fd15569fd78ec0521781ddc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.arch.core" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..ae9d872d77f99999f169c44c0579bedfee15c61a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/94/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/95.stamp new file mode 100644 index 0000000000000000000000000000000000000000..ddcd1426b7501163c6ea5cf9ae5a54e5bdcf095c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95.stamp @@ -0,0 +1 @@ +C2BE1E21F88FA98A \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d39967129daec4349c0b544bc3cc8f2325bb7b5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.lifecycle.runtime" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..2686c469dd38dc6950309f638545b53dcec5f1df --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/R.txt @@ -0,0 +1 @@ +int id view_tree_lifecycle_owner 0x0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/baseline-prof.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/baseline-prof.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d4f10e38e8ee1ff19635fa4d059b393dce05d8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/baseline-prof.txt @@ -0,0 +1,50 @@ +# Baseline Profile rules for lifecycle-runtime + +HPLandroidx/lifecycle/LifecycleRegistry;->backwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;-><init>(Landroidx/lifecycle/LifecycleObserver;Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->dispatchEvent(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;-><init>(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;-><init>(Landroidx/lifecycle/LifecycleOwner;Z)V +HSPLandroidx/lifecycle/LifecycleRegistry;->addObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->calculateTargetState(Landroidx/lifecycle/LifecycleObserver;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->enforceMainThreadIfNeeded(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->forwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->getCurrentState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->isSynced()Z +HSPLandroidx/lifecycle/LifecycleRegistry;->min(Landroidx/lifecycle/Lifecycle$State;Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->moveToState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V +HSPLandroidx/lifecycle/LifecycleRegistry;->pushParentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;-><init>()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->registerIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;-><init>()V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroid/app/Activity;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchCreate(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchResume(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchStart(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->injectIfNeededIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment;->onResume()V +HSPLandroidx/lifecycle/ReportFragment;->onStart()V +HSPLandroidx/lifecycle/ViewTreeLifecycleOwner;->set(Landroid/view/View;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/ViewTreeViewModelStoreOwner;->set(Landroid/view/View;Landroidx/lifecycle/ViewModelStoreOwner;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPrePaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment;->onDestroy()V +PLandroidx/lifecycle/ReportFragment;->onPause()V +PLandroidx/lifecycle/ReportFragment;->onStop()V diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..bff7b3b7d18ad2fd923d2cbfd4f2fb601abc73c7 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4b2c95889e088cac0fbfb8cf12f47e401dd9107 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/proguard.txt @@ -0,0 +1,23 @@ +-keepattributes AnnotationDefault, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations + +-keepclassmembers enum androidx.lifecycle.Lifecycle$Event { + <fields>; +} + +-keep !interface * implements androidx.lifecycle.LifecycleObserver { +} + +-keep class * implements androidx.lifecycle.GeneratedAdapter { + <init>(...); +} + +-keepclassmembers class ** { + @androidx.lifecycle.OnLifecycleEvent *; +} + +# this rule is need to work properly when app is compiled with api 28, see b/142778206 +# Also this rule prevents registerIn from being inlined. +-keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; } \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..7c8aef4ebf3f675e6e784c904258de6733d8fca2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..cfedb207a4142384cb28499278989ed45bad0e40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/95/jl/res/values/values.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <id name="view_tree_lifecycle_owner"/> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/96.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/96.stamp new file mode 100644 index 0000000000000000000000000000000000000000..ee72fc44009cce3ee4f4805be653137d63f8046c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/96.stamp @@ -0,0 +1 @@ +EF37D2C4F931DC45 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..c78c2601e9a72307ab202f94e0578a1dc56981fd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.interpolator" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..de755d1a30db800b4d9eecc6f54d2a965ae984d3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/96/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/97.stamp new file mode 100644 index 0000000000000000000000000000000000000000..f419655e8c81aaa002267ee3d4f0c60634e6cc22 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/97.stamp @@ -0,0 +1 @@ +03D8CB64644BB559 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..10c72c2baeb39de1954b9f6ab5e58d84ec54d7e0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.annotation.experimental" > + + <uses-sdk android:minSdkVersion="14" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..efc9c663f07080b5979099c0352381830c751b43 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..e8f1ea8f763cfe8b5ad2b59467b9b2a4a7712000 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..55344e51920f3dcbb968d32ee2281e029d1571bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/97/jl/res/values/values.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/98.stamp new file mode 100644 index 0000000000000000000000000000000000000000..4b50e4515dc5ca2ac0b1927788ff9b8b1428f65b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98.stamp @@ -0,0 +1 @@ +12910E24D53F039B \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a800ab61220f473787a98df7c08b6ba54e7e816 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/AndroidManifest.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.core" > + + <uses-sdk android:minSdkVersion="14" /> + + <permission + android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" + android:protectionLevel="signature" /> + + <uses-permission android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" /> + + <application android:appComponentFactory="androidx.core.app.CoreComponentFactory" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000000000000000000000000000000000000..c78f08ec30b26f92a9f4c4b4d84b6ce8dfa886cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..b629360f6902952a39ecc778352d5d796962581b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/R.txt @@ -0,0 +1,202 @@ +int attr alpha 0x0 +int attr font 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr lStar 0x0 +int attr nestedScrollViewStyle 0x0 +int attr queryPatterns 0x0 +int attr shortcutMatchRequired 0x0 +int attr ttcIndex 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color call_notification_answer_color 0x0 +int color call_notification_decline_color 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int drawable ic_call_answer 0x0 +int drawable ic_call_answer_low 0x0 +int drawable ic_call_answer_video 0x0 +int drawable ic_call_answer_video_low 0x0 +int drawable ic_call_decline 0x0 +int drawable ic_call_decline_low 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_container 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_text 0x0 +int id actions 0x0 +int id async 0x0 +int id blocking 0x0 +int id chronometer 0x0 +int id dialog_button 0x0 +int id forever 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 0x0 +int id line1 0x0 +int id line3 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 0x0 +int id text 0x0 +int id text2 0x0 +int id time 0x0 +int id title 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int string call_notification_answer_action 0x0 +int string call_notification_answer_video_action 0x0 +int string call_notification_decline_action 0x0 +int string call_notification_hang_up_action 0x0 +int string call_notification_incoming_text 0x0 +int string call_notification_ongoing_text 0x0 +int string call_notification_screening_text 0x0 +int string status_bar_notification_info_overflow 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable Capability { 0x0, 0x0 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/aidl/android/support/v4/os/ResultReceiver.aidl b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/aidl/android/support/v4/os/ResultReceiver.aidl new file mode 100644 index 0000000000000000000000000000000000000000..430b8b566368bd8b509e1fb8a2d6c0313dfb457f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/aidl/android/support/v4/os/ResultReceiver.aidl @@ -0,0 +1,19 @@ +/** + * Copyright 2015, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.support.v4.os; + +@JavaOnlyStableParcelable parcelable ResultReceiver; diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/annotations.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..40c1f594a863a1bd4c29315aa801248495c059db Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/annotations.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..be8491bc0c22d5469510158e9c890716ef63d15c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/proguard.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/proguard.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcc9a891c6d95bc4bb3a318ddea9098d11f5281b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/proguard.txt @@ -0,0 +1,16 @@ +# Never inline methods, but allow shrinking and obfuscation. +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.ViewCompat$Api* { + <methods>; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.WindowInsetsCompat$*Impl* { + <methods>; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.app.NotificationCompat$*$Api*Impl { + <methods>; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.os.UserHandleCompat$Api*Impl { + <methods>; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.widget.EdgeEffectCompat$Api*Impl { + <methods>; +} diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/public.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/public.txt new file mode 100644 index 0000000000000000000000000000000000000000..f23be3d31ab7161a1418f23372ebdc55777d08a9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/public.txt @@ -0,0 +1,21 @@ +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +attr alpha +attr font +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr lStar +attr queryPatterns +attr shortcutMatchRequired +attr ttcIndex diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res.zip b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..0dc3222c2d11dfbc2157d2ae00c3d8a966cf353c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res.zip differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer.xml new file mode 100644 index 0000000000000000000000000000000000000000..da8a42f54a3ec66e92b89d4a6136ab7042c6936f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer.xml @@ -0,0 +1,36 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:targetApi="21" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:tint="?android:attr/colorControlNormal" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M6.0168,3.3333L6.5751,5.575L4.6668,7.4916C3.8751,5.7166 3.6001,4.1916 + 3.4834,3.3333H6.0168ZM14.4251,13.375L16.6668,13.9416V16.5166C15.8084,16.4 14.2668,16.125 + 12.4834,15.325L14.4251,13.375ZM6.3418,1.6666H2.5668C2.0918,1.6666 1.7001,2.0666 + 1.7334,2.5416C2.4834,12.875 11.7668,18.275 17.5168,18.275C17.9668,18.275 18.3334,17.9 + 18.3334,17.4416V13.6166C18.3334,13.0416 17.9418,12.5416 + 17.3834,12.4083L14.5918,11.7083C14.2251,11.6166 13.7584,11.6833 + 13.4084,12.0333L10.9251,14.5166C8.6751,13.1833 6.7918,11.3 + 5.4668,9.0416L7.9168,6.5916C8.2251,6.2833 8.3501,5.8333 + 8.2418,5.4083L7.5584,2.6166C7.4168,2.0583 6.9168,1.6666 6.3418,1.6666Z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml new file mode 100644 index 0000000000000000000000000000000000000000..89e62a58805078682949aabd979dfee42e48f4c9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml @@ -0,0 +1,33 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M6.0168,3.3333L6.5751,5.575L4.6668,7.4916C3.8751,5.7166 3.6001,4.1916 + 3.4834,3.3333H6.0168ZM14.4251,13.375L16.6668,13.9416V16.5166C15.8084,16.4 14.2668,16.125 + 12.4834,15.325L14.4251,13.375ZM6.3418,1.6666H2.5668C2.0918,1.6666 1.7001,2.0666 + 1.7334,2.5416C2.4834,12.875 11.7668,18.275 17.5168,18.275C17.9668,18.275 18.3334,17.9 + 18.3334,17.4416V13.6166C18.3334,13.0416 17.9418,12.5416 + 17.3834,12.4083L14.5918,11.7083C14.2251,11.6166 13.7584,11.6833 + 13.4084,12.0333L10.9251,14.5166C8.6751,13.1833 6.7918,11.3 + 5.4668,9.0416L7.9168,6.5916C8.2251,6.2833 8.3501,5.8333 + 8.2418,5.4083L7.5584,2.6166C7.4168,2.0583 6.9168,1.6666 6.3418,1.6666Z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml new file mode 100644 index 0000000000000000000000000000000000000000..243ca3c79cbbf9e963bfd06cbb4298dd1f17bb67 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml @@ -0,0 +1,29 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:targetApi="21" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:tint="?android:attr/colorControlNormal" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M15,8v8H5V8h10m1,-2H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 + 1,-0.45 1,-1v-3.5l4,4v-11l-4,4V7c0,-0.55 -0.45,-1 -1,-1z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml new file mode 100644 index 0000000000000000000000000000000000000000..24b69420703806473c8b03ae3da62dac0e3cc5c6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml @@ -0,0 +1,26 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M15,8v8H5V8h10m1,-2H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 + 1,-0.45 1,-1v-3.5l4,4v-11l-4,4V7c0,-0.55 -0.45,-1 -1,-1z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline.xml new file mode 100644 index 0000000000000000000000000000000000000000..be9593cb5f7105d11fdc7e252836e17f0e78cd6a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline.xml @@ -0,0 +1,38 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:targetApi="21" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:tint="?android:attr/colorControlNormal" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M5.2834,9.3083V10.7833L4.1084,11.4916L3.1334,10.5166C3.8084,10.0416 + 4.5251,9.6333 5.2834,9.3083ZM14.75,9.325C15.4917,9.65 16.2084,10.05 + 16.875,10.525L15.925,11.475L14.75,10.7666V9.325ZM9.975,6.6666C6.8584,6.6666 3.725,7.7333 + 1.1751,9.9416C0.8084,10.2583 0.9667,10.7166 1.1501,10.9L3.2917,13.0416C3.4917,13.2333 + 3.7417,13.3333 4.0001,13.3333C4.175,13.3333 4.35,13.2833 + 4.5084,13.1916L6.4667,12.0166C6.725,11.8583 6.95,11.5583 6.95,11.1666V8.3833C7.95,8.125 + 8.975,8 10.0084,8C11.0417,8 12.075,8.1333 13.0834,8.3916V11.1416C13.0834,11.4916 + 13.2667,11.8166 13.5667,11.9916L15.525,13.1666C15.6834,13.2583 15.8584,13.3083 + 16.0334,13.3083C16.2917,13.3083 16.5417,13.2083 + 16.7334,13.0166L18.85,10.9C19.1167,10.6333 19.1167,10.1916 18.825,9.9416C16.3334,7.7833 + 13.1667,6.6666 9.975,6.6666Z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml new file mode 100644 index 0000000000000000000000000000000000000000..990af5fd7d55792b19e731ecedaab65822509cc5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml @@ -0,0 +1,35 @@ +<!-- + Copyright (C) 2022 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="20" + android:viewportHeight="20" + android:autoMirrored="true"> + <path + android:fillColor="#FF000000" + android:pathData="M5.2834,9.3083V10.7833L4.1084,11.4916L3.1334,10.5166C3.8084,10.0416 + 4.5251,9.6333 5.2834,9.3083ZM14.75,9.325C15.4917,9.65 16.2084,10.05 + 16.875,10.525L15.925,11.475L14.75,10.7666V9.325ZM9.975,6.6666C6.8584,6.6666 3.725,7.7333 + 1.1751,9.9416C0.8084,10.2583 0.9667,10.7166 1.1501,10.9L3.2917,13.0416C3.4917,13.2333 + 3.7417,13.3333 4.0001,13.3333C4.175,13.3333 4.35,13.2833 + 4.5084,13.1916L6.4667,12.0166C6.725,11.8583 6.95,11.5583 6.95,11.1666V8.3833C7.95,8.125 + 8.975,8 10.0084,8C11.0417,8 12.075,8.1333 13.0834,8.3916V11.1416C13.0834,11.4916 + 13.2667,11.8166 13.5667,11.9916L15.525,13.1666C15.6834,13.2583 15.8584,13.3083 + 16.0334,13.3083C16.2917,13.3083 16.5417,13.2083 + 16.7334,13.0166L18.85,10.9C19.1167,10.6333 19.1167,10.1916 18.825,9.9416C16.3334,7.7833 + 13.1667,6.6666 9.975,6.6666Z"/> +</vector> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..7aca1a1a3fd2375cd99769d2d6486c5d68ddd92c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..7aca1a1a3fd2375cd99769d2d6486c5d68ddd92c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..8eafb01b2a3f68d18b8dcf8d11cf52959526b339 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..8eafb01b2a3f68d18b8dcf8d11cf52959526b339 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..4d9cfdc5079493cb490cdaed5a91809db7e07a96 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..4d9cfdc5079493cb490cdaed5a91809db7e07a96 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..af91f5e6435b5cdd85b2461f976f119c860f9d52 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..1602ab872b37d56993fbe714d68aa79d1bb8736e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..6ebed8bfd524c12aab5df367aa24ed6f989e9c1b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..6193822d57c1ecc810bc6080fa75bd3221a0564f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..6f37a22d55ced9cc2f0ce6bc5643ca2d8d5a3794 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1fefce3fce30a89871fe62c6b88aca9f3f1702 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1fefce3fce30a89871fe62c6b88aca9f3f1702 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..0242aa7edfa7f53affea476124c23ffa40ebff09 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..0242aa7edfa7f53affea476124c23ffa40ebff09 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1f42165418e33a1be095ef2a07ceae2e72a7cc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1f42165418e33a1be095ef2a07ceae2e72a7cc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-ldpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1d00b6ebba4574749301149655c97c73abd5fe Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1d00b6ebba4574749301149655c97c73abd5fe Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..64aacd7af7a553e4d989b8b0e1b2d0d8fc809cde Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..64aacd7af7a553e4d989b8b0e1b2d0d8fc809cde Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..a72e07802cf0b6f1a264c269230335f30034845c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..a72e07802cf0b6f1a264c269230335f30034845c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..62de9d76bad2244e407ea78106185b7d2513a3ec Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..eaabd93170346b06e4a67a260cce72c2875f641a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..aa239b35c7ef0f14097ba6a60422ae56d21af9c9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..62d8622b27bc7cb190a113a2cb72ae82cb38bfd5 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..c286875aa70b7dc76460345141cd374e00f929f3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-v21/notification_action_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-v21/notification_action_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..a9ea90ae32a2b156e1068cb637352b78adf66203 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-v21/notification_action_background.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/androidx_core_ripple_material_light"> + <item android:id="@android:id/mask"> + <inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/compat_button_inset_horizontal_material" + android:insetTop="@dimen/compat_button_inset_vertical_material" + android:insetRight="@dimen/compat_button_inset_horizontal_material" + android:insetBottom="@dimen/compat_button_inset_vertical_material"> + <shape android:shape="rectangle"> + <corners android:radius="@dimen/compat_control_corner_material" /> + <solid android:color="@android:color/white" /> + <padding android:left="@dimen/compat_button_padding_horizontal_material" + android:top="@dimen/compat_button_padding_vertical_material" + android:right="@dimen/compat_button_padding_horizontal_material" + android:bottom="@dimen/compat_button_padding_vertical_material" /> + </shape> + </inset> + </item> +</ripple> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..1e29937b5f2713d9ee2ac3a5eb4edf1f90d3243d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..1e29937b5f2713d9ee2ac3a5eb4edf1f90d3243d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..cbad0c4fb20a21c1a06468339287be0ef44f63fa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..cbad0c4fb20a21c1a06468339287be0ef44f63fa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..8edb3fcfb7eb01987bd68723803932984743b3b1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..8edb3fcfb7eb01987bd68723803932984743b3b1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..8c884decb37d6ea89195e0d2f512ea02325f047d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..32e00befeb6a9f9a52aa750a290e164592b528b8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000000000000000000000000000000000000..bdf477bad779870c0ce67fcd22ac87dbeb442dc2 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000000000000000000000000000000000000..5c4da7445195554c408f6240906b7523daaa20a9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..9128e62bbcf153291e88879f1bc379b2607e578d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..949da2b9c41c0b4f2832de61d8a90127ab85af3c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..949da2b9c41c0b4f2832de61d8a90127ab85af3c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..35e3bc82e9c7407385d955b0ac2ed4450c9b84b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..35e3bc82e9c7407385d955b0ac2ed4450c9b84b9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..15aeec01013249e5c41f9d56490b94abdca89105 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..15aeec01013249e5c41f9d56490b94abdca89105 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000000000000000000000000000000000000..5c060f61366aa0eb174b832bfd47fc1888d03cac Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000000000000000000000000000000000000..5c060f61366aa0eb174b832bfd47fc1888d03cac Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0e0de1d8e8e3c4a4a6bb5f518fcf2f2f9290b1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0e0de1d8e8e3c4a4a6bb5f518fcf2f2f9290b1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b5be3c9f69b108293d089a04b1260fa39e968e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b5be3c9f69b108293d089a04b1260fa39e968e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..1232b4cb550ba143547a463610a73bd7a16a303a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android" + android:exitFadeDuration="@android:integer/config_mediumAnimTime"> + + <item android:state_pressed="true" + android:drawable="@drawable/notification_bg_normal_pressed" /> + <item android:state_pressed="false" android:drawable="@drawable/notification_bg_normal" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg_low.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg_low.xml new file mode 100644 index 0000000000000000000000000000000000000000..72e58ae716c5df911713087b13431b78c25f2919 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_bg_low.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<selector xmlns:android="http://schemas.android.com/apk/res/android" + android:exitFadeDuration="@android:integer/config_mediumAnimTime"> + + <item android:state_pressed="true" android:drawable="@drawable/notification_bg_low_pressed" /> + <item android:state_pressed="false" android:drawable="@drawable/notification_bg_low_normal" /> +</selector> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_icon_background.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_icon_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..490a797eaa4388374d3279744baa3e58452e3280 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_icon_background.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval"> + <solid + android:color="@color/notification_icon_bg_color"/> +</shape> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_tile_bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_tile_bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..8eee7ef0115603e6ee198d9439c2b3aef62b34ad --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/drawable/notification_tile_bg.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<bitmap + xmlns:android="http://schemas.android.com/apk/res/android" + android:tileMode="repeat" + android:src="@drawable/notify_panel_notification_icon_bg" +/> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v16/notification_template_custom_big.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v16/notification_template_custom_big.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0519dc9135528a83930949da34263f6a85ed2c7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v16/notification_template_custom_big.xml @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/notification_background" + android:layout_width="match_parent" + android:layout_height="wrap_content" > + <ImageView android:id="@+id/icon" + android:layout_width="@dimen/notification_large_icon_width" + android:layout_height="@dimen/notification_large_icon_height" + android:scaleType="center" + /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="top" + android:orientation="vertical" > + <LinearLayout + android:id="@+id/notification_main_column_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="@dimen/notification_large_icon_width" + android:layout_marginStart="@dimen/notification_large_icon_width" + android:paddingTop="@dimen/notification_main_column_padding_top" + android:minHeight="@dimen/notification_large_icon_height" + android:orientation="horizontal"> + <FrameLayout + android:id="@+id/notification_main_column" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginLeft="@dimen/notification_content_margin_start" + android:layout_marginStart="@dimen/notification_content_margin_start" + android:layout_marginBottom="8dp" + android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" /> + <FrameLayout + android:id="@+id/right_side" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" + android:paddingTop="@dimen/notification_right_side_padding_top"> + <ViewStub android:id="@+id/time" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end|top" + android:visibility="gone" + android:layout="@layout/notification_template_part_time" /> + <ViewStub android:id="@+id/chronometer" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end|top" + android:visibility="gone" + android:layout="@layout/notification_template_part_chronometer" /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:layout_gravity="end|bottom" + android:layout_marginTop="20dp"> + <TextView android:id="@+id/info" + android:textAppearance="@style/TextAppearance.Compat.Notification.Info" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:singleLine="true" + /> + <ImageView android:id="@+id/right_icon" + android:layout_width="16dp" + android:layout_height="16dp" + android:layout_gravity="center" + android:layout_marginLeft="8dp" + android:layout_marginStart="8dp" + android:scaleType="centerInside" + android:visibility="gone" + android:alpha="0.6" + /> + </LinearLayout> + </FrameLayout> + </LinearLayout> + <ImageView + android:layout_width="match_parent" + android:layout_height="1px" + android:id="@+id/action_divider" + android:visibility="gone" + android:layout_marginLeft="@dimen/notification_large_icon_width" + android:layout_marginStart="@dimen/notification_large_icon_width" + android:background="?android:attr/dividerHorizontal" /> + <LinearLayout + android:id="@+id/actions" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:visibility="gone" + android:showDividers="middle" + android:divider="?android:attr/listDivider" + android:dividerPadding="12dp" + android:layout_marginLeft="@dimen/notification_large_icon_width" + android:layout_marginStart="@dimen/notification_large_icon_width" > + <!-- actions will be added here --> + </LinearLayout> + </LinearLayout> +</FrameLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action.xml new file mode 100644 index 0000000000000000000000000000000000000000..7199c2506ab2f15d64183623f7b862f8b1da05be --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Compat.NotificationActionContainer" + android:id="@+id/action_container" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="48dp" + android:paddingStart="4dp" + android:orientation="horizontal"> + <ImageView + android:id="@+id/action_image" + android:layout_width="@dimen/notification_action_icon_size" + android:layout_height="@dimen/notification_action_icon_size" + android:layout_gravity="center|start" + android:scaleType="centerInside"/> + <TextView + style="@style/Widget.Compat.NotificationActionText" + android:id="@+id/action_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center|start" + android:paddingStart="4dp" + android:singleLine="true" + android:ellipsize="end" + android:clickable="false"/> +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action_tombstone.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action_tombstone.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ef38fa01eb1e5e6782db1581d630f1471f8425e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_action_tombstone.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Compat.NotificationActionContainer" + android:id="@+id/action_container" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="48dp" + android:paddingStart="4dp" + android:orientation="horizontal" + android:enabled="false" + android:background="@null"> + <ImageView + android:id="@+id/action_image" + android:layout_width="@dimen/notification_action_icon_size" + android:layout_height="@dimen/notification_action_icon_size" + android:layout_gravity="center|start" + android:scaleType="centerInside" + android:enabled="false" + android:alpha="0.5"/> + <TextView + style="@style/Widget.Compat.NotificationActionText" + android:id="@+id/action_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center|start" + android:paddingStart="4dp" + android:singleLine="true" + android:ellipsize="end" + android:clickable="false" + android:enabled="false" + android:alpha="0.5"/> +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_custom_big.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_custom_big.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e3666e36085cd3e608a1ce85114a41d3e1ea806 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_custom_big.xml @@ -0,0 +1,90 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/notification_background" + android:layout_width="match_parent" + android:layout_height="wrap_content" > + <include layout="@layout/notification_template_icon_group" + android:layout_width="@dimen/notification_large_icon_width" + android:layout_height="@dimen/notification_large_icon_height" + /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="top" + android:layout_marginStart="@dimen/notification_large_icon_width" + android:orientation="vertical" > + <LinearLayout + android:id="@+id/notification_main_column_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="@dimen/notification_large_icon_height" + android:orientation="horizontal"> + <FrameLayout + android:id="@+id/notification_main_column" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginEnd="8dp" + android:layout_marginBottom="8dp"/> + <FrameLayout + android:id="@+id/right_side" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginEnd="8dp" + android:paddingTop="@dimen/notification_right_side_padding_top"> + <ViewStub android:id="@+id/time" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end|top" + android:visibility="gone" + android:layout="@layout/notification_template_part_time" /> + <ViewStub android:id="@+id/chronometer" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end|top" + android:visibility="gone" + android:layout="@layout/notification_template_part_chronometer" /> + <TextView android:id="@+id/info" + android:textAppearance="@style/TextAppearance.Compat.Notification.Info" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="20dp" + android:layout_gravity="end|bottom" + android:singleLine="true" + /> + </FrameLayout> + </LinearLayout> + <ImageView + android:layout_width="match_parent" + android:layout_height="1dp" + android:id="@+id/action_divider" + android:visibility="gone" + android:background="#29000000" /> + <LinearLayout + android:id="@+id/actions" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginStart="-8dp" + android:orientation="horizontal" + android:visibility="gone" + > + <!-- actions will be added here --> + </LinearLayout> + </LinearLayout> +</FrameLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_icon_group.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_icon_group.xml new file mode 100644 index 0000000000000000000000000000000000000000..8fadd673fe956afe8aefa70b95005bc96cc3f80f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout-v21/notification_template_icon_group.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2017 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<FrameLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="@dimen/notification_large_icon_width" + android:layout_height="@dimen/notification_large_icon_height" + android:id="@+id/icon_group" +> + <ImageView android:id="@+id/icon" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginTop="@dimen/notification_big_circle_margin" + android:layout_marginBottom="@dimen/notification_big_circle_margin" + android:layout_marginStart="@dimen/notification_big_circle_margin" + android:layout_marginEnd="@dimen/notification_big_circle_margin" + android:scaleType="centerInside" + /> + <ImageView android:id="@+id/right_icon" + android:layout_width="@dimen/notification_right_icon_size" + android:layout_height="@dimen/notification_right_icon_size" + android:layout_gravity="end|bottom" + android:scaleType="centerInside" + android:visibility="gone" + android:layout_marginEnd="8dp" + android:layout_marginBottom="8dp" + /> +</FrameLayout> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/custom_dialog.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/custom_dialog.xml new file mode 100644 index 0000000000000000000000000000000000000000..47a1b12eee1641f0a23324431e04084d53379b79 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/custom_dialog.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <Button + android:id="@+id/dialog_button" + android:layout_width="100px" + android:layout_height="wrap_content" + android:layout_marginRight="5dp" + android:layout_marginTop="5dp" + android:text=" Ok " /> + +</RelativeLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ffd9a18bd4dcd90eb61132cd4d940faa5fb7bc0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Compat.NotificationActionContainer" + android:id="@+id/action_container" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="48dp" + android:paddingLeft="4dp" + android:paddingStart="4dp" + android:orientation="horizontal"> + <ImageView + android:id="@+id/action_image" + android:layout_width="@dimen/notification_action_icon_size" + android:layout_height="@dimen/notification_action_icon_size" + android:layout_gravity="center|start" + android:scaleType="centerInside"/> + <TextView + style="@style/Widget.Compat.NotificationActionText" + android:id="@+id/action_text" + android:textColor="#ccc" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center|start" + android:paddingLeft="4dp" + android:paddingStart="4dp" + android:singleLine="true" + android:ellipsize="end" + android:clickable="false"/> +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action_tombstone.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action_tombstone.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9d4e37692bec8ee306be7bd9206ebbcbe304a2c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_action_tombstone.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/Widget.Compat.NotificationActionContainer" + android:id="@+id/action_container" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="48dp" + android:paddingLeft="4dp" + android:paddingStart="4dp" + android:orientation="horizontal" + android:enabled="false" + android:background="@null"> + <ImageView + android:id="@+id/action_image" + android:layout_width="@dimen/notification_action_icon_size" + android:layout_height="@dimen/notification_action_icon_size" + android:layout_gravity="center|start" + android:scaleType="centerInside" + android:enabled="false" + android:alpha="0.5"/> + <TextView + style="@style/Widget.Compat.NotificationActionText" + android:id="@+id/action_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center|start" + android:textColor="#ccc" + android:paddingLeft="4dp" + android:paddingStart="4dp" + android:singleLine="true" + android:ellipsize="end" + android:clickable="false" + android:enabled="false" + android:alpha="0.5"/> +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_custom_big.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_custom_big.xml new file mode 100644 index 0000000000000000000000000000000000000000..8aaf9d51f22f232cc9f62f1d55dcbfdb4a77ee0f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_custom_big.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<LinearLayout android:id="@+id/notification_main_column_container" + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="@dimen/notification_large_icon_height" + android:orientation="horizontal" + android:paddingRight="12dp" + android:paddingEnd="12dp"> + <ImageView android:id="@+id/icon" + android:layout_width="@dimen/notification_large_icon_width" + android:layout_height="@dimen/notification_large_icon_height" + android:background="@drawable/notification_tile_bg" + android:scaleType="center" + /> + <FrameLayout + android:id="@+id/notification_main_column" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="12dp" + android:paddingStart="12dp" + android:paddingTop="@dimen/notification_main_column_padding_top" + android:layout_weight="1"/> + <FrameLayout + android:id="@+id/right_side" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingTop="12dp" + android:paddingLeft="12dp"> + <include + layout="@layout/notification_template_part_time" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end|top" + android:visibility="gone"/> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="end|bottom" + android:layout_marginTop="18dp" + android:orientation="horizontal"> + <TextView android:id="@+id/info" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:singleLine="true" + android:textAppearance="@style/TextAppearance.Compat.Notification.Info" + /> + <ImageView android:id="@+id/right_icon" + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_gravity="center" + android:layout_marginLeft="8dp" + android:alpha="0.7" + android:scaleType="center" + android:visibility="gone" + /> + </LinearLayout> + </FrameLayout> +</LinearLayout> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_icon_group.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_icon_group.xml new file mode 100644 index 0000000000000000000000000000000000000000..f225737f08b9067d9345686f38f4ab13befb6c40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_icon_group.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<ImageView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/icon" + android:layout_width="@dimen/notification_large_icon_width" + android:layout_height="@dimen/notification_large_icon_height" + android:scaleType="centerCrop" +/> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_chronometer.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_chronometer.xml new file mode 100644 index 0000000000000000000000000000000000000000..245353b090883613cca9f71b023d97179bb090e2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_chronometer.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<Chronometer android:id="@+id/chronometer" xmlns:android="http://schemas.android.com/apk/res/android" + android:textAppearance="@style/TextAppearance.Compat.Notification.Time" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:singleLine="true" + /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_time.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_time.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a78a93c8d0e42aa82a486371f44dee740d0145c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/layout/notification_template_part_time.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2015 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<DateTimeView android:id="@+id/time" xmlns:android="http://schemas.android.com/apk/res/android" + android:textAppearance="@style/TextAppearance.Compat.Notification.Time" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:singleLine="true" + /> diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-af/values-af.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae95348f75212b3c07174fcf357684823ffb53bb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-af/values-af.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Antwoord"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Wys af"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Lui af"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Inkomende oproep"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Oproep aan die gang"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Keur tans \'n inkomende oproep"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-am/values-am.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d9afe30ec1ad837a36a74f4c01369279c83c4c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-am/values-am.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"መáˆáˆµ"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ቪዲዮ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"አትቀበáˆ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ስáˆáŠ©áŠ• á‹áŒ‹"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ገቢ ጥሪ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"እየተካሄደ ያለ ጥሪ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ገቢ ጥሪ ማጣራት"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ar/values-ar.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..5dc236ba9dde8561d38fe295f3af859f097e949a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ar/values-ar.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ردّ"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Ùيديو"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Ø±ÙØ¶"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"قطع الاتصال"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"مكالمة واردة"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"مكالمة جارية"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"يتم ÙØØµ المكالمة الواردة"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-as/values-as.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a02846604e12dea41ac437120d87c0de190de68 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-as/values-as.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"উতà§à¦¤à§° দিয়ক"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"à¦à¦¿à¦¡à¦¿à¦…’"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"পà§à§°à¦¤à§à¦¯à¦¾à¦–à§à¦¯à¦¾à¦¨ কৰক"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"কল কাটি দিয়ক"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"অনà§à¦¤à§°à§à¦—ামী কল"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"চলি থকা কল"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"à¦à¦Ÿà¦¾ অনà§à¦¤à§°à§à¦—ামী কলৰ পৰীকà§à¦·à¦¾ কৰি থকা হৈছে"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-az/values-az.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..6091e615eee863f48243b89c0b0ec8bdb4ad191b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-az/values-az.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Cavab verin"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"İmtina edin"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"DÉ™stÉ™yi asın"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"GÉ™lÉ™n zÉ™ng"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Davam edÉ™n zÉ™ng"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"GÉ™lÉ™n zÉ™ng göstÉ™rilir"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..459d678434ba8bac8f27a0a8d56a48c33b14f73b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Odgovori"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Odbij"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Prekini vezu"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Dolazni poziv"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Poziv je u toku"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Proverava se dolazni poziv"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-be/values-be.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..b1a983d3f0d089b97dccb5e6f065409b9a5ef505 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-be/values-be.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Ðдказаць"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ВідÑа"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Ðдхіліць"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ЗавÑршыць"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Уваходны выклік"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"БÑгучы выклік"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Фільтраванне ўваходнага выкліку"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bg/values-bg.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4ebc6beb3310c746f8414c3f0c46533f9751648 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bg/values-bg.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Отговор"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видеообаждане"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ОтхвърлÑне"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ЗатварÑне"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ВходÑщо обаждане"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Текущо обаждане"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Преглежда Ñе входÑщо обаждане"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bn/values-bn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..11ca786ddf43eba10296337512cf411c8819785f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bn/values-bn.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"উতà§à¦¤à¦° দিন"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"à¦à¦¿à¦¡à¦¿à¦“"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"বাতিল করà§à¦¨"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"কল কেটে দিন"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ইনকামিং কল"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"চালৠথাকা কল"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ইনকামিং কল সà§à¦•à§à¦°à¦¿à¦¨à¦¿à¦‚ করা হচà§à¦›à§‡"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bs/values-bs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..bb86d53e729e1863fde6f7384247c8f2949885a8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-bs/values-bs.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Odgovori"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Odbaci"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Prekini vezu"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Dolazni poziv"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Poziv u toku"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtriranje dolaznog poziva"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ca/values-ca.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..eb5f138e881fe923195498c3ab7f74b27af5468d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ca/values-ca.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Respon"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rebutja"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Penja"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Trucada entrant"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Trucada en curs"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"S\'està filtrant una trucada entrant"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-cs/values-cs.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddd6a04448afb6b565740f8c3047e9ffa8a08816 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-cs/values-cs.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"PÅ™ijmout"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"OdmÃtnout"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ZavÄ›sit"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"PÅ™Ãchozà hovor"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ProbÃhajÃcà hovor"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Prověřovánà pÅ™ÃchozÃho hovoru"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-da/values-da.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b781c28e9d5ac24035af28c4c53b5bc9c476998 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-da/values-da.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Besvar"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Afvis"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Læg pÃ¥"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"IndgÃ¥ende opkald"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Igangværende opkald"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Et indgÃ¥ende opkald screenes"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-de/values-de.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..f177880e6df3fffb16bdfbfcb1ee10d17d4edf74 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-de/values-de.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Annehmen"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Ablehnen"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Auflegen"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Eingehender Anruf"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Aktueller Anruf"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filter für eingehenden Anruf"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-el/values-el.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..fcf0d3a50f2722a4ddf4dc8476c9d762afacbc53 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-el/values-el.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Απάντηση"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Βίντεο"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ΑπόÏÏιψη"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ΤεÏματισμός"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ΕισεÏχόμενη κλήση"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Κλήση σε εξÎλιξη"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Διαλογή εισεÏχόμενης κλήσης"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rAU/values-en-rAU.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c59a737e3b6a5fca43c613868e68c0a52f3c4b2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Answer"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Decline"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Hang up"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Incoming call"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"On-going call"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Screening an incoming call"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rCA/values-en-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..c55e620a2c91c3967cb1622394f1cc511e41efd5 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Answer"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Decline"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Hang Up"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Incoming call"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Ongoing call"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Screening an incoming call"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rGB/values-en-rGB.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c59a737e3b6a5fca43c613868e68c0a52f3c4b2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Answer"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Decline"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Hang up"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Incoming call"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"On-going call"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Screening an incoming call"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rIN/values-en-rIN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c59a737e3b6a5fca43c613868e68c0a52f3c4b2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Answer"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Decline"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Hang up"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Incoming call"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"On-going call"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Screening an incoming call"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rXC/values-en-rXC.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000000000000000000000000000000000000..ff291e408c0930f15a5ce343098ed73b1ea4b384 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€ŽAnswer‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€ŽVideo‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€ŽDecline‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€ŽHang Up‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€ŽIncoming call‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€ŽOngoing call‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€ŽScreening an incoming call‎â€â€Žâ€Žâ€â€Ž"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Ž999+‎â€â€Žâ€Žâ€â€Ž"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es-rUS/values-es-rUS.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..46179646092a185917aeba1b2d583fb5432efd4f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Responder"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rechazar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Colgar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Llamada entrante"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Llamada en curso"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrando una llamada entrante"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es/values-es.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..1eefca122efadd35f102847eb78dd53484d952c9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-es/values-es.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Responder"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rechazar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Colgar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Llamada entrante"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Llamada en curso"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrando una llamada entrante"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-et/values-et.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..474fa34c6df4f21a328ad3ced705a3851cf5196b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-et/values-et.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Vasta"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Keeldu"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Lõpeta kõne"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Sissetulev kõne"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Käimasolev kõne"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Sissetuleva kõne filtreerimine"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-eu/values-eu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..86e7b4c35ef598ff4d54e67daaaf65880f7ab612 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-eu/values-eu.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Erantzun"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Bideoa"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Baztertu"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Amaitu deia"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Jasotako deia"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Deia abian da"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Jasotako dei bat bistaratzen"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fa/values-fa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e7c01f143d2c096846d89f94aab51865cac07d8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fa/values-fa.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"پاسخ دادن"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ویدیو"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"رد کردن"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"قطع تماس"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"تماس ورودی"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"تماس Ø¯Ø±ØØ§Ù„ انجام"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Ø¯Ø±ØØ§Ù„ غربال کردن تماس ورودی"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fi/values-fi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..8019b820bd5f978e304ed7156c6f919fda1e51c8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fi/values-fi.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Vastaa"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Hylkää"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Lopeta puhelu"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Saapuva puhelu"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Käynnissä oleva puhelu"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Seulotaan saapuvaa puhelua"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr-rCA/values-fr-rCA.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba18c39a90aaa7ce52a39a01b7bfd5c1a401f1ea --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Répondre"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Vidéo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Refuser"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Raccrocher"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Appel entrant"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Appel en cours"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrer un appel entrant"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr/values-fr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ef64cd57dd9da65010f1f8fd4d87d2f98f6b10d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-fr/values-fr.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Répondre"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Vidéo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Refuser"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Raccrocher"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Appel entrant"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Appel en cours"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrage d\'un appel entrant"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gl/values-gl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..3f27ff283a66683193cdbb1fe7248c2cba204735 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gl/values-gl.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Contestar"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rexeitar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Colgar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Chamada entrante"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Chamada en curso"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrando chamada entrante"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">">999"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gu/values-gu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..9749808eeb226a3e99a303a38ed9c1fe2cf7ed88 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-gu/values-gu.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"જવાબ"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"વીડિયો"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"નકારો"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"સમાપà«àª¤ કરો"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ઇનકમિંગ કૉલ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ચાલૠકૉલ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ઇનકમિંગ કૉલનà«àª‚ સà«àª•à«àª°à«€àª¨àª¿àª‚ગ થાય છે"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hi/values-hi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..f019f8fc80af9368dfc39ef2f208307755a42b9a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hi/values-hi.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"जवाब दें"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"वीडियो"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"असà¥à¤µà¥€à¤•ार करें"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"कॉल काटें"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"आने वाला (इनकमिंग) कॉल"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"पहले से जारी कॉल"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"इनकमिंग कॉल को सà¥à¤•à¥à¤°à¥€à¤¨ किया जा रहा है"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hr/values-hr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6750e6349a5b3b58cf17f38ace9bc6840615558 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hr/values-hr.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Odgovori"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Videozapis"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Odbij"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Prekini"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Dolazni poziv"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Poziv u tijeku"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtriranje dolaznog poziva"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hu/values-hu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..ead6317afa1c52fbc32936a43b0529e01afaf8f2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hu/values-hu.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Fogadás"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Videó"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ElutasÃtás"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Befejezés"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"BejövÅ‘ hÃvás"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"HÃvás folyamatban"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"BejövÅ‘ hÃvás szűrése"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hy/values-hy.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..8629a55ea8a55eca00989706d719221e5c1b8829 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-hy/values-hy.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ÕŠÕ¡Õ¿Õ¡Õ½ÕÕ¡Õ¶Õ¥Õ¬"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ÕÕ¥Õ½Õ¡Õ¦Õ¡Õ¶Õ£"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Õ„Õ¥Ö€ÕªÕ¥Õ¬"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Ô±Õ¾Õ¡Ö€Õ¿Õ¥Õ¬"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Ô¸Õ¶Õ©Õ¡ÖÕ«Õ¯ Õ¦Õ¡Õ¶Õ£"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£Õ« Õ¦Õ¿Õ¸Ö‚Õ´"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-in/values-in.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..e61f5d441b1d8ede3fb91eca69254c74800f9c33 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-in/values-in.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Jawab"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Tolak"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Tutup"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Panggilan masuk"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Panggilan sedang berlangsung"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Menyaring panggilan masuk"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-is/values-is.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..60be2ec78f4d5b6f31afd270366d1ed643a259b8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-is/values-is.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Svara"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"MyndsÃmtal"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Hafna"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Leggja á"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"SÃmtal berst"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"SÃmtal à gangi"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"SÃar sÃmtal sem berst"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-it/values-it.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..715fa29cb17ab107a3832be395f6f056326546ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-it/values-it.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Rispondi"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rifiuta"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Riaggancia"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Chiamata in arrivo"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Chiamata in corso"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Applicazione filtro a chiamata in arrivo"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-iw/values-iw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..91cbb13bc313965b7986d5c4fbcd6d9168c09a7e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-iw/values-iw.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"×ž×¢× ×”"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ויד×ו"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"דחייה"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"× ×™×ª×•×§"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"שיחה × ×›× ×¡×ª"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"שיחה פעילה"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"×¡×™× ×•×Ÿ שיחה × ×›× ×¡×ª"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ja/values-ja.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..8f05d3df364c47601fc1223334d63556156d6b8a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ja/values-ja.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"応ç”"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ビデオ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"æ‹’å¦"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"通話終了"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ç€ä¿¡"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"通話ä¸"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ç€ä¿¡ã‚’スクリーニングä¸"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ka/values-ka.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c112515a585f51d6ec55a4388934a642bf8cc59 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ka/values-ka.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"პáƒáƒ¡áƒ£áƒ®áƒ˜"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ვიდეáƒ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"უáƒáƒ ყáƒáƒ¤áƒ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"გáƒáƒ—იშვáƒ"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ი"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"მიმდინáƒáƒ ე ზáƒáƒ ი"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ების გáƒáƒªáƒ®áƒ ილვáƒ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kk/values-kk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..7462e0709c700cdaf30328f5cc31d35b44ca1b75 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kk/values-kk.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Жауап"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Бейне"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Қабылдамау"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Тұтқаны қою"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ÐšÑ–Ñ€Ñ–Ñ Ò›Ð¾Ò£Ñ‹Ñ€Ð°Ñƒ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Қоңырау"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Келген қоңырауды Ñүзу"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-km/values-km.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..78aa9f2fc78d71baafaade357cc8a534c31d2e61 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-km/values-km.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ឆ្លើយ"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"វីដáŸáž¢áž¼"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"បដិសáŸáž’"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ដាក់​ចុះ"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ការ​ហៅ​ចូល"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ការ​ហៅដែលកំពុងដំណើរការ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"កំពុងពិនិážáŸ’យការ​ហៅ​ចូល"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kn/values-kn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..08ec938189427c1f0abacfc54f836be0b40b3c40 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-kn/values-kn.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ಉತà³à²¤à²°à²¿à²¸à²¿"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ವೀಡಿಯೊ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ನಿರಾಕರಿಸಿ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ಕರೆ ಕೊನೆಗೊಳಿಸಿ"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ಒಳಬರà³à²µ ಕರೆ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ಚಾಲà³à²¤à²¿à²¯à²²à³à²²à²¿à²°à³à²µ ಕರೆ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ಒಳಬರà³à²µ ಕರೆಯನà³à²¨à³ ಸà³à²•à³à²°à³€à²¨à³ ಮಾಡಲಾಗà³à²¤à³à²¤à²¿à²¦à³†"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ko/values-ko.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..adabc72b55d959400f7fe14615fcd4861b724100 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ko/values-ko.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"통화"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ë™ì˜ìƒ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ê±°ì ˆ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ì „í™” ëŠê¸°"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ìˆ˜ì‹ ì „í™”"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ì§„í–‰ ì¤‘ì¸ í†µí™”"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ìˆ˜ì‹ ì „í™” 검사 중"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ky/values-ky.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..dff8410dc9215f6a6c41657aebd0f3f8eb41845c --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ky/values-ky.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Жооп берүү"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Четке кагуу"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Чалууну бүтүрүү"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Кирүүчү чалуу"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Учурдагы чалуу"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Кирүүчү чалууну иргөө"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lo/values-lo.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lo/values-lo.xml new file mode 100644 index 0000000000000000000000000000000000000000..180f20b46d672006800e2e716cafa9e739ca92e8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lo/values-lo.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ຮັບສາàº"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ວິດີໂàº"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ປະຕິເສດ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ວາງສາàº"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ສາàºà»‚ທເຂົ້າ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ສາàºà»‚ທàºàºàº"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"àºàº³àº¥àº±àº‡àºàº§àº”ສàºàºšàºªàº²àºà»‚ທເຂົ້າ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lt/values-lt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lt/values-lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..5cf8025eb310a037052a9148611021faeb23061a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lt/values-lt.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Atsakyti"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Vaizdo įraÅ¡as"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Atmesti"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Baigti pok."</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Gaunamasis skambutis"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Vykstantis skambutis"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Gaunamojo skambuÄio tikrinimas"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lv/values-lv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lv/values-lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..872609514cc40cc0383af775138e5328d494287a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-lv/values-lv.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"AtbildÄ“t"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"NoraidÄ«t"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"PÄrtraukt"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"IenÄkoÅ¡ais zvans"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"PaÅ¡reizÄ“jais zvans"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"IenÄkoÅ¡Ä zvana filtrēšana"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mk/values-mk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mk/values-mk.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b0854d5e9780dd2eece86ecfd617a0cca5665b4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mk/values-mk.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Одговори"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Одбиј"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Спушти"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Дојдовен повик"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Тековен повик"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Проверка на дојдовен повик"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ml/values-ml.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ml/values-ml.xml new file mode 100644 index 0000000000000000000000000000000000000000..82eddad758dc6357057b1fb76166aed3bd92f7af --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ml/values-ml.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"മറàµà´ªà´Ÿà´¿ നൽകàµà´•"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"വീഡിയോ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"നിരസികàµà´•àµà´•"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"കോൾ നിർതàµà´¤àµà´•"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ഇൻകമിംഗൠകോൾ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"സജീവമായ കോൾ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ഇൻകമിംഗൠകോൾ à´¸àµâ€Œà´•àµà´°àµ€àµ» ചെയàµà´¯àµà´¨àµà´¨àµ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mn/values-mn.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mn/values-mn.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e948b5e2f9fd212f7bd885d4c0ffe54b665985b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mn/values-mn.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Хариулах"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Татгалзах"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ТаÑлах"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ИрÑÑн дуудлага"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Дуудлага хийгдÑж байна"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ИрÑÑн дуудлагыг харуулж байна"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mr/values-mr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mr/values-mr.xml new file mode 100644 index 0000000000000000000000000000000000000000..c9cd0ec865997263976252dea8e97ec0084887a9 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-mr/values-mr.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"उतà¥à¤¤à¤° दà¥à¤¯à¤¾"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"वà¥à¤¹à¤¿à¤¡à¤¿à¤“"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"नकार दà¥à¤¯à¤¾"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"कॉल बंद करा"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"इनकमिंग कॉल"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"सà¥à¤°à¥‚ असलेला कॉल"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"इनकमिंग कॉल सà¥à¤•à¥à¤°à¥€à¤¨ करत आहे"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"९९९+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ms/values-ms.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ms/values-ms.xml new file mode 100644 index 0000000000000000000000000000000000000000..82f435966f5812ffe49727031136161fccb7f799 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ms/values-ms.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Jawab"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Tolak"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Tamatkan Panggilan"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Panggilan masuk"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Panggilan sedang berlangsung"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Menyaring panggilan masuk"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-my/values-my.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-my/values-my.xml new file mode 100644 index 0000000000000000000000000000000000000000..01941154b4f1e7ea36ba5e4f7974309b806b05ff --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-my/values-my.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ဖုန်းကá€á€¯á€„်ရန်"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ဗီဒီယá€á€¯"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ငြင်းပယ်ရန်"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ဖုန်းá€á€»á€›á€”်"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"လက်ရှá€á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯á€€á€á€¯ စစ်ဆေးနေသည်"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"á‰á‰á‰+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nb/values-nb.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nb/values-nb.xml new file mode 100644 index 0000000000000000000000000000000000000000..4297d80b42690aef93a63ae3d915a3db4337d7ee --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nb/values-nb.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Svar"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Avvis"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Legg pÃ¥"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Innkommende anrop"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"PÃ¥gÃ¥ende samtale"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrerer et innkommende anrop"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ne/values-ne.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ne/values-ne.xml new file mode 100644 index 0000000000000000000000000000000000000000..19328ff242946bb79fd9e52ae56af8e8d6d66b05 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ne/values-ne.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"जवाफ दिनà¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"à¤à¤¿à¤¡à¤¿à¤¯à¥‹"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"काटà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"फोन राखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"आगमन कल"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"à¤à¤‡à¤°à¤¹à¥‡à¤•ो कल"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"आगमन कल जाà¤à¤šà¤¿à¤à¤¦à¥ˆ छ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"९९९+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nl/values-nl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nl/values-nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..99c5c66c6e65078fad42ac6483460c24be7024d1 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-nl/values-nl.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Beantwoorden"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Weigeren"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Ophangen"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Inkomend gesprek"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Actief gesprek"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Een inkomend gesprek screenen"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-or/values-or.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-or/values-or.xml new file mode 100644 index 0000000000000000000000000000000000000000..f1c208874ffebb80c62a59968674d807b017daff --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-or/values-or.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ଉତàତର ଦିଅନàତà"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"à¬à¬¿à¬¡à¬¿à¬“"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ଅଗàରାହààŸ à¬•à¬°"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ସମାପàତ କରନàତà"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ଇନକମିଂ କଲà"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ଚାଲିଥିବା କଲà"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"à¬à¬• ଇନକମିଂ କଲକà ସàକàରିନà କରàଛି"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pa/values-pa.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pa/values-pa.xml new file mode 100644 index 0000000000000000000000000000000000000000..d701a328357bc1307a9f9f5e93d79e32a670fb19 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pa/values-pa.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ਜਵਾਬ ਦਿਓ"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ਵੀਡੀਓ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ਅਸਵੀਕਾਰ ਕਰੋ"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ਸਮਾਪਤ ਕਰੋ"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ਇਨਕਮਿੰਗ ਕਾਲ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"ਜਾਰੀ ਕਾਲ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ਇਨਕਮਿੰਗ ਕਾਲ ਦੀ ਸਕà©à¨°à©€à¨¨à¨¿à©°à¨— ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pl/values-pl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pl/values-pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ecd5e0942dc0b8dd35d90d22af516e74df92cda --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pl/values-pl.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Odbierz"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Wideo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Odrzuć"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Rozłącz"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Połączenie przychodzÄ…ce"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Trwa połączenie"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"FiltrujÄ™ połączenie przychodzÄ…ce"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rBR/values-pt-rBR.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rBR/values-pt-rBR.xml new file mode 100644 index 0000000000000000000000000000000000000000..766d7730aac8170c20162bf10e1232ebac9854fd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rBR/values-pt-rBR.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Atender"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Recusar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Desligar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Chamada recebida"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Chamada em andamento"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrando uma ligação recebida"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rPT/values-pt-rPT.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdedfae1d2c1b5ece0cd6e2b4d2ad7efd16a13c4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Atender"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Recusar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Desligar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Chamada recebida"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Chamada em curso"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"A filtrar uma chamada recebida…"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt/values-pt.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt/values-pt.xml new file mode 100644 index 0000000000000000000000000000000000000000..766d7730aac8170c20162bf10e1232ebac9854fd --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-pt/values-pt.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Atender"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"VÃdeo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Recusar"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Desligar"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Chamada recebida"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Chamada em andamento"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Filtrando uma ligação recebida"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ro/values-ro.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ro/values-ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ec5aa8316c6c71d3f0f427fa113858a34e36e84 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ro/values-ro.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Răspunde"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Respinge"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ÃŽnchide"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Apel primit"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Apel în desfășurare"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Se filtrează un apel primit"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ru/values-ru.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ru/values-ru.xml new file mode 100644 index 0000000000000000000000000000000000000000..b660994142f6bc338d41cb693e5620ec90d5c3c2 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ru/values-ru.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Ответить"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Отклонить"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Завершить"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ВходÑщий вызов"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Текущий вызов"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Ð¤Ð¸Ð»ÑŒÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð²Ñ…Ð¾Ð´Ñщего вызова"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">">999"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-si/values-si.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-si/values-si.xml new file mode 100644 index 0000000000000000000000000000000000000000..37c508b49a66d7339f0458958c003b18bbb16c41 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-si/values-si.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"à¶´à·’à·…à·’à¶à·”රු දෙ."</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"වීඩියà·"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"à¶´à·Šâ€à¶»à¶à·’à¶šà·Šà·‚à·šà¶´ à¶š"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"විසන්ධි කරන්න"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"à¶‘à¶± ඇමà¶à·”ම"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"කරගෙන යන ඇමà¶à·”ම"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"à¶‘à¶± ඇමà¶à·”මක් පරීක්ෂ෠කරන්න"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sk/values-sk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sk/values-sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c3e5494d46d48c127bd82ffdca03bc00e2c597f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sk/values-sk.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"PrijaÅ¥"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"OdmietnuÅ¥"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"ZložiÅ¥"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Prichádzajúci hovor"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Prebiehajúci hovor"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Preveruje sa prichádzajúci hovor"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sl/values-sl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sl/values-sl.xml new file mode 100644 index 0000000000000000000000000000000000000000..c78de88b7863520853464688f363653869c88ef6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sl/values-sl.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Sprejmi"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Zavrni"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Prekini klic"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Dohodni klic"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Aktivni klic"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Preverjanje dohodnega klica"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sq/values-sq.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sq/values-sq.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a75aab6ee06fd32c428faa2f682a9ccca6cf133 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sq/values-sq.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Përgjigju"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Refuzo"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Mbyll"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Telefonatë hyrëse"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Telefonatë në vazhdim"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Po filtron një telefonatë hyrëse"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sr/values-sr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sr/values-sr.xml new file mode 100644 index 0000000000000000000000000000000000000000..52cada40b6b7da6395a8b51c9dcf4f67036ca4b3 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sr/values-sr.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Одговори"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Видео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Одбиј"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Прекини везу"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Долазни позив"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Позив је у току"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Проверава Ñе долазни позив"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sv/values-sv.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sv/values-sv.xml new file mode 100644 index 0000000000000000000000000000000000000000..45997242fecae5a3870057c65283efbb650725cc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sv/values-sv.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Svara"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Avvisa"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Lägg pÃ¥"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Inkommande samtal"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"PÃ¥gÃ¥ende samtal"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Ett inkommande samtal filtreras"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sw/values-sw.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sw/values-sw.xml new file mode 100644 index 0000000000000000000000000000000000000000..068ce3feb5db065572ee9b35aff1585359d2e3ca --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-sw/values-sw.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Jibu"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Kataa"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Kata simu"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Simu uliyopigiwa"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Simu inayoendelea"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Inachuja simu unayopigiwa"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ta/values-ta.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..0bf36523c3d98464c5fe3509c9f917233d6bb60b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ta/values-ta.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"பதிலளி"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"வீடியோ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"நிராகரி"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"தà¯à®£à¯à®Ÿà®¿"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"செயலில௠இரà¯à®•à¯à®•à¯à®®à¯ அழைபà¯à®ªà¯"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯ˆ மதிபà¯à®ªà®¾à®¯à¯à®µà¯ செயà¯à®•ிறதà¯"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-te/values-te.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f89d51c4bb13fdf7f7519be721a4b43aeb87e76 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-te/values-te.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"పికపౠచేయండి"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"వీడియో కాలà±"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"కటౠచేయండి"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"à°®à±à°—à°¿à°‚à°šà°‚à°¡à°¿"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"ఇనà±â€Œà°•మింగౠకాలà±"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"కాలౠకొనసాగà±à°¤à±‹à°‚ది"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"ఇనà±â€Œà°•మింగౠకాలà±â€Œà°¨à± à°¸à±à°•à±à°°à±€à°¨à± చేయండి"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-th/values-th.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..36c6b3ad8e3d30149f838b8ed48a0696671749de --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-th/values-th.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"รับสาย"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"วิดีโà¸"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"ปà¸à¸´à¹€à¸ªà¸˜"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"วางสาย"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"สายเรียà¸à¹€à¸‚้า"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"สายที่สนทนาà¸à¸¢à¸¹à¹ˆ"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"à¸à¸³à¸¥à¸±à¸‡à¸ªà¸à¸£à¸µà¸™à¸ªà¸²à¸¢à¹€à¸£à¸µà¸¢à¸à¹€à¸‚้า"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tl/values-tl.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..2bb66a93971e470860e542ee12dd9ce868f26de6 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tl/values-tl.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Sagutin"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Tanggihan"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Ibaba"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Papasok na tawag"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Kasalukuyang tawag"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Nagsi-screen ng papasok na tawag"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tr/values-tr.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..76f5bab07ba03e7471f9d2f05fc17b063e8bebfb --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-tr/values-tr.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Yanıtla"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Reddet"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Kapat"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Gelen arama"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Devam eden arama"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Gelen arama süzülüyor"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uk/values-uk.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..025234a0b0da708daf9f8a41c2b191a7ae813aac --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uk/values-uk.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"ВідповіÑти"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Відео"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Відхилити"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Завершити"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Вхідний виклик"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Ðктивний виклик"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Вхідний виклик (Фільтр)"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ur/values-ur.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..776ef7aa5f87c48ba928f54446bea8fc08fb8957 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-ur/values-ur.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"جواب دیں"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"ویڈیو"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"مسترد کریں"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"منقطع کر دیں"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"اÙÙ† کمنگ کال"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"جاری کال"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"اÙÙ† کمنگ کال Ú©ÛŒ اسکریننگ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"+999"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uz/values-uz.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..faea77a694acec73cdea2afd6cabb2c15775d81d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-uz/values-uz.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Javob berish"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Rad etish"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Tugatish"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Kiruvchi chaqiruv"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Joriy chaqiruv"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Kiruvchi chaqiruvni filtrlash"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v16/values-v16.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v16/values-v16.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e02d6922c4ce9689810512486e24ba3c471ddfa --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v16/values-v16.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="notification_right_side_padding_top">4dp</dimen> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v21/values-v21.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v21/values-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..07d2b09376975b326a93a6f6df98d73e600790bc --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-v21/values-v21.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="notification_action_color_filter">@color/androidx_core_secondary_text_default_material_light</color> + <dimen name="notification_content_margin_start">0dp</dimen> + <dimen name="notification_main_column_padding_top">0dp</dimen> + <dimen name="notification_media_narrow_margin">12dp</dimen> + <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.Material.Notification"/> + <style name="TextAppearance.Compat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/> + <style name="TextAppearance.Compat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/> + <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/> + <style name="Widget.Compat.NotificationActionContainer" parent=""> + <item name="android:background">@drawable/notification_action_background</item> + </style> + <style name="Widget.Compat.NotificationActionText" parent=""> + <item name="android:textAppearance">?android:attr/textAppearanceButton</item> + <item name="android:textColor">@color/androidx_core_secondary_text_default_material_light</item> + <item name="android:textSize">@dimen/notification_action_text_size</item> + </style> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-vi/values-vi.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..f906ef607a3fb30c7a09a813bbe8a11b96e7bf84 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-vi/values-vi.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Trả lá»i"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Video"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Từ chối"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Kết thúc"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Cuá»™c gá»i đến"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Cuá»™c gá»i Ä‘ang thá»±c hiện"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Äang sà ng lá»c cuá»™c gá»i đến"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rCN/values-zh-rCN.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..194e4f986eec07c3aaa559dace5d8253247fb34f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"接å¬"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"视频通è¯"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"拒接"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"挂æ–"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"æ¥ç”µ"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"æ£åœ¨é€šè¯"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"æ£åœ¨è¿‡æ»¤æ¥ç”µ"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rHK/values-zh-rHK.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..3dfd5d56628cda04bf5ba90737b3359cfceccc5b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"接è½"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"視åƒ"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"拒接"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"掛斷"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"來電"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"通話ä¸"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"æ£åœ¨éŽæ¿¾ä¾†é›»"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rTW/values-zh-rTW.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..0bc44e2a262c8b8cdd857850ebb440fd3118d1d0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"接è½"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"視訊"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"拒接"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"掛斷"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"來電"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"通話ä¸"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"æ£åœ¨éŽæ¿¾ä¾†é›»"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zu/values-zu.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..b07042b3f06df7f3d9c74e8f2626e76959565b2b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values-zu/values-zu.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string msgid="881409763997275156" name="call_notification_answer_action">"Phendula"</string> + <string msgid="8793775615905189152" name="call_notification_answer_video_action">"Ividiyo"</string> + <string msgid="3229508546291798546" name="call_notification_decline_action">"Yenqaba"</string> + <string msgid="2659457946726154263" name="call_notification_hang_up_action">"Vala Ucingo"</string> + <string msgid="6107532579223922871" name="call_notification_incoming_text">"Ikholi engenayo"</string> + <string msgid="8623827134497363134" name="call_notification_ongoing_text">"Ikholi eqhubekayo"</string> + <string msgid="59049573811482460" name="call_notification_screening_text">"Ukuveza ikholi engenayo"</string> + <string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values/values.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..5fd31fbeec5a5efa1714fcc0d9c1cf49f8242cf8 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/98/jl/res/values/values.xml @@ -0,0 +1,216 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <attr format="reference" name="nestedScrollViewStyle"/> + <color name="androidx_core_ripple_material_light">#1f000000</color> + <color name="androidx_core_secondary_text_default_material_light">#8a000000</color> + <color name="call_notification_answer_color">#1d873b</color> + <color name="call_notification_decline_color">#d93025</color> + <color name="notification_action_color_filter">#ffffffff</color> + <color name="notification_icon_bg_color">#ff9e9e9e</color> + <dimen name="compat_button_inset_horizontal_material">4dp</dimen> + <dimen name="compat_button_inset_vertical_material">6dp</dimen> + <dimen name="compat_button_padding_horizontal_material">8dp</dimen> + <dimen name="compat_button_padding_vertical_material">4dp</dimen> + <dimen name="compat_control_corner_material">2dp</dimen> + <dimen name="compat_notification_large_icon_max_height">320dp</dimen> + <dimen name="compat_notification_large_icon_max_width">320dp</dimen> + <dimen name="notification_action_icon_size">32dp</dimen> + <dimen name="notification_action_text_size">13sp</dimen> + <dimen name="notification_big_circle_margin">12dp</dimen> + <dimen name="notification_content_margin_start">8dp</dimen> + <dimen name="notification_large_icon_height">64dp</dimen> + <dimen name="notification_large_icon_width">64dp</dimen> + <dimen name="notification_main_column_padding_top">10dp</dimen> + <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen> + <dimen name="notification_right_icon_size">16dp</dimen> + <dimen name="notification_right_side_padding_top">2dp</dimen> + <dimen name="notification_small_icon_background_padding">3dp</dimen> + <dimen name="notification_small_icon_size_as_large">24dp</dimen> + <dimen name="notification_subtext_size">13sp</dimen> + <dimen name="notification_top_pad">10dp</dimen> + <dimen name="notification_top_pad_large_text">5dp</dimen> + <drawable name="notification_template_icon_bg">#3333B5E5</drawable> + <drawable name="notification_template_icon_low_bg">#0cffffff</drawable> + <item name="accessibility_action_clickable_span" type="id"/> + <item name="accessibility_custom_action_0" type="id"/> + <item name="accessibility_custom_action_1" type="id"/> + <item name="accessibility_custom_action_10" type="id"/> + <item name="accessibility_custom_action_11" type="id"/> + <item name="accessibility_custom_action_12" type="id"/> + <item name="accessibility_custom_action_13" type="id"/> + <item name="accessibility_custom_action_14" type="id"/> + <item name="accessibility_custom_action_15" type="id"/> + <item name="accessibility_custom_action_16" type="id"/> + <item name="accessibility_custom_action_17" type="id"/> + <item name="accessibility_custom_action_18" type="id"/> + <item name="accessibility_custom_action_19" type="id"/> + <item name="accessibility_custom_action_2" type="id"/> + <item name="accessibility_custom_action_20" type="id"/> + <item name="accessibility_custom_action_21" type="id"/> + <item name="accessibility_custom_action_22" type="id"/> + <item name="accessibility_custom_action_23" type="id"/> + <item name="accessibility_custom_action_24" type="id"/> + <item name="accessibility_custom_action_25" type="id"/> + <item name="accessibility_custom_action_26" type="id"/> + <item name="accessibility_custom_action_27" type="id"/> + <item name="accessibility_custom_action_28" type="id"/> + <item name="accessibility_custom_action_29" type="id"/> + <item name="accessibility_custom_action_3" type="id"/> + <item name="accessibility_custom_action_30" type="id"/> + <item name="accessibility_custom_action_31" type="id"/> + <item name="accessibility_custom_action_4" type="id"/> + <item name="accessibility_custom_action_5" type="id"/> + <item name="accessibility_custom_action_6" type="id"/> + <item name="accessibility_custom_action_7" type="id"/> + <item name="accessibility_custom_action_8" type="id"/> + <item name="accessibility_custom_action_9" type="id"/> + <item name="line1" type="id"/> + <item name="line3" type="id"/> + <item name="tag_accessibility_actions" type="id"/> + <item name="tag_accessibility_clickable_spans" type="id"/> + <item name="tag_accessibility_heading" type="id"/> + <item name="tag_accessibility_pane_title" type="id"/> + <item name="tag_on_apply_window_listener" type="id"/> + <item name="tag_on_receive_content_listener" type="id"/> + <item name="tag_on_receive_content_mime_types" type="id"/> + <item name="tag_screen_reader_focusable" type="id"/> + <item name="tag_state_description" type="id"/> + <item name="tag_transition_group" type="id"/> + <item name="tag_unhandled_key_event_manager" type="id"/> + <item name="tag_unhandled_key_listeners" type="id"/> + <item name="tag_window_insets_animation_callback" type="id"/> + <item name="text" type="id"/> + <item name="text2" type="id"/> + <item name="title" type="id"/> + <integer name="status_bar_notification_info_maxnum">999</integer> + <string name="call_notification_answer_action">Answer</string> + <string name="call_notification_answer_video_action">Video</string> + <string name="call_notification_decline_action">Decline</string> + <string name="call_notification_hang_up_action">Hang Up</string> + <string name="call_notification_incoming_text">Incoming call</string> + <string name="call_notification_ongoing_text">Ongoing call</string> + <string name="call_notification_screening_text">Screening an incoming call</string> + <string name="status_bar_notification_info_overflow">999+</string> + <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/> + <style name="TextAppearance.Compat.Notification.Info"> + <item name="android:textSize">12sp</item> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/> + <style name="TextAppearance.Compat.Notification.Time"> + <item name="android:textSize">12sp</item> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/> + <style name="Widget.Compat.NotificationActionContainer" parent=""/> + <style name="Widget.Compat.NotificationActionText" parent=""/> + <declare-styleable name="Capability"> + + <attr format="reference" name="queryPatterns"/> + + <attr format="boolean" name="shortcutMatchRequired"/> + </declare-styleable> + <declare-styleable name="ColorStateListItem"> + + <attr name="android:color"/> + + <attr format="float" name="alpha"/> + <attr name="android:alpha"/> + + <attr format="float" name="lStar"/> + <attr name="android:lStar"/> + </declare-styleable> + <declare-styleable name="FontFamily"> + + <attr format="string" name="fontProviderAuthority"/> + + <attr format="string" name="fontProviderPackage"/> + + <attr format="string" name="fontProviderQuery"/> + + <attr format="reference" name="fontProviderCerts"/> + + <attr name="fontProviderFetchStrategy"> + <!-- The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead. --> + <enum name="blocking" value="0"/> + <!-- The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified. --> + <enum name="async" value="1"/> + </attr> + + <attr format="integer" name="fontProviderFetchTimeout"> + <!-- A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider. --> + <enum name="forever" value="-1"/> + </attr> + + <attr format="string" name="fontProviderSystemFontFamily"/> + </declare-styleable> + <declare-styleable name="FontFamilyFont"> + + <attr name="fontStyle"> + <enum name="normal" value="0"/> + <enum name="italic" value="1"/> + </attr> + + <attr format="reference" name="font"/> + + <attr format="integer" name="fontWeight"/> + + <attr format="string" name="fontVariationSettings"/> + + <attr format="integer" name="ttcIndex"/> + + <attr name="android:fontStyle"/> + <attr name="android:font"/> + <attr name="android:fontWeight"/> + <attr name="android:fontVariationSettings"/> + <attr name="android:ttcIndex"/> + </declare-styleable> + <declare-styleable name="GradientColor"> + + <attr name="android:startColor"/> + + <attr name="android:centerColor"/> + + <attr name="android:endColor"/> + + <attr name="android:type"/> + + + + <attr name="android:gradientRadius"/> + + + + <attr name="android:centerX"/> + + <attr name="android:centerY"/> + + + + <attr name="android:startX"/> + + <attr name="android:startY"/> + + <attr name="android:endX"/> + + <attr name="android:endY"/> + + + <attr name="android:tileMode"/> + </declare-styleable> + <declare-styleable name="GradientColorItem"> + + <attr name="android:offset"/> + + <attr name="android:color"/> + </declare-styleable> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/99.stamp b/App/MauiApp1/obj/Debug/net8.0-android/lp/99.stamp new file mode 100644 index 0000000000000000000000000000000000000000..1d9013d99f4fa19805dd0d95f427ece18b279484 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/99.stamp @@ -0,0 +1 @@ +E0C2D0D03F1E3B17 \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/AndroidManifest.xml b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..62479e810296b7a956876ca86ddf40f607159b4a --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/AndroidManifest.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="androidx.customview" > + + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="29" /> + +</manifest> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/R.txt b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8a796506e978147ad183a169855dfebd5ee78b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/R.txt @@ -0,0 +1,171 @@ +int attr alpha 0x0 +int attr font 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr ttcIndex 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_container 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_text 0x0 +int id actions 0x0 +int id async 0x0 +int id blocking 0x0 +int id chronometer 0x0 +int id dialog_button 0x0 +int id forever 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 0x0 +int id line1 0x0 +int id line3 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id text 0x0 +int id text2 0x0 +int id time 0x0 +int id title 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout custom_dialog 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int string status_bar_notification_info_overflow 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/classes.jar b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..dd51769e6c4aa1f6b27130b68469885c5e2ef9d1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/lp/99/jl/classes.jar differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/lp/map.cache b/App/MauiApp1/obj/Debug/net8.0-android/lp/map.cache new file mode 100644 index 0000000000000000000000000000000000000000..1db887f1de02bccd0b0e477f755ea8a5b0341dd4 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/lp/map.cache @@ -0,0 +1,160 @@ +GoogleGson.dll +Jsr305Binding.dll +Microsoft.Maui.Controls.Compatibility.dll +Microsoft.Maui.Controls.dll +Microsoft.Maui.Controls.Xaml.dll +Microsoft.Maui.dll +Microsoft.Maui.Essentials.dll +Microsoft.Maui.Graphics.dll +Xamarin.Android.Glide.Annotations.dll +Xamarin.Android.Glide.DiskLruCache.dll +Xamarin.Android.Glide.dll +Xamarin.Android.Glide.GifDecoder.dll +Xamarin.AndroidX.Activity.dll +Xamarin.AndroidX.Activity.Ktx.dll +Xamarin.AndroidX.Annotation.dll +Xamarin.AndroidX.Annotation.Experimental.dll +Xamarin.AndroidX.Annotation.Jvm.dll +Xamarin.AndroidX.AppCompat.AppCompatResources.dll +Xamarin.AndroidX.AppCompat.dll +Xamarin.AndroidX.Arch.Core.Common.dll +Xamarin.AndroidX.Arch.Core.Runtime.dll +Xamarin.AndroidX.Browser.dll +Xamarin.AndroidX.CardView.dll +Xamarin.AndroidX.Collection.dll +Xamarin.AndroidX.Collection.Ktx.dll +Xamarin.AndroidX.Concurrent.Futures.dll +Xamarin.AndroidX.ConstraintLayout.Core.dll +Xamarin.AndroidX.ConstraintLayout.dll +Xamarin.AndroidX.CoordinatorLayout.dll +Xamarin.AndroidX.Core.Core.Ktx.dll +Xamarin.AndroidX.Core.dll +Xamarin.AndroidX.CursorAdapter.dll +Xamarin.AndroidX.CustomView.dll +Xamarin.AndroidX.CustomView.PoolingContainer.dll +Xamarin.AndroidX.DocumentFile.dll +Xamarin.AndroidX.DrawerLayout.dll +Xamarin.AndroidX.DynamicAnimation.dll +Xamarin.AndroidX.Emoji2.dll +Xamarin.AndroidX.Emoji2.ViewsHelper.dll +Xamarin.AndroidX.ExifInterface.dll +Xamarin.AndroidX.Fragment.dll +Xamarin.AndroidX.Fragment.Ktx.dll +Xamarin.AndroidX.Interpolator.dll +Xamarin.AndroidX.Legacy.Support.Core.Utils.dll +Xamarin.AndroidX.Lifecycle.Common.dll +Xamarin.AndroidX.Lifecycle.LiveData.Core.dll +Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll +Xamarin.AndroidX.Lifecycle.LiveData.dll +Xamarin.AndroidX.Lifecycle.Process.dll +Xamarin.AndroidX.Lifecycle.Runtime.dll +Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll +Xamarin.AndroidX.Lifecycle.ViewModel.dll +Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll +Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll +Xamarin.AndroidX.Loader.dll +Xamarin.AndroidX.LocalBroadcastManager.dll +Xamarin.AndroidX.Navigation.Common.dll +Xamarin.AndroidX.Navigation.Fragment.dll +Xamarin.AndroidX.Navigation.Runtime.dll +Xamarin.AndroidX.Navigation.UI.dll +Xamarin.AndroidX.Print.dll +Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll +Xamarin.AndroidX.RecyclerView.dll +Xamarin.AndroidX.ResourceInspection.Annotation.dll +Xamarin.AndroidX.SavedState.dll +Xamarin.AndroidX.SavedState.SavedState.Ktx.dll +Xamarin.AndroidX.Security.SecurityCrypto.dll +Xamarin.AndroidX.SlidingPaneLayout.dll +Xamarin.AndroidX.Startup.StartupRuntime.dll +Xamarin.AndroidX.SwipeRefreshLayout.dll +Xamarin.AndroidX.Tracing.Tracing.dll +Xamarin.AndroidX.Transition.dll +Xamarin.AndroidX.VectorDrawable.Animated.dll +Xamarin.AndroidX.VectorDrawable.dll +Xamarin.AndroidX.VersionedParcelable.dll +Xamarin.AndroidX.ViewPager.dll +Xamarin.AndroidX.ViewPager2.dll +Xamarin.AndroidX.Window.dll +Xamarin.AndroidX.Window.Extensions.Core.Core.dll +Xamarin.Google.Android.Material.dll +Xamarin.Google.Crypto.Tink.Android.dll +Xamarin.Google.ErrorProne.Annotations.dll +Xamarin.Google.Guava.ListenableFuture.dll +Xamarin.Jetbrains.Annotations.dll +Xamarin.Kotlin.StdLib.Common.dll +Xamarin.Kotlin.StdLib.dll +Xamarin.Kotlin.StdLib.Jdk7.dll +Xamarin.Kotlin.StdLib.Jdk8.dll +Xamarin.KotlinX.Coroutines.Android.dll +Xamarin.KotlinX.Coroutines.Core.Jvm.dll +androidx.versionedparcelable.versionedparcelable.aar +androidx.tracing.tracing.aar +androidx.startup.startup-runtime.aar +androidx.profileinstaller.profileinstaller.aar +androidx.arch.core.core-runtime.aar +androidx.lifecycle.lifecycle-runtime.aar +androidx.interpolator.interpolator.aar +androidx.annotation.annotation-experimental.aar +androidx.core.core.aar +androidx.customview.customview.aar +androidx.viewpager.viewpager.aar +androidx.savedstate.savedstate.aar +androidx.core.core-ktx.aar +androidx.customview.customview-poolingcontainer.aar +androidx.recyclerview.recyclerview.aar +androidx.lifecycle.lifecycle-viewmodel.aar +androidx.lifecycle.lifecycle-livedata-core.aar +androidx.loader.loader.aar +androidx.lifecycle.lifecycle-viewmodel-savedstate.aar +androidx.activity.activity.aar +androidx.fragment.fragment.aar +androidx.viewpager2.viewpager2.aar +androidx.vectordrawable.vectordrawable.aar +androidx.vectordrawable.vectordrawable-animated.aar +androidx.transition.transition.aar +androidx.print.print.aar +androidx.localbroadcastmanager.localbroadcastmanager.aar +androidx.lifecycle.lifecycle-process.aar +androidx.documentfile.documentfile.aar +androidx.legacy.legacy-support-core-utils.aar +androidx.emoji2.emoji2.aar +androidx.emoji2.emoji2-views-helper.aar +androidx.dynamicanimation.dynamicanimation.aar +androidx.drawerlayout.drawerlayout.aar +androidx.cursoradapter.cursoradapter.aar +androidx.coordinatorlayout.coordinatorlayout.aar +androidx.appcompat.appcompat-resources.aar +androidx.appcompat.appcompat.aar +androidx.constraintlayout.constraintlayout.aar +androidx.cardview.cardview.aar +com.google.android.material.material.aar +androidx.window.extensions.core.core.aar +androidx.window.window.aar +androidx.swiperefreshlayout.swiperefreshlayout.aar +androidx.slidingpanelayout.slidingpanelayout.aar +androidx.security.security-crypto.aar +androidx.savedstate.savedstate-ktx.aar +androidx.lifecycle.lifecycle-viewmodel-ktx.aar +androidx.lifecycle.lifecycle-runtime-ktx.aar +androidx.navigation.navigation-common.aar +androidx.activity.activity-ktx.aar +androidx.navigation.navigation-runtime.aar +androidx.navigation.navigation-ui.aar +androidx.lifecycle.lifecycle-livedata-core-ktx.aar +androidx.fragment.fragment-ktx.aar +androidx.navigation.navigation-fragment.aar +androidx.lifecycle.lifecycle-livedata.aar +androidx.exifinterface.exifinterface.aar +androidx.browser.browser.aar +gifdecoder.aar +glide.aar +GoogleGson.aar +Jsr305Binding.aar +Microsoft.Maui.Controls.Compatibility.aar +Microsoft.Maui.Controls.aar +maui.aar +Microsoft.Maui.aar +Microsoft.Maui.Essentials.aar +Xamarin.Google.Crypto.Tink.Android.aar +Xamarin.Google.ErrorProne.Annotations.aar diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauifont.inputs b/App/MauiApp1/obj/Debug/net8.0-android/mauifont.inputs new file mode 100644 index 0000000000000000000000000000000000000000..4a403a6939b86b6662c77e5df0a86c8f70b97f0b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/mauifont.inputs @@ -0,0 +1,2 @@ +File=Resources\Fonts\OpenSans-Regular.ttf;Link=;Alias= +File=Resources\Fonts\OpenSans-Semibold.ttf;Link=;Alias= diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauifont.stamp b/App/MauiApp1/obj/Debug/net8.0-android/mauifont.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.inputs b/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.inputs new file mode 100644 index 0000000000000000000000000000000000000000..5bf2e8da9aaeeac8e3cebab0e08b97015c4f5b85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.inputs @@ -0,0 +1,2 @@ +File=Resources\Images\dotnet_bot.png;Link=;BaseSize=300,185;Resize=True;TintColor=;Color=;IsAppIcon=;ForegroundScale=;ForegroundFile= +File=Resources\AppIcon\appicon.svg;Link=;BaseSize=;Resize=;TintColor=;Color=#512BD4;IsAppIcon=True;ForegroundScale=;ForegroundFile=Resources\AppIcon\appiconfg.svg diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.outputs b/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.outputs new file mode 100644 index 0000000000000000000000000000000000000000..a09c6dcc311b2015a86186f9a807a4de3612a785 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.outputs @@ -0,0 +1,27 @@ +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\drawable-xxxhdpi\dotnet_bot.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\drawable-xxhdpi\dotnet_bot.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\drawable-xhdpi\dotnet_bot.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\drawable-hdpi\dotnet_bot.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\drawable-mdpi\dotnet_bot.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxxhdpi\appicon_round.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxhdpi\appicon_round.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xhdpi\appicon_round.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-hdpi\appicon_round.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-mdpi\appicon_round.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxxhdpi\appicon.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxhdpi\appicon.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xhdpi\appicon.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-hdpi\appicon.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-mdpi\appicon.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-anydpi-v26\appicon_round.xml +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-anydpi-v26\appicon.xml +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxxhdpi\appicon_foreground.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxhdpi\appicon_foreground.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xhdpi\appicon_foreground.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-hdpi\appicon_foreground.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-mdpi\appicon_foreground.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxxhdpi\appicon_background.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xxhdpi\appicon_background.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-xhdpi\appicon_background.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-hdpi\appicon_background.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-android\resizetizer\r\mipmap-mdpi\appicon_background.png diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.stamp b/App/MauiApp1/obj/Debug/net8.0-android/mauiimage.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauisplash.inputs b/App/MauiApp1/obj/Debug/net8.0-android/mauisplash.inputs new file mode 100644 index 0000000000000000000000000000000000000000..e17487c6dc1b744cb5a426370fb796ac319408bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/mauisplash.inputs @@ -0,0 +1 @@ +File=Resources\Splash\splash.svg;Link=;BaseSize=128,128;Resize=;TintColor=;Color=#512BD4;ForegroundScale=;FileHash=11E4E0C7FD765CACC93CF43F00575E7A2974E476691A5A1720B14CDB865AD71D diff --git a/App/MauiApp1/obj/Debug/net8.0-android/mauisplash.stamp b/App/MauiApp1/obj/Debug/net8.0-android/mauisplash.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/res.flag b/App/MauiApp1/obj/Debug/net8.0-android/res.flag new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/res/values/colors.xml b/App/MauiApp1/obj/Debug/net8.0-android/res/values/colors.xml new file mode 100644 index 0000000000000000000000000000000000000000..c04d7492abf86f02e1b299625efd6f344af01e88 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/res/values/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="colorPrimary">#512BD4</color> + <color name="colorPrimaryDark">#2B0B98</color> + <color name="colorAccent">#2B0B98</color> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Regular.ttf b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ba487fed57907cdfe053acc3ce6c087734c301cf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Regular.ttf differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Semibold.ttf b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Semibold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8fe2c596152b0b5fed469c3081e03245a2d588e4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/f/OpenSans-Semibold.ttf differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..38551c41fb047987c2e7867c2fe577878d931355 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfb9aa6b8ab8c87c045228adcb3bc07d9e0eed8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..4286e4caa94cab28496009db3c0a420163ea3db4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..442f192fca600a8707b85133841899883030e908 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..80276060a5d2898f24ae832e61af102ca7a09dd8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f442af0dbc193977eb72518caed78aac80a6bbe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@mipmap/appicon_background"/> + <foreground android:drawable="@mipmap/appicon_foreground"/> + <monochrome android:drawable="@mipmap/appicon_foreground" /> +</adaptive-icon> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f442af0dbc193977eb72518caed78aac80a6bbe --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@mipmap/appicon_background"/> + <foreground android:drawable="@mipmap/appicon_foreground"/> + <monochrome android:drawable="@mipmap/appicon_foreground" /> +</adaptive-icon> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon.png new file mode 100644 index 0000000000000000000000000000000000000000..48196958c9ca473709ff802393cc7805e00dbbe8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png new file mode 100644 index 0000000000000000000000000000000000000000..292cfd22cb98f86d3376e79757498241d532f319 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..9b12799dc85050b638f229b38a462894cae8f054 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png new file mode 100644 index 0000000000000000000000000000000000000000..c770735dabd7a8de71d1c9978fb933489013bcbd Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon.png new file mode 100644 index 0000000000000000000000000000000000000000..eb17ffc1e9a311953708c3f2746b6b7da5c4efc3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f9cf4abe6590c89e90107dc25aeb7b4e8f2137 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..28f72063bc61455c5dfafd9eb9ed6e0639a13624 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png new file mode 100644 index 0000000000000000000000000000000000000000..aa2d5ac016dc1591ccf74c2059679a242f536a78 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon.png new file mode 100644 index 0000000000000000000000000000000000000000..ca05202bb68f8ccf22cbcd733038316cc493acb6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png new file mode 100644 index 0000000000000000000000000000000000000000..2f75a9b3bb6f7e2a956ce5a66cceab42f0c3159e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..4c2f4f9c3f21a32bf12d3819df572f1f6adee886 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png new file mode 100644 index 0000000000000000000000000000000000000000..d8db063be57c3329ac90dc01004081f63534ef2d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png new file mode 100644 index 0000000000000000000000000000000000000000..02713c1e8ee731eb7594a440c1e290d3af5d217c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png new file mode 100644 index 0000000000000000000000000000000000000000..746e230e0802ff5943b2a6233f63d0c7e1799785 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..9135a27e0ba477920343920e4b3a30e6721002bf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png new file mode 100644 index 0000000000000000000000000000000000000000..82646f729e4618beeaa13869abd88dadc32345fc Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd6fe338dfbb97bf91b46770531d6694f8968a9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png new file mode 100644 index 0000000000000000000000000000000000000000..a54c0b8723a4dbca68752050bd4338f04ef49c85 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..248edd00f749117f3bd1f9f9f647f49030df18c6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png new file mode 100644 index 0000000000000000000000000000000000000000..4a682f04848daf624e9cb2e5ad0ed64d5742fc2e Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-hdpi/splash.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-hdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd6fe338dfbb97bf91b46770531d6694f8968a9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-hdpi/splash.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-mdpi/splash.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-mdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..49a96b188a0af5391794d218233e66bbe21fd4b4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-mdpi/splash.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-v31/maui_splash_image.xml b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-v31/maui_splash_image.xml new file mode 100644 index 0000000000000000000000000000000000000000..89d2505792e7c262ec2148a568ca341adbb8c231 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-v31/maui_splash_image.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<!--This file was auto-generated by .NET MAUI.--> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:width="108dp" android:height="108dp" android:gravity="center"> + <bitmap android:gravity="fill" android:src="@drawable/splash" android:mipMap="true" /> + </item> +</layer-list> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xhdpi/splash.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc2abe75ba9c91bbf697caf93b34e0f866fdb8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xhdpi/splash.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxhdpi/splash.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3a15b6cafd09de126655ccc1beec80eef444e9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxhdpi/splash.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxxhdpi/splash.png b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..d925cb04f75fec8de4075aa56b880bbabffe9a9a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable-xxxhdpi/splash.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable/maui_splash_image.xml b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable/maui_splash_image.xml new file mode 100644 index 0000000000000000000000000000000000000000..a61758449ab95116ce6dab388f18451ee96f0f13 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/drawable/maui_splash_image.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<!--This file was auto-generated by .NET MAUI.--> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <bitmap android:gravity="center" android:src="@drawable/splash" android:mipMap="true" /> + </item> +</layer-list> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/values/maui_colors.xml b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/values/maui_colors.xml new file mode 100644 index 0000000000000000000000000000000000000000..38fa187f3df297e412c93efa12a708541ff57b74 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-android/resizetizer/sp/values/maui_colors.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<!--This file was auto-generated by .NET MAUI.--> +<resources> + <color name="maui_splash_color">#ff512bd4</color> +</resources> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-android/stamp/_BuildLibraryImportsCache.stamp b/App/MauiApp1/obj/Debug/net8.0-android/stamp/_BuildLibraryImportsCache.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-android/stamp/_ResolveLibraryProjectImports.stamp b/App/MauiApp1/obj/Debug/net8.0-android/stamp/_ResolveLibraryProjectImports.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfo.cs b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..3b3f806e970f55917fc9465f176375bcc3a0685d --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+969d6a7f31d81055e4853d25850ad360ee1857d7")] +[assembly: System.Reflection.AssemblyProductAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("iOS18.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("iOS11.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfoInputs.cache b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..59ab1b2b13f6158550380e118f716299310fe36f --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +614905b53d1dac8acfa08db13b460b37f2f6590fe19ccac664fe55e37b31009d diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..6fa0c118681672b52462e1199da7b301b8818416 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,47 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net8.0-ios +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MauiApp1 +build_property.ProjectDir = D:\Github\robobin\App\MauiApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = + +[D:/Github/robobin/App/MauiApp1/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/Github/robobin/App/MauiApp1/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/Github/robobin/App/MauiApp1/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GlobalUsings.g.cs b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GlobalUsings.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..a599ed65279f356053591ddfa39b49b98e6cf05b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// <auto-generated/> +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.assets.cache b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..d7c9ad9339ca6f35adc87d5044cc41418d8284eb Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.assets.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.csproj.AssemblyReference.cache b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..030502a8805719eaa9b3be4b2a93468ae1aa3487 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.csproj.AssemblyReference.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.nfloat.g.cs b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.nfloat.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..7f49b05f729f3ce8fa980a5dcb3bc8380af17e60 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-ios/iossimulator-x64/MauiApp1.nfloat.g.cs @@ -0,0 +1,3 @@ +#pragma warning disable CS8981 +global using nfloat = global::System.Runtime.InteropServices.NFloat; +#pragma warning restore CS8981 diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfo.cs b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..0e7804ae045d0710581d17418ed431fb46fd03f7 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+969d6a7f31d81055e4853d25850ad360ee1857d7")] +[assembly: System.Reflection.AssemblyProductAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("MacCatalyst18.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("MacCatalyst13.1")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfoInputs.cache b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..8bdd18b76e94b4dbffc56cca2c32cae667d59350 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dec3189df43530cc1ac9ea97f2f4089a35760a55992e3c5492c570a888c98001 diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..f50e8de534c79b0341b399c54673263cc911bcf0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,47 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net8.0-maccatalyst +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MauiApp1 +build_property.ProjectDir = D:\Github\robobin\App\MauiApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = + +[D:/Github/robobin/App/MauiApp1/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/Github/robobin/App/MauiApp1/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/Github/robobin/App/MauiApp1/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GlobalUsings.g.cs b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GlobalUsings.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..a599ed65279f356053591ddfa39b49b98e6cf05b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// <auto-generated/> +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.assets.cache b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..11256f331b4e9eb2d7b7373bc26445189ebd9be8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.assets.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.csproj.AssemblyReference.cache b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..eb7de0b37e0f22a8b9311cef01cc141621e2cfaf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.csproj.AssemblyReference.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.nfloat.g.cs b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.nfloat.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..7f49b05f729f3ce8fa980a5dcb3bc8380af17e60 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-maccatalyst/maccatalyst-x64/MauiApp1.nfloat.g.cs @@ -0,0 +1,3 @@ +#pragma warning disable CS8981 +global using nfloat = global::System.Runtime.InteropServices.NFloat; +#pragma warning restore CS8981 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfo.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..89a63507987e3527c1a26da60c22ee7542427bd0 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfo.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyMetadataAttribute("Microsoft.Maui.ApplicationModel.AppInfo.PackageName", "com.companyname.mauiapp1")] +[assembly: System.Reflection.AssemblyMetadataAttribute("Microsoft.Maui.ApplicationModel.AppInfo.PublisherName", "User Name")] +[assembly: System.Reflection.AssemblyMetadataAttribute("Microsoft.Maui.ApplicationModel.AppInfo.Name", "MauiApp1")] +[assembly: System.Reflection.AssemblyMetadataAttribute("Microsoft.Maui.ApplicationModel.AppInfo.Version", "1.0.0.1")] +[assembly: System.Reflection.AssemblyCompanyAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+969d6a7f31d81055e4853d25850ad360ee1857d7")] +[assembly: System.Reflection.AssemblyProductAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("MauiApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfoInputs.cache b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..44bbe9e631be9de1637a824833e3aa0a6057b94e --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f41f90d0f054845ee16fed378c1df05b09ed5ce9488298666f5338f05ec90a03 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..b8c84661b2ad860f27ba80b4f40176cbb072c24b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,50 @@ +is_global = true +build_property.TargetFramework = net8.0-windows10.0.19041.0 +build_property.TargetPlatformMinVersion = 10.0.17763.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556 +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MauiApp1 +build_property.ProjectDir = D:\Github\robobin\App\MauiApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTAotOptimizerEnabled = true +build_property.CsWinRTAotExportsEnabled = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut = +build_property.CsWinRTCcwLookupTableGeneratorEnabled = true +build_property.CsWinRTMergeReferencedActivationFactories = +build_property.CsWinRTAotWarningLevel = + +[D:/Github/robobin/App/MauiApp1/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/Github/robobin/App/MauiApp1/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/Github/robobin/App/MauiApp1/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/Github/robobin/App/MauiApp1/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = MauiApp1.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GlobalUsings.g.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GlobalUsings.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..a599ed65279f356053591ddfa39b49b98e6cf05b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// <auto-generated/> +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.assets.cache b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..2c3cdc550380bd152d4fe56c48d9283a1d8327de Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.assets.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.csproj.AssemblyReference.cache b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..ab75334a7b08229e12dd4e103efb4313640182e3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/MauiApp1.csproj.AssemblyReference.cache differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.g.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.g.i.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.g.i.cs new file mode 100644 index 0000000000000000000000000000000000000000..a87c4be340da980e27dea49a023fdb4c6f9aae0b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.g.i.cs @@ -0,0 +1,81 @@ +#pragma checksum "D:\Github\robobin\App\MauiApp1\Platforms\Windows\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D35248EAECD85E25EEAE5F559D304E60E11CF7A79FDDFDBDFA3AEFD1E018D596" +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + + +namespace MauiApp1.WinUI +{ +#if !DISABLE_XAML_GENERATED_MAIN + /// <summary> + /// Program class + /// </summary> + public static class Program + { + [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")] + [global::System.Runtime.InteropServices.DefaultDllImportSearchPaths(global::System.Runtime.InteropServices.DllImportSearchPath.SafeDirectories)] + private static extern void XamlCheckProcessRequirements(); + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2406")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.STAThreadAttribute] + static void Main(string[] args) + { + XamlCheckProcessRequirements(); + + global::WinRT.ComWrappersSupport.InitializeComWrappers(); + global::Microsoft.UI.Xaml.Application.Start((p) => { + var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread()); + global::System.Threading.SynchronizationContext.SetSynchronizationContext(context); + new App(); + }); + } + } +#endif + + partial class App : global::Microsoft.Maui.MauiWinUIApplication + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2406")] + private bool _contentLoaded; + /// <summary> + /// InitializeComponent() + /// </summary> + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2406")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public void InitializeComponent() + { + if (_contentLoaded) + return; + + _contentLoaded = true; + + global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///Platforms/Windows/App.xaml"); + global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator); + +#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT + DebugSettings.BindingFailed += (sender, args) => + { + global::System.Diagnostics.Debug.WriteLine(args.Message); + }; +#endif +#if DEBUG && !DISABLE_XAML_GENERATED_RESOURCE_REFERENCE_DEBUG_OUTPUT + DebugSettings.XamlResourceReferenceFailed += (sender, args) => + { + global::System.Diagnostics.Debug.WriteLine(args.Message); + }; +#endif +#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION + UnhandledException += (sender, e) => + { + if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break(); + }; +#endif + } + } +} + diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml new file mode 100644 index 0000000000000000000000000000000000000000..e80c99bd7bfb33a0e9c59cf5f2481c122b0f9008 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="utf-8"?><XamlCompilerSaveState><XamlFeatureControlFlags>EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT</XamlFeatureControlFlags><ReferenceAssemblyList /><XamlSourceFileDataList><XamlSourceFileData XamlFileName="Platforms\Windows\App.xaml" ClassFullName="MauiApp1.WinUI.App" GeneratedCodePathPrefix="D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\Platforms\Windows\App" XamlFileTimeAtLastCompileInTicks="638640767070127476" HasBoundEventAssignments="False" /></XamlSourceFileDataList></XamlCompilerSaveState> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauifont.inputs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauifont.inputs new file mode 100644 index 0000000000000000000000000000000000000000..4a403a6939b86b6662c77e5df0a86c8f70b97f0b --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauifont.inputs @@ -0,0 +1,2 @@ +File=Resources\Fonts\OpenSans-Regular.ttf;Link=;Alias= +File=Resources\Fonts\OpenSans-Semibold.ttf;Link=;Alias= diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauifont.stamp b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauifont.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.inputs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.inputs new file mode 100644 index 0000000000000000000000000000000000000000..5bf2e8da9aaeeac8e3cebab0e08b97015c4f5b85 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.inputs @@ -0,0 +1,2 @@ +File=Resources\Images\dotnet_bot.png;Link=;BaseSize=300,185;Resize=True;TintColor=;Color=;IsAppIcon=;ForegroundScale=;ForegroundFile= +File=Resources\AppIcon\appicon.svg;Link=;BaseSize=;Resize=;TintColor=;Color=#512BD4;IsAppIcon=True;ForegroundScale=;ForegroundFile=Resources\AppIcon\appiconfg.svg diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.outputs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.outputs new file mode 100644 index 0000000000000000000000000000000000000000..ec7e977e1660623c30f1a240584d2eca28f55664 --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.outputs @@ -0,0 +1,51 @@ +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLargeTile.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLargeTile.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLargeTile.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLargeTile.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLargeTile.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconWideTile.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconWideTile.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconWideTile.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconWideTile.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconWideTile.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconMediumTile.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconMediumTile.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconMediumTile.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconMediumTile.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconMediumTile.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconSmallTile.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconSmallTile.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconSmallTile.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconSmallTile.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconSmallTile.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconStoreLogo.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconStoreLogo.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconStoreLogo.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconStoreLogo.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconStoreLogo.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-lightunplated_targetsize-256.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-lightunplated_targetsize-48.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-lightunplated_targetsize-32.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-lightunplated_targetsize-24.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-lightunplated_targetsize-16.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-unplated_targetsize-256.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-unplated_targetsize-48.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-unplated_targetsize-32.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-unplated_targetsize-24.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.altform-unplated_targetsize-16.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.targetsize-256.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.targetsize-48.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.targetsize-32.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.targetsize-24.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.targetsize-16.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appiconLogo.scale-100.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\appicon.ico +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\dotnet_bot.scale-400.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\dotnet_bot.scale-200.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\dotnet_bot.scale-150.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\dotnet_bot.scale-125.png +D:\Github\robobin\App\MauiApp1\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\resizetizer\r\dotnet_bot.scale-100.png diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.stamp b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauiimage.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauimanifest.stamp b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauimanifest.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauisplash.inputs b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauisplash.inputs new file mode 100644 index 0000000000000000000000000000000000000000..e17487c6dc1b744cb5a426370fb796ac319408bf --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauisplash.inputs @@ -0,0 +1 @@ +File=Resources\Splash\splash.svg;Link=;BaseSize=128,128;Resize=;TintColor=;Color=#512BD4;ForegroundScale=;FileHash=11E4E0C7FD765CACC93CF43F00575E7A2974E476691A5A1720B14CDB865AD71D diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauisplash.stamp b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/mauisplash.stamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Regular.ttf b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ba487fed57907cdfe053acc3ce6c087734c301cf Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Regular.ttf differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Semibold.ttf b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Semibold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..8fe2c596152b0b5fed469c3081e03245a2d588e4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/f/OpenSans-Semibold.ttf differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/m/Package.appxmanifest b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/m/Package.appxmanifest new file mode 100644 index 0000000000000000000000000000000000000000..e9313cefbd13b8ec1588904a79dffa895e5564db --- /dev/null +++ b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/m/Package.appxmanifest @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap"> + <Identity Name="com.companyname.mauiapp1" Publisher="CN=User Name" Version="1.0.0.1" /> + <mp:PhoneIdentity PhoneProductId="7A546F83-5F6A-4C27-8A30-C3E3AD3E4BC1" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> + <Properties> + <DisplayName>MauiApp1</DisplayName> + <PublisherDisplayName>User Name</PublisherDisplayName> + <Logo>appiconStoreLogo.png</Logo> + </Properties> + <Dependencies> + <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> + <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> + </Dependencies> + <Resources> + <Resource Language="x-generate" /> + </Resources> + <Applications> + <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$"> + <uap:VisualElements DisplayName="MauiApp1" Description="MauiApp1" Square150x150Logo="appiconMediumTile.png" Square44x44Logo="appiconLogo.png" BackgroundColor="transparent"> + <uap:DefaultTile Square71x71Logo="appiconSmallTile.png" Wide310x150Logo="appiconWideTile.png" Square310x310Logo="appiconLargeTile.png" ShortName="MauiApp1"> + <uap:ShowNameOnTiles> + <uap:ShowOn Tile="square150x150Logo" /> + <uap:ShowOn Tile="wide310x150Logo" /> + </uap:ShowNameOnTiles> + </uap:DefaultTile> + <uap:SplashScreen Image="splashSplashScreen.png" /> + </uap:VisualElements> + </Application> + </Applications> + <Capabilities> + <rescap:Capability Name="runFullTrust" /> + </Capabilities> +</Package> \ No newline at end of file diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appicon.ico b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..8153908fa48fc14ffbbd9cb92573ddd5bd30f9ab Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appicon.ico differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..eeb75dc317e0fc16fcc69927e93cb28631b55d43 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..04b2bd71e7be310724945237a775929505ac7e5b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..ca904995fc0c073354a3ada4e5e94b5f15825cf3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..4942f7ac7cf08323ad98388ba81c6baa9122730a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..1389691c97dcaab7fb49de32f955d8182d721c3b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLargeTile.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-16.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-16.png new file mode 100644 index 0000000000000000000000000000000000000000..4430a33f1b5dd2b1388be7ac46d5b0bf8c4ce394 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-16.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-24.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-24.png new file mode 100644 index 0000000000000000000000000000000000000000..5540af5d420018f166264bf84152cd00f04f407a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-24.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-256.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc2abe75ba9c91bbf697caf93b34e0f866fdb8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-256.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-32.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4e82ad4b591acebeee583d4a505234d144800c0c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-32.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-48.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-48.png new file mode 100644 index 0000000000000000000000000000000000000000..eb17ffc1e9a311953708c3f2746b6b7da5c4efc3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-lightunplated_targetsize-48.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-16.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-16.png new file mode 100644 index 0000000000000000000000000000000000000000..4430a33f1b5dd2b1388be7ac46d5b0bf8c4ce394 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-16.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-24.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-24.png new file mode 100644 index 0000000000000000000000000000000000000000..5540af5d420018f166264bf84152cd00f04f407a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-24.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-256.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc2abe75ba9c91bbf697caf93b34e0f866fdb8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-256.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-32.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4e82ad4b591acebeee583d4a505234d144800c0c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-32.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-48.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-48.png new file mode 100644 index 0000000000000000000000000000000000000000..eb17ffc1e9a311953708c3f2746b6b7da5c4efc3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.altform-unplated_targetsize-48.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..80173a0280afc08722b535f9870d10ddef91faa6 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..e7d8cc48197fd1da61a7ae4c1065b69511c3b35b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..e6dbb07b694f5bdde07f213b5e28f7ca3a0374fb Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..51c758634cb0b11f34aa73742e47c2818ac6d89a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..c5f3bf6b18f52586bb7e0f8f27df2e8da844108a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-16.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-16.png new file mode 100644 index 0000000000000000000000000000000000000000..4430a33f1b5dd2b1388be7ac46d5b0bf8c4ce394 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-16.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-24.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-24.png new file mode 100644 index 0000000000000000000000000000000000000000..5540af5d420018f166264bf84152cd00f04f407a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-24.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-256.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc2abe75ba9c91bbf697caf93b34e0f866fdb8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-256.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-32.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4e82ad4b591acebeee583d4a505234d144800c0c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-32.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-48.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-48.png new file mode 100644 index 0000000000000000000000000000000000000000..eb17ffc1e9a311953708c3f2746b6b7da5c4efc3 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconLogo.targetsize-48.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..eb95e5f90faaea6fdad0c3cbdcbc8bf0ee1a7b7a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..cf353a1633ea91ac9173c1fb3a709056ff712baa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..33361ad844ecffe86192bf77b9d2a9a359eaa882 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..31e3e49c82ffdcaf38757a8e631907652ecd0e09 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..e4fbe643d08febcb069d94260bde2963eb9d5904 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconMediumTile.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..4313dac524590c4bda549fd15673370f5cfe1cba Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..0135bb1ce958f7f687651b26fa57d56572f1daed Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..5701243d9390117890d7b1c7cd5e56d277e0a11f Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..493e0cbdf8eec5b007d45c50b08f5067aea1e018 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..2f06b6fa063e35a037c2898814ffffb36759513b Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconSmallTile.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..c193f48796ab9f3d2010497d93ba87b8251136f1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..47e03e7f28e8cd84713aa057bf073240c7457071 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4e440b5d8bbafaf06f7a7c17842270def2745c Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..7bb3db5583c79cfac430213ee325ab3c4f76e390 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..e6288676f12f22ac9e44f26da27e060d6a488b23 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconStoreLogo.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..0ebef7ff59ea2040019e822de44952cd9d5fe01a Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..4f2e4d98a5ba77c35e14e1060359b65848e4f4c9 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..2704b5a52bad0d37cfbcf708b52ce0cdcb1a8c91 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..8a9d11614594f5041efd52eed3e4ae5392b2ac94 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..627a464766c26156979ccf3d0654b665fbb9a70d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/appiconWideTile.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfb9aa6b8ab8c87c045228adcb3bc07d9e0eed8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..4f400190db663b324073c417eb0bb8e976510166 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..38551c41fb047987c2e7867c2fe577878d931355 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..4286e4caa94cab28496009db3c0a420163ea3db4 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..80276060a5d2898f24ae832e61af102ca7a09dd8 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/r/dotnet_bot.scale-400.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-100.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-100.png new file mode 100644 index 0000000000000000000000000000000000000000..8a9d11614594f5041efd52eed3e4ae5392b2ac94 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-100.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-125.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-125.png new file mode 100644 index 0000000000000000000000000000000000000000..ddc4de2ee6544e63c24717bec489a1ac07509ea1 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-125.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-150.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-150.png new file mode 100644 index 0000000000000000000000000000000000000000..5aa6ac8803f5266b6b1c9f4a90ae9235aefd89fa Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-150.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-200.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..627a464766c26156979ccf3d0654b665fbb9a70d Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-200.png differ diff --git a/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-400.png b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b90879d2667310b536a7ded169b809fa127870 Binary files /dev/null and b/App/MauiApp1/obj/Debug/net8.0-windows10.0.19041.0/win10-x64/resizetizer/sp/splashSplashScreen.scale-400.png differ diff --git a/App/MauiApp1/obj/MauiApp1.csproj.nuget.dgspec.json b/App/MauiApp1/obj/MauiApp1.csproj.nuget.dgspec.json new file mode 100644 index 0000000000000000000000000000000000000000..e03b6383fa0e90210481fe82501121785d05d947 --- /dev/null +++ b/App/MauiApp1/obj/MauiApp1.csproj.nuget.dgspec.json @@ -0,0 +1,265 @@ +{ + "format": 1, + "restore": { + "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj": {} + }, + "projects": { + "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj", + "projectName": "MauiApp1", + "projectPath": "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj", + "packagesPath": "C:\\Users\\paulw\\.nuget\\packages\\", + "outputPath": "D:\\Github\\robobin\\App\\MauiApp1\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\paulw\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-android", + "net8.0-ios", + "net8.0-maccatalyst", + "net8.0-windows10.0.19041.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-android34.0": { + "targetAlias": "net8.0-android", + "projectReferences": {} + }, + "net8.0-ios18.0": { + "targetAlias": "net8.0-ios", + "projectReferences": {} + }, + "net8.0-maccatalyst18.0": { + "targetAlias": "net8.0-maccatalyst", + "projectReferences": {} + }, + "net8.0-windows10.0.19041": { + "targetAlias": "net8.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-android34.0": { + "targetAlias": "net8.0-android", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.Android": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-ios18.0": { + "targetAlias": "net8.0-ios", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.iOS": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-maccatalyst18.0": { + "targetAlias": "net8.0-maccatalyst", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "xamarinios10", + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.MacCatalyst": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-windows10.0.19041": { + "targetAlias": "net8.0-windows10.0.19041.0", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.44, 10.0.19041.44]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "android-arm": { + "#import": [] + }, + "android-arm64": { + "#import": [] + }, + "android-x64": { + "#import": [] + }, + "android-x86": { + "#import": [] + }, + "iossimulator-x64": { + "#import": [] + }, + "maccatalyst-x64": { + "#import": [] + }, + "win10-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.props b/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.props new file mode 100644 index 0000000000000000000000000000000000000000..17c6b652b1e23ddd98ba309e05e24612fc623da5 --- /dev/null +++ b/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.props @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\paulw\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="C:\Users\paulw\.nuget\packages\" /> + <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> + </ItemGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-android' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\netstandard2.0\Microsoft.Maui.Controls.Build.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\netstandard2.0\Microsoft.Maui.Controls.Build.Tasks.props')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-ios' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-ios10.0\Microsoft.Maui.Controls.Build.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-ios10.0\Microsoft.Maui.Controls.Build.Tasks.props')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-maccatalyst' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-maccatalyst13.1\Microsoft.Maui.Controls.Build.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-maccatalyst13.1\Microsoft.Maui.Controls.Build.Tasks.props')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-windows10.0.19041.0' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.windows.sdk.buildtools\10.0.22621.756\buildTransitive\Microsoft.Windows.SDK.BuildTools.props" Condition="Exists('$(NuGetPackageRoot)microsoft.windows.sdk.buildtools\10.0.22621.756\buildTransitive\Microsoft.Windows.SDK.BuildTools.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.windowsappsdk\1.5.240627000\buildTransitive\Microsoft.WindowsAppSDK.props" Condition="Exists('$(NuGetPackageRoot)microsoft.windowsappsdk\1.5.240627000\buildTransitive\Microsoft.WindowsAppSDK.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Core.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Core.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Controls.Build.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Controls.Build.Tasks.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-android' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\paulw\.nuget\packages\microsoft.net.illink.tasks\8.0.10</PkgMicrosoft_NET_ILLink_Tasks> + </PropertyGroup> + <PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-ios' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\paulw\.nuget\packages\microsoft.net.illink.tasks\8.0.10</PkgMicrosoft_NET_ILLink_Tasks> + </PropertyGroup> + <PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-maccatalyst' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\paulw\.nuget\packages\microsoft.net.illink.tasks\8.0.10</PkgMicrosoft_NET_ILLink_Tasks> + </PropertyGroup> + <PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-windows10.0.19041.0' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgMicrosoft_WindowsAppSDK Condition=" '$(PkgMicrosoft_WindowsAppSDK)' == '' ">C:\Users\paulw\.nuget\packages\microsoft.windowsappsdk\1.5.240627000</PkgMicrosoft_WindowsAppSDK> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.targets b/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.targets new file mode 100644 index 0000000000000000000000000000000000000000..7982ff2dcca44cb83fda1225bbaa4b60b95e6141 --- /dev/null +++ b/App/MauiApp1/obj/MauiApp1.csproj.nuget.g.targets @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-android' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)xamarin.kotlin.stdlib.common\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Common.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlin.stdlib.common\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Common.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.jetbrains.annotations\24.0.1.3\buildTransitive\net6.0-android31.0\Xamarin.Jetbrains.Annotations.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.jetbrains.annotations\24.0.1.3\buildTransitive\net6.0-android31.0\Xamarin.Jetbrains.Annotations.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.kotlin.stdlib\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlin.stdlib\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.kotlin.stdlib.jdk7\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Jdk7.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlin.stdlib.jdk7\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Jdk7.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.kotlin.stdlib.jdk8\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Jdk8.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlin.stdlib.jdk8\1.9.0.1\buildTransitive\net6.0-android31.0\Xamarin.Kotlin.StdLib.Jdk8.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.kotlinx.coroutines.core.jvm\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.KotlinX.Coroutines.Core.Jvm.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlinx.coroutines.core.jvm\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.KotlinX.Coroutines.Core.Jvm.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.kotlinx.coroutines.android\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.KotlinX.Coroutines.Android.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.kotlinx.coroutines.android\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.KotlinX.Coroutines.Android.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.google.guava.listenablefuture\1.0.0.14\buildTransitive\net6.0-android31.0\Xamarin.Google.Guava.ListenableFuture.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.google.guava.listenablefuture\1.0.0.14\buildTransitive\net6.0-android31.0\Xamarin.Google.Guava.ListenableFuture.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.annotation.jvm\1.6.0.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.Jvm.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.annotation.jvm\1.6.0.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.Jvm.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.annotation\1.6.0.4\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.annotation\1.6.0.4\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.collection\1.2.0.9\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Collection.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.collection\1.2.0.9\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Collection.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.versionedparcelable\1.1.1.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VersionedParcelable.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.versionedparcelable\1.1.1.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VersionedParcelable.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.tracing.tracing\1.1.0.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Tracing.Tracing.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.tracing.tracing\1.1.0.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Tracing.Tracing.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.startup.startupruntime\1.1.1.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Startup.StartupRuntime.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.startup.startupruntime\1.1.1.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Startup.StartupRuntime.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.concurrent.futures\1.1.0.14\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Concurrent.Futures.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.concurrent.futures\1.1.0.14\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Concurrent.Futures.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.profileinstaller.profileinstaller\1.3.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.profileinstaller.profileinstaller\1.3.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.common\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Common.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.common\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Common.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.arch.core.common\2.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Arch.Core.Common.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.arch.core.common\2.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Arch.Core.Common.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.arch.core.runtime\2.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Arch.Core.Runtime.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.arch.core.runtime\2.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Arch.Core.Runtime.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.runtime\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Runtime.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.runtime\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Runtime.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.interpolator\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Interpolator.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.interpolator\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Interpolator.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.annotation.experimental\1.3.1.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.Experimental.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.annotation.experimental\1.3.1.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Annotation.Experimental.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.core\1.10.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Core.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.core\1.10.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.customview\1.1.0.18\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CustomView.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.customview\1.1.0.18\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CustomView.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.viewpager\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ViewPager.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.viewpager\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ViewPager.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.savedstate\1.2.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SavedState.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.savedstate\1.2.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SavedState.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.core.core.ktx\1.10.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Core.Core.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.core.core.ktx\1.10.1.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Core.Core.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.customview.poolingcontainer\1.0.0.5\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CustomView.PoolingContainer.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.customview.poolingcontainer\1.0.0.5\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CustomView.PoolingContainer.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.recyclerview\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.RecyclerView.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.recyclerview\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.RecyclerView.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodel\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModel.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodel\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModel.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata.core\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.Core.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata.core\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.loader\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Loader.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.loader\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Loader.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodelsavedstate\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodelsavedstate\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.activity\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Activity.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.activity\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Activity.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.fragment\1.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Fragment.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.fragment\1.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Fragment.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.viewpager2\1.0.0.21\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ViewPager2.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.viewpager2\1.0.0.21\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ViewPager2.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.vectordrawable\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VectorDrawable.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.vectordrawable\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VectorDrawable.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.vectordrawable.animated\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VectorDrawable.Animated.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.vectordrawable.animated\1.1.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.VectorDrawable.Animated.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.transition\1.4.1.12\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Transition.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.transition\1.4.1.12\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Transition.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.resourceinspection.annotation\1.0.1.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ResourceInspection.Annotation.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.resourceinspection.annotation\1.0.1.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ResourceInspection.Annotation.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.print\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Print.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.print\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Print.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.localbroadcastmanager\1.1.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.LocalBroadcastManager.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.localbroadcastmanager\1.1.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.LocalBroadcastManager.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.process\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Process.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.process\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Process.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.documentfile\1.0.1.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DocumentFile.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.documentfile\1.0.1.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DocumentFile.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.legacy.support.core.utils\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Legacy.Support.Core.Utils.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.legacy.support.core.utils\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Legacy.Support.Core.Utils.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.emoji2\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Emoji2.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.emoji2\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Emoji2.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.emoji2.viewshelper\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Emoji2.ViewsHelper.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.emoji2.viewshelper\1.3.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Emoji2.ViewsHelper.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.dynamicanimation\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DynamicAnimation.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.dynamicanimation\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DynamicAnimation.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.drawerlayout\1.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DrawerLayout.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.drawerlayout\1.2.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.DrawerLayout.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.cursoradapter\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CursorAdapter.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.cursoradapter\1.0.0.19\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CursorAdapter.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.coordinatorlayout\1.2.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CoordinatorLayout.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.coordinatorlayout\1.2.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CoordinatorLayout.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.constraintlayout.core\1.0.4.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ConstraintLayout.Core.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.constraintlayout.core\1.0.4.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ConstraintLayout.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.appcompat.appcompatresources\1.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.AppCompat.AppCompatResources.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.appcompat.appcompatresources\1.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.AppCompat.AppCompatResources.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.appcompat\1.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.AppCompat.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.appcompat\1.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.AppCompat.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.constraintlayout\2.1.4.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ConstraintLayout.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.constraintlayout\2.1.4.6\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ConstraintLayout.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.cardview\1.0.0.21\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CardView.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.cardview\1.0.0.21\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.CardView.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.google.android.material\1.9.0.2\buildTransitive\net6.0-android31.0\Xamarin.Google.Android.Material.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.google.android.material\1.9.0.2\buildTransitive\net6.0-android31.0\Xamarin.Google.Android.Material.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.window.extensions.core.core\1.0.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Window.Extensions.Core.Core.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.window.extensions.core.core\1.0.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Window.Extensions.Core.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.window\1.1.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Window.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.window\1.1.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Window.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.swiperefreshlayout\1.1.0.14\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SwipeRefreshLayout.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.swiperefreshlayout\1.1.0.14\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SwipeRefreshLayout.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.slidingpanelayout\1.2.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SlidingPaneLayout.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.slidingpanelayout\1.2.0.7\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SlidingPaneLayout.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.security.securitycrypto\1.1.0.1-alpha06\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Security.SecurityCrypto.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.security.securitycrypto\1.1.0.1-alpha06\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Security.SecurityCrypto.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.savedstate.savedstate.ktx\1.2.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SavedState.SavedState.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.savedstate.savedstate.ktx\1.2.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.SavedState.SavedState.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodel.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.viewmodel.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.runtime.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.runtime.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.collection.ktx\1.2.0.9\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Collection.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.collection.ktx\1.2.0.9\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Collection.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.navigation.common\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Common.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.navigation.common\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Common.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.activity.ktx\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Activity.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.activity.ktx\1.7.2.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Activity.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.navigation.runtime\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Runtime.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.navigation.runtime\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Runtime.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.navigation.ui\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.UI.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.navigation.ui\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.UI.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata.core.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata.core.ktx\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.fragment.ktx\1.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Fragment.Ktx.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.fragment.ktx\1.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Fragment.Ktx.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.navigation.fragment\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Fragment.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.navigation.fragment\2.6.0.1\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Navigation.Fragment.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.lifecycle.livedata\2.6.1.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Lifecycle.LiveData.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.exifinterface\1.3.6.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ExifInterface.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.exifinterface\1.3.6.2\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.ExifInterface.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.androidx.browser\1.5.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Browser.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.androidx.browser\1.5.0.3\buildTransitive\net6.0-android31.0\Xamarin.AndroidX.Browser.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.android.glide.gifdecoder\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.GifDecoder.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.android.glide.gifdecoder\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.GifDecoder.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.android.glide.disklrucache\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.DiskLruCache.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.android.glide.disklrucache\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.DiskLruCache.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.android.glide.annotations\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.Annotations.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.android.glide.annotations\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.Annotations.targets')" /> + <Import Project="$(NuGetPackageRoot)xamarin.android.glide\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.android.glide\4.15.1.2\buildTransitive\net6.0-android31.0\Xamarin.Android.Glide.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\netstandard2.0\Microsoft.Maui.Controls.Build.Tasks.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\netstandard2.0\Microsoft.Maui.Controls.Build.Tasks.targets')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-ios' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-ios10.0\Microsoft.Maui.Controls.Build.Tasks.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-ios10.0\Microsoft.Maui.Controls.Build.Tasks.targets')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-maccatalyst' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\Microsoft.Maui.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-maccatalyst13.1\Microsoft.Maui.Controls.Build.Tasks.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-maccatalyst13.1\Microsoft.Maui.Controls.Build.Tasks.targets')" /> + </ImportGroup> + <ImportGroup Condition=" '$(TargetFramework)' == 'net8.0-windows10.0.19041.0' AND '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.windows.sdk.buildtools\10.0.22621.756\buildTransitive\Microsoft.Windows.SDK.BuildTools.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.windows.sdk.buildtools\10.0.22621.756\buildTransitive\Microsoft.Windows.SDK.BuildTools.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.windowsappsdk\1.5.240627000\buildTransitive\Microsoft.WindowsAppSDK.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.windowsappsdk\1.5.240627000\buildTransitive\Microsoft.WindowsAppSDK.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.resizetizer\8.0.82\buildTransitive\Microsoft.Maui.Resizetizer.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Core.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.core\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Core.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Controls.Build.Tasks.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.maui.controls.build.tasks\8.0.82\buildTransitive\net6.0-windows10.0.17763.0\Microsoft.Maui.Controls.Build.Tasks.targets')" /> + </ImportGroup> +</Project> \ No newline at end of file diff --git a/App/MauiApp1/obj/project.assets.json b/App/MauiApp1/obj/project.assets.json new file mode 100644 index 0000000000000000000000000000000000000000..1738987f565ca14184ad5b3649da3b5a7022d663 --- /dev/null +++ b/App/MauiApp1/obj/project.assets.json @@ -0,0 +1,33312 @@ +{ + "version": 3, + "targets": { + "net8.0-android34.0": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/android-arm": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/android-arm64": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/android-x64": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/android-x86": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/iossimulator-x64": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/maccatalyst-x64": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-android34.0/win10-x64": { + "GoogleGson/2.10.1.4": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/GoogleGson.dll": { + "related": ".aar;.xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "resource": { + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.Android.Glide": "4.15.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Fragment": "2.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Navigation.UI": "2.6.0.1", + "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.14", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Xamarin.AndroidX.Browser": "1.5.0.3", + "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.1-alpha06", + "Xamarin.Google.Crypto.Tink.Android": "1.10.0" + }, + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll": { + "related": ".aar;.pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Xamarin.Android.Glide/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.Android.Glide.Annotations": "4.15.1.2", + "Xamarin.Android.Glide.DiskLruCache": "4.15.1.2", + "Xamarin.Android.Glide.GifDecoder": "4.15.1.2", + "Xamarin.AndroidX.ExifInterface": "1.3.6.2", + "Xamarin.AndroidX.Fragment": "1.6.0", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.5", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets": {} + } + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets": {} + } + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets": {} + } + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets": {} + } + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets": {} + } + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Jvm": "1.6.0.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets": {} + } + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.AppCompat.AppCompatResources": "1.6.1.3", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.CursorAdapter": "1.0.0.19", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Emoji2": "1.3.0.3", + "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.3.0.3", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.7", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets": {} + } + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.VectorDrawable.Animated": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets": {} + } + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets": {} + } + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets": {} + } + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets": {} + } + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.ConstraintLayout.Core": "1.0.4.6", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets": {} + } + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {} + } + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets": {} + } + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.VersionedParcelable": "1.1.1.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets": {} + } + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets": {} + } + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets": {} + } + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {} + } + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets": {} + } + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets": {} + } + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Process": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets": {} + } + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Emoji2": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {} + } + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets": {} + } + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity": "1.7.2.1", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.AndroidX.ViewPager": "1.0.0.19", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets": {} + } + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DocumentFile": "1.0.1.19", + "Xamarin.AndroidX.Loader": "1.1.0.19", + "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.7", + "Xamarin.AndroidX.Print": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3", + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {} + } + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel": "2.6.1.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets": {} + } + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection.Ktx": "1.2.0.9", + "Xamarin.AndroidX.Core.Core.Ktx": "1.10.1.2", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.6.1.3", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.3.1.2", + "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Fragment.Ktx": "1.6.0.1", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.7", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Activity.Ktx": "1.7.2.1", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.6.1.3", + "Xamarin.AndroidX.Navigation.Common": "2.6.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets": {} + } + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.Navigation.Runtime": "2.6.0.1", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.Google.Android.Material": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets": {} + } + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets": {} + } + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Concurrent.Futures": "1.1.0.14", + "Xamarin.AndroidX.Startup.StartupRuntime": "1.1.1.7", + "Xamarin.Google.Guava.ListenableFuture": "1.0.0.14" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {} + } + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.5" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets": {} + } + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {} + } + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.3", + "Xamarin.AndroidX.Lifecycle.Common": "2.6.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets": {} + } + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.SavedState": "1.2.1.3", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {} + } + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.Google.Crypto.Tink.Android": "1.9.0.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {} + } + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.Window": "1.1.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {} + } + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Tracing.Tracing": "1.1.0.6" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {} + } + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Interpolator": "1.0.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {} + } + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets": {} + } + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets": {} + } + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Interpolator": "1.0.0.19", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {} + } + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.CustomView": "1.1.0.18" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets": {} + } + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets": {} + } + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Collection": "1.2.0.9", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.1", + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Android": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets": {} + } + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {} + } + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "type": "package", + "dependencies": { + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.AndroidX.Annotation.Experimental": "1.3.1.1", + "Xamarin.AndroidX.AppCompat": "1.6.1.3", + "Xamarin.AndroidX.CardView": "1.0.0.21", + "Xamarin.AndroidX.ConstraintLayout": "2.1.4.6", + "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.7", + "Xamarin.AndroidX.Core": "1.10.1.2", + "Xamarin.AndroidX.DrawerLayout": "1.2.0.3", + "Xamarin.AndroidX.DynamicAnimation": "1.0.0.19", + "Xamarin.AndroidX.Fragment": "1.6.0.1", + "Xamarin.AndroidX.Lifecycle.Runtime": "2.6.1.3", + "Xamarin.AndroidX.RecyclerView": "1.3.0.3", + "Xamarin.AndroidX.Transition": "1.4.1.12", + "Xamarin.AndroidX.VectorDrawable": "1.1.0.19", + "Xamarin.AndroidX.ViewPager2": "1.0.0.21", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets": {} + } + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Jsr305Binding.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "type": "package", + "dependencies": { + "GoogleGson": "2.10.1.4", + "Xamarin.AndroidX.Annotation": "1.6.0.4", + "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.9", + "Xamarin.Google.ErrorProne.Annotations": "2.20.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll": { + "related": ".aar;.xml" + } + } + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets": {} + } + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets": {} + } + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "type": "package", + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets": {} + } + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk7": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1", + "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.7.2.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets": {} + } + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "type": "package", + "dependencies": { + "Xamarin.Jetbrains.Annotations": "24.0.1.3", + "Xamarin.Kotlin.StdLib.Common": "1.9.0.1", + "Xamarin.Kotlin.StdLib.Jdk8": "1.9.0.1" + }, + "compile": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets": {} + } + } + }, + "net8.0-ios18.0": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/android-arm": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/android-arm64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/android-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/android-x86": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/iossimulator-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/maccatalyst-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-ios18.0/win10-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/android-arm": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/android-arm64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/android-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/android-x86": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/iossimulator-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/maccatalyst-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-maccatalyst18.0/win10-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "buildTransitive/Microsoft.Maui.Core.props": {}, + "buildTransitive/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82" + }, + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "compile": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net8.0-windows10.0.19041": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/Microsoft.Graphics.Canvas.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Graphics.Canvas.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win10-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win10-arm64" + }, + "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": { + "assetType": "native", + "rid": "win10-x86" + } + } + } + }, + "net8.0-windows10.0.19041/android-arm": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/android-arm64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/android-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/android-x86": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/iossimulator-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/maccatalyst-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + }, + "net8.0-windows10.0.19041/win10-x64": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "type": "package", + "dependencies": { + "Microsoft.WindowsAppSDK": "1.5.240227000" + }, + "compile": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {} + }, + "native": { + "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll": {} + }, + "build": { + "build/net6.0-windows10.0.19041.0/_._": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Maui.Controls/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Build.Tasks": "8.0.82", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82", + "Microsoft.Maui.Resizetizer": "8.0.82" + } + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {} + } + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Controls.Xaml": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": { + "related": ".pdb;.pri;.xml" + } + } + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "resource": { + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": { + "locale": "ar" + }, + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": { + "locale": "ca" + }, + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": { + "locale": "cs" + }, + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": { + "locale": "da" + }, + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": { + "locale": "de" + }, + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": { + "locale": "el" + }, + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": { + "locale": "es" + }, + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": { + "locale": "fi" + }, + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": { + "locale": "fr" + }, + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": { + "locale": "he" + }, + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": { + "locale": "hi" + }, + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": { + "locale": "hr" + }, + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": { + "locale": "hu" + }, + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": { + "locale": "id" + }, + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": { + "locale": "it" + }, + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": { + "locale": "ja" + }, + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": { + "locale": "ko" + }, + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": { + "locale": "ms" + }, + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": { + "locale": "nb" + }, + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": { + "locale": "nl" + }, + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": { + "locale": "pl" + }, + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": { + "locale": "pt" + }, + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": { + "locale": "ro" + }, + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": { + "locale": "ru" + }, + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": { + "locale": "sk" + }, + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": { + "locale": "sv" + }, + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": { + "locale": "th" + }, + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": { + "locale": "tr" + }, + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": { + "locale": "uk" + }, + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": { + "locale": "vi" + }, + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-HK" + }, + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Maui.Controls.Core": "8.0.82", + "Microsoft.Maui.Core": "8.0.82" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Core/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Essentials": "8.0.82", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.82", + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": { + "related": ".pdb;.pri;.xml" + } + }, + "build": { + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {}, + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {} + } + }, + "Microsoft.Maui.Essentials/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "type": "package", + "dependencies": { + "Microsoft.Graphics.Win2D": "1.2.0", + "Microsoft.Maui.Graphics": "8.0.82", + "Microsoft.WindowsAppSDK": "1.5.240627000" + }, + "compile": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Maui.Resizetizer.props": {}, + "buildTransitive/Microsoft.Maui.Resizetizer.targets": {} + } + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {}, + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {} + } + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "type": "package", + "dependencies": { + "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756" + }, + "compile": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": { + "related": ".xml" + }, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {}, + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {} + }, + "native": { + "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {} + }, + "build": { + "buildTransitive/Microsoft.WindowsAppSDK.props": {}, + "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + } + } + } + }, + "libraries": { + "GoogleGson/2.10.1.4": { + "sha512": "L1vdbwbQzvKUoUGiMpMoJG5fqfLXaP6zMy1a26AYJQJSQKUO7Ojr2U5BAmgQoRxQ8J2GDjBfnfgnrsnorb4y5Q==", + "type": "package", + "path": "googlegson/2.10.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.md", + "THIRD-PARTY-NOTICES.txt", + "googlegson.2.10.1.4.nupkg.sha512", + "googlegson.nuspec", + "lib/monoandroid12.0/GoogleGson.dll", + "lib/monoandroid12.0/GoogleGson.xml", + "lib/net6.0-android31.0/GoogleGson.aar", + "lib/net6.0-android31.0/GoogleGson.dll", + "lib/net6.0-android31.0/GoogleGson.xml" + ] + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", + "type": "package", + "path": "microsoft.extensions.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==", + "type": "package", + "path": "microsoft.extensions.logging.debug/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Graphics.Win2D/1.2.0": { + "sha512": "7bAo8ObjCy/br0eW0nONRfVKehJu5aDe/KQekWeNXslwTOO2rhrIfWaVGepsXyVqmqwHoLJ31g1HsT7FLdBCoQ==", + "type": "package", + "path": "microsoft.graphics.win2d/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Win2d.githash.txt", + "build/Win2D.common.targets", + "build/native/Microsoft.Graphics.Win2D.targets", + "build/net45/Microsoft.Graphics.Win2D.targets", + "build/net6.0-windows10.0.19041.0/Microsoft.Graphics.Win2D.targets", + "build/win10/Microsoft.Graphics.Win2D.targets", + "icon.png", + "include/Microsoft.Graphics.Canvas.native.h", + "include/arm64/Microsoft.Graphics.Canvas.h", + "include/x64/Microsoft.Graphics.Canvas.h", + "include/x86/Microsoft.Graphics.Canvas.h", + "lib/net45/Microsoft.Graphics.Canvas.winmd", + "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll", + "lib/uap10.0/Microsoft.Graphics.Canvas.winmd", + "microsoft.graphics.win2d.1.2.0.nupkg.sha512", + "microsoft.graphics.win2d.nuspec", + "runtimes/win-arm64/native/Microsoft.Graphics.Canvas.dll", + "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll", + "runtimes/win-x86/native/Microsoft.Graphics.Canvas.dll" + ] + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "sha512": "s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==", + "type": "package", + "path": "microsoft.io.recyclablememorystream/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml", + "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512", + "microsoft.io.recyclablememorystream.nuspec" + ] + }, + "Microsoft.Maui.Controls/8.0.82": { + "sha512": "wUNQRAvzyhZjD5XLowTcU4OFQ6Tz2bdHz7ZRenKdChqtrxfSltiA84F/aN+M2BwmfVxuEp3zD2Y31paYFK8n1Q==", + "type": "package", + "path": "microsoft.maui.controls/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.maui.controls.8.0.82.nupkg.sha512", + "microsoft.maui.controls.nuspec" + ] + }, + "Microsoft.Maui.Controls.Build.Tasks/8.0.82": { + "sha512": "FLtYThqc5tQ7TnNuInJzNsK+jtg2ecjqoOWFYCCWASz4WJn8tN60nyP0drS6wTBj8CJLdrDzr3gxkfJpSh4cng==", + "type": "package", + "path": "microsoft.maui.controls.build.tasks/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/Microsoft.Maui.Controls.Build.Tasks.props", + "buildTransitive/Microsoft.Maui.Controls.Build.Tasks.targets", + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props", + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets", + "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.iOS.targets", + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props", + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets", + "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.MacCatalyst.targets", + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props", + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets", + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Sdk.Windows.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.After.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.Before.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.dll", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.pdb", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Common.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.DefaultItems.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Globs.props", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.Before.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.targets", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SourceGen.dll", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SourceGen.pdb", + "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.targets", + "buildTransitive/netstandard2.0/Mono.Cecil.Mdb.dll", + "buildTransitive/netstandard2.0/Mono.Cecil.Mdb.pdb", + "buildTransitive/netstandard2.0/Mono.Cecil.Pdb.dll", + "buildTransitive/netstandard2.0/Mono.Cecil.Pdb.pdb", + "buildTransitive/netstandard2.0/Mono.Cecil.Rocks.dll", + "buildTransitive/netstandard2.0/Mono.Cecil.Rocks.pdb", + "buildTransitive/netstandard2.0/Mono.Cecil.dll", + "buildTransitive/netstandard2.0/Mono.Cecil.pdb", + "buildTransitive/netstandard2.0/System.CodeDom.dll", + "buildTransitive/netstandard2.0/ar/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/ca/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/cs/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/da/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/de/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/el/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/es/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/fi/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/fr/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/he/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/hi/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/hr/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/hu/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/id/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/it/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/ja/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/ko/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/maui-blazor.aotprofile", + "buildTransitive/netstandard2.0/maui.aotprofile", + "buildTransitive/netstandard2.0/ms/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/nb/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/nl/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/pl/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/proguard.cfg", + "buildTransitive/netstandard2.0/pt-BR/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/pt/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/ro/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/ru/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/sk/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/sv/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/th/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/tr/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/uk/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/vi/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/zh-HK/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/zh-Hans/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "buildTransitive/netstandard2.0/zh-Hant/Microsoft.Maui.Controls.Build.Tasks.resources.dll", + "microsoft.maui.controls.build.tasks.8.0.82.nupkg.sha512", + "microsoft.maui.controls.build.tasks.nuspec" + ] + }, + "Microsoft.Maui.Controls.Compatibility/8.0.82": { + "sha512": "PwsRrH9PuL3UAITU7l6cgKIqzPekios1XlnBLJW8ZemHUnFnZDU4eNpNf9OBmTiZm2pKVT8Ls3YZQ1gZKt9sKA==", + "type": "package", + "path": "microsoft.maui.controls.compatibility/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.aar", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.pri", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Compatibility.pri", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Compatibility.xml", + "lib/net8.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/net8.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/net8.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/netstandard2.0/Microsoft.Maui.Controls.Compatibility.dll", + "lib/netstandard2.0/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/netstandard2.0/Microsoft.Maui.Controls.Compatibility.xml", + "lib/netstandard2.1/Microsoft.Maui.Controls.Compatibility.dll", + "lib/netstandard2.1/Microsoft.Maui.Controls.Compatibility.pdb", + "lib/netstandard2.1/Microsoft.Maui.Controls.Compatibility.xml", + "microsoft.maui.controls.compatibility.8.0.82.nupkg.sha512", + "microsoft.maui.controls.compatibility.nuspec" + ] + }, + "Microsoft.Maui.Controls.Core/8.0.82": { + "sha512": "OA6LfWt6IIQFBXOJIIzef4FeH9kEd1GrN7OjalLqLlxmTrVUoVldAc9fp5e3NTzrLKr6DrvYdhOd+vazx9KvTw==", + "type": "package", + "path": "microsoft.maui.controls.core/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0-android34.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-android34.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.aar", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.dll", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.xml", + "lib/net8.0-android34.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-android34.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-ios17.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.xml", + "lib/net8.0-ios17.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-ios17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-maccatalyst17.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.xml", + "lib/net8.0-maccatalyst17.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-maccatalyst17.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-tizen7.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.xml", + "lib/net8.0-tizen7.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-tizen7.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-windows10.0.19041/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.pri", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.xml", + "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0-windows10.0.20348/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.pri", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.xml", + "lib/net8.0-windows10.0.20348/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0-windows10.0.20348/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/net8.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/net8.0/Microsoft.Maui.Controls.dll", + "lib/net8.0/Microsoft.Maui.Controls.pdb", + "lib/net8.0/Microsoft.Maui.Controls.xml", + "lib/net8.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/netstandard2.0/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/netstandard2.0/Microsoft.Maui.Controls.dll", + "lib/netstandard2.0/Microsoft.Maui.Controls.pdb", + "lib/netstandard2.0/Microsoft.Maui.Controls.xml", + "lib/netstandard2.0/ar/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ca/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/cs/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/da/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/de/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/el/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/es/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/fi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/he/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/hi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/hr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/hu/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/id/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/it/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ms/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/nb/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/nl/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/pt/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ro/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/sk/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/sv/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/th/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/uk/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/vi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/Design/Microsoft.Maui.Controls.DesignTools.dll", + "lib/netstandard2.1/Design/Microsoft.Maui.Controls.DesignTools.pdb", + "lib/netstandard2.1/Microsoft.Maui.Controls.dll", + "lib/netstandard2.1/Microsoft.Maui.Controls.pdb", + "lib/netstandard2.1/Microsoft.Maui.Controls.xml", + "lib/netstandard2.1/ar/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ca/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/cs/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/da/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/de/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/el/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/es/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/fi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/he/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/hi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/hr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/hu/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/id/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/it/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ms/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/nb/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/nl/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/pl/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/pt/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ro/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/sk/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/sv/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/th/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/tr/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/uk/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/vi/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/zh-HK/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Maui.Controls.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Maui.Controls.resources.dll", + "microsoft.maui.controls.core.8.0.82.nupkg.sha512", + "microsoft.maui.controls.core.nuspec" + ] + }, + "Microsoft.Maui.Controls.Xaml/8.0.82": { + "sha512": "QFCiX2BOLursL7QXa1KVkUEUsFO6ccxQh7f8rZXMOgAjR1M01Q4YNa9uGJ8vDwfj03snEmIQGrhM/K1ohuBy0Q==", + "type": "package", + "path": "microsoft.maui.controls.xaml/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0-android34.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-android34.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0-ios17.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-ios17.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0-maccatalyst17.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-maccatalyst17.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0-tizen7.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-tizen7.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0-windows10.0.19041/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-windows10.0.19041/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0-windows10.0.20348/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0-windows10.0.20348/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.xml", + "lib/net8.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/net8.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/net8.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/net8.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/net8.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/netstandard2.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/netstandard2.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.dll", + "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.pdb", + "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.xml", + "lib/netstandard2.1/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll", + "lib/netstandard2.1/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb", + "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.dll", + "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.pdb", + "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.xml", + "microsoft.maui.controls.xaml.8.0.82.nupkg.sha512", + "microsoft.maui.controls.xaml.nuspec" + ] + }, + "Microsoft.Maui.Core/8.0.82": { + "sha512": "cuL7nSqN4HD+AMmgqKS5FW0nGSixRKt5yHCHYBPdcHJSzhGaBkhm3f3QXfus+FfFeKf8wpe24WT3OpakUxOZOQ==", + "type": "package", + "path": "microsoft.maui.core/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/Microsoft.Maui.Core.After.targets", + "buildTransitive/Microsoft.Maui.Core.Before.targets", + "buildTransitive/Microsoft.Maui.Core.BundledVersions.targets", + "buildTransitive/Microsoft.Maui.Core.props", + "buildTransitive/Microsoft.Maui.Core.targets", + "buildTransitive/WinUI.targets", + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.props", + "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Core.targets", + "lib/net8.0-android34.0/Microsoft.Maui.aar", + "lib/net8.0-android34.0/Microsoft.Maui.dll", + "lib/net8.0-android34.0/Microsoft.Maui.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.xml", + "lib/net8.0-android34.0/maui.aar", + "lib/net8.0-ios17.0/Microsoft.Maui.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.xml", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.xml", + "lib/net8.0-tizen7.0/Microsoft.Maui.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.xml", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.pri", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.xml", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.pri", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.xml", + "lib/net8.0/Microsoft.Maui.dll", + "lib/net8.0/Microsoft.Maui.pdb", + "lib/net8.0/Microsoft.Maui.xml", + "lib/netstandard2.0/Microsoft.Maui.dll", + "lib/netstandard2.0/Microsoft.Maui.pdb", + "lib/netstandard2.0/Microsoft.Maui.xml", + "lib/netstandard2.1/Microsoft.Maui.dll", + "lib/netstandard2.1/Microsoft.Maui.pdb", + "lib/netstandard2.1/Microsoft.Maui.xml", + "microsoft.maui.core.8.0.82.nupkg.sha512", + "microsoft.maui.core.nuspec" + ] + }, + "Microsoft.Maui.Essentials/8.0.82": { + "sha512": "Rcg+49oW7px7OC4NO0AMFeI0R51kDflyj9V0bFIh3ehY/3kI1Pk9pvHPGt1eRtbiejDOa0VTZKt/tKYme+OXJQ==", + "type": "package", + "path": "microsoft.maui.essentials/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0-android33.0/Microsoft.Maui.Essentials.aar", + "lib/net7.0-android33.0/Microsoft.Maui.Essentials.dll", + "lib/net7.0-android33.0/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-android33.0/Microsoft.Maui.Essentials.xml", + "lib/net7.0-ios16.1/Microsoft.Maui.Essentials.dll", + "lib/net7.0-ios16.1/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-ios16.1/Microsoft.Maui.Essentials.xml", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Essentials.dll", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Essentials.xml", + "lib/net7.0-tizen7.0/Microsoft.Maui.Essentials.dll", + "lib/net7.0-tizen7.0/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-tizen7.0/Microsoft.Maui.Essentials.xml", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Essentials.dll", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Essentials.xml", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Essentials.dll", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Essentials.pdb", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Essentials.xml", + "lib/net7.0/Microsoft.Maui.Essentials.dll", + "lib/net7.0/Microsoft.Maui.Essentials.pdb", + "lib/net7.0/Microsoft.Maui.Essentials.xml", + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.aar", + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.dll", + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Essentials.xml", + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Essentials.xml", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Essentials.xml", + "lib/net8.0-tizen7.0/Microsoft.Maui.Essentials.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Essentials.xml", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.xml", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Essentials.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Essentials.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Essentials.xml", + "lib/net8.0/Microsoft.Maui.Essentials.dll", + "lib/net8.0/Microsoft.Maui.Essentials.pdb", + "lib/net8.0/Microsoft.Maui.Essentials.xml", + "lib/netstandard2.0/Microsoft.Maui.Essentials.dll", + "lib/netstandard2.0/Microsoft.Maui.Essentials.pdb", + "lib/netstandard2.0/Microsoft.Maui.Essentials.xml", + "lib/netstandard2.1/Microsoft.Maui.Essentials.dll", + "lib/netstandard2.1/Microsoft.Maui.Essentials.pdb", + "lib/netstandard2.1/Microsoft.Maui.Essentials.xml", + "microsoft.maui.essentials.8.0.82.nupkg.sha512", + "microsoft.maui.essentials.nuspec" + ] + }, + "Microsoft.Maui.Graphics/8.0.82": { + "sha512": "l0H7YufzTp8On98mx9BzTp7RQPpGPJNJBJMatIHxtEsDCGX0HSYnsoz07v0+dJsOVkfXMVTQmmmOrDujVNhpYQ==", + "type": "package", + "path": "microsoft.maui.graphics/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0-android33.0/Microsoft.Maui.Graphics.dll", + "lib/net7.0-android33.0/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-android33.0/Microsoft.Maui.Graphics.xml", + "lib/net7.0-ios16.1/Microsoft.Maui.Graphics.dll", + "lib/net7.0-ios16.1/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-ios16.1/Microsoft.Maui.Graphics.xml", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Graphics.dll", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-maccatalyst16.1/Microsoft.Maui.Graphics.xml", + "lib/net7.0-macos13.0/Microsoft.Maui.Graphics.dll", + "lib/net7.0-macos13.0/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-macos13.0/Microsoft.Maui.Graphics.xml", + "lib/net7.0-tizen7.0/Microsoft.Maui.Graphics.dll", + "lib/net7.0-tizen7.0/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-tizen7.0/Microsoft.Maui.Graphics.xml", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Graphics.dll", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Graphics.xml", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Graphics.dll", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Graphics.pdb", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Graphics.xml", + "lib/net7.0/Microsoft.Maui.Graphics.dll", + "lib/net7.0/Microsoft.Maui.Graphics.pdb", + "lib/net7.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-android34.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-ios17.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-maccatalyst17.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-macos14.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0-macos14.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-macos14.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-tizen7.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0-tizen7.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-tizen7.0/Microsoft.Maui.Graphics.xml", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.xml", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Graphics.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Graphics.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Graphics.xml", + "lib/net8.0/Microsoft.Maui.Graphics.dll", + "lib/net8.0/Microsoft.Maui.Graphics.pdb", + "lib/net8.0/Microsoft.Maui.Graphics.xml", + "lib/netstandard2.0/Microsoft.Maui.Graphics.dll", + "lib/netstandard2.0/Microsoft.Maui.Graphics.pdb", + "lib/netstandard2.0/Microsoft.Maui.Graphics.xml", + "lib/netstandard2.1/Microsoft.Maui.Graphics.dll", + "lib/netstandard2.1/Microsoft.Maui.Graphics.pdb", + "lib/netstandard2.1/Microsoft.Maui.Graphics.xml", + "microsoft.maui.graphics.8.0.82.nupkg.sha512", + "microsoft.maui.graphics.nuspec" + ] + }, + "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.82": { + "sha512": "IVBp8HvYMKdpJP/hBeJhzd7LeIM9UXOMdhqr/YXAs0XP8PUWp7VSGEVzhvQEexY0fKaBbKdi+dghbJUxfu4aGw==", + "type": "package", + "path": "microsoft.maui.graphics.win2d.winui.desktop/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll", + "lib/net7.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll", + "lib/net7.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll", + "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll", + "lib/net8.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb", + "microsoft.maui.graphics.win2d.winui.desktop.8.0.82.nupkg.sha512", + "microsoft.maui.graphics.win2d.winui.desktop.nuspec" + ] + }, + "Microsoft.Maui.Resizetizer/8.0.82": { + "sha512": "TlWHxNzHvOpILEP3W+8asTaLZAlkISIPFJHY5/ckD9NuHu1vAb2YNsIVkjRe5YxthJQShTbbRFtzhf4sHryp9g==", + "type": "package", + "path": "microsoft.maui.resizetizer/8.0.82", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/ExCSS.dll", + "buildTransitive/Fizzler.dll", + "buildTransitive/HarfBuzzSharp.dll", + "buildTransitive/HarfBuzzSharp.pdb", + "buildTransitive/Microsoft.Bcl.AsyncInterfaces.dll", + "buildTransitive/Microsoft.Maui.Resizetizer.After.targets", + "buildTransitive/Microsoft.Maui.Resizetizer.Before.targets", + "buildTransitive/Microsoft.Maui.Resizetizer.dll", + "buildTransitive/Microsoft.Maui.Resizetizer.pdb", + "buildTransitive/Microsoft.Maui.Resizetizer.props", + "buildTransitive/Microsoft.Maui.Resizetizer.targets", + "buildTransitive/ShimSkiaSharp.dll", + "buildTransitive/SkiaSharp.HarfBuzz.dll", + "buildTransitive/SkiaSharp.HarfBuzz.pdb", + "buildTransitive/SkiaSharp.dll", + "buildTransitive/SkiaSharp.pdb", + "buildTransitive/Svg.Custom.dll", + "buildTransitive/Svg.Model.dll", + "buildTransitive/Svg.Skia.dll", + "buildTransitive/System.Buffers.dll", + "buildTransitive/System.IO.UnmanagedMemoryStream.dll", + "buildTransitive/System.Memory.dll", + "buildTransitive/System.Numerics.Vectors.dll", + "buildTransitive/System.ObjectModel.dll", + "buildTransitive/System.Runtime.CompilerServices.Unsafe.dll", + "buildTransitive/System.Text.Encodings.Web.dll", + "buildTransitive/System.Text.Json.dll", + "buildTransitive/arm/libHarfBuzzSharp.so", + "buildTransitive/arm/libSkiaSharp.so", + "buildTransitive/arm64/libHarfBuzzSharp.dll", + "buildTransitive/arm64/libHarfBuzzSharp.so", + "buildTransitive/arm64/libSkiaSharp.dll", + "buildTransitive/arm64/libSkiaSharp.so", + "buildTransitive/libHarfBuzzSharp.dylib", + "buildTransitive/libSkiaSharp.dylib", + "buildTransitive/musl-x64/libHarfBuzzSharp.so", + "buildTransitive/musl-x64/libSkiaSharp.so", + "buildTransitive/x64/libHarfBuzzSharp.dll", + "buildTransitive/x64/libHarfBuzzSharp.so", + "buildTransitive/x64/libSkiaSharp.dll", + "buildTransitive/x64/libSkiaSharp.so", + "buildTransitive/x86/libHarfBuzzSharp.dll", + "buildTransitive/x86/libSkiaSharp.dll", + "microsoft.maui.resizetizer.8.0.82.nupkg.sha512", + "microsoft.maui.resizetizer.nuspec" + ] + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "sha512": "xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew==", + "type": "package", + "path": "microsoft.net.illink.tasks/8.0.10", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "Sdk/Sdk.props", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.8.0.10.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/ILLink.Tasks.dll.config", + "tools/net472/Mono.Cecil.Mdb.dll", + "tools/net472/Mono.Cecil.Pdb.dll", + "tools/net472/Mono.Cecil.Rocks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/Sdk/Sdk.props", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net472/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net472/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/ILLink.Tasks.deps.json", + "tools/net8.0/ILLink.Tasks.dll", + "tools/net8.0/Mono.Cecil.Mdb.dll", + "tools/net8.0/Mono.Cecil.Pdb.dll", + "tools/net8.0/Mono.Cecil.Rocks.dll", + "tools/net8.0/Mono.Cecil.dll", + "tools/net8.0/Sdk/Sdk.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net8.0/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/illink.deps.json", + "tools/net8.0/illink.dll", + "tools/net8.0/illink.runtimeconfig.json", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": { + "sha512": "7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA==", + "type": "package", + "path": "microsoft.windows.sdk.buildtools/10.0.22621.756", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bin/10.0.22621.0/arm/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/arm/DeployUtil.exe", + "bin/10.0.22621.0/arm64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/arm64/ComparePackage.exe", + "bin/10.0.22621.0/arm64/DeployUtil.exe", + "bin/10.0.22621.0/arm64/MakeCert.exe", + "bin/10.0.22621.0/arm64/Microsoft.ComparePackage.Lib.dll", + "bin/10.0.22621.0/arm64/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/arm64/Microsoft.PackageEditor.Lib.dll", + "bin/10.0.22621.0/arm64/Microsoft.Tools.Connectivity.dll", + "bin/10.0.22621.0/arm64/Microsoft.Tools.Deploy.dll", + "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest", + "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest", + "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest", + "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Signing.mssign32.dll.manifest", + "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Signing.wintrust.dll.manifest", + "bin/10.0.22621.0/arm64/PackageEditor.exe", + "bin/10.0.22621.0/arm64/ServicingCommon.dll", + "bin/10.0.22621.0/arm64/SirepClient.assembly.manifest", + "bin/10.0.22621.0/arm64/SirepClient.dll", + "bin/10.0.22621.0/arm64/SirepInterop.dll", + "bin/10.0.22621.0/arm64/SshClient.dll", + "bin/10.0.22621.0/arm64/WinAppDeployCmd.exe", + "bin/10.0.22621.0/arm64/WinAppDeployCommon.dll", + "bin/10.0.22621.0/arm64/appxpackaging.dll", + "bin/10.0.22621.0/arm64/appxsip.dll", + "bin/10.0.22621.0/arm64/en-US/AppxPackaging.dll.mui", + "bin/10.0.22621.0/arm64/en/Microsoft.Tools.Deploy.resources.dll", + "bin/10.0.22621.0/arm64/en/WinAppDeployCmd.resources.dll", + "bin/10.0.22621.0/arm64/ipoverusb.discoverpartners.dll", + "bin/10.0.22621.0/arm64/makeappx.exe", + "bin/10.0.22621.0/arm64/makecat.exe", + "bin/10.0.22621.0/arm64/makecat.exe.manifest", + "bin/10.0.22621.0/arm64/makepri.exe", + "bin/10.0.22621.0/arm64/mc.exe", + "bin/10.0.22621.0/arm64/mdmerge.exe", + "bin/10.0.22621.0/arm64/midl.exe", + "bin/10.0.22621.0/arm64/midlc.exe", + "bin/10.0.22621.0/arm64/midlrt.exe", + "bin/10.0.22621.0/arm64/midlrtmd.dll", + "bin/10.0.22621.0/arm64/mrmsupport.dll", + "bin/10.0.22621.0/arm64/msisip.dll", + "bin/10.0.22621.0/arm64/mssign32.dll", + "bin/10.0.22621.0/arm64/mt.exe", + "bin/10.0.22621.0/arm64/mt.exe.config", + "bin/10.0.22621.0/arm64/opcservices.dll", + "bin/10.0.22621.0/arm64/rc.exe", + "bin/10.0.22621.0/arm64/rcdll.dll", + "bin/10.0.22621.0/arm64/signtool.exe", + "bin/10.0.22621.0/arm64/signtool.exe.manifest", + "bin/10.0.22621.0/arm64/tracewpp.exe", + "bin/10.0.22621.0/arm64/uuidgen.exe", + "bin/10.0.22621.0/arm64/winmdidl.exe", + "bin/10.0.22621.0/arm64/wintrust.dll", + "bin/10.0.22621.0/arm64/wintrust.dll.ini", + "bin/10.0.22621.0/x64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/x64/ComparePackage.exe", + "bin/10.0.22621.0/x64/DeployUtil.exe", + "bin/10.0.22621.0/x64/MakeCert.exe", + "bin/10.0.22621.0/x64/Microsoft.ComparePackage.Lib.dll", + "bin/10.0.22621.0/x64/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/x64/Microsoft.PackageEditor.Lib.dll", + "bin/10.0.22621.0/x64/Microsoft.Tools.Connectivity.dll", + "bin/10.0.22621.0/x64/Microsoft.Tools.Deploy.dll", + "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest", + "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest", + "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest", + "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Signing.mssign32.dll.manifest", + "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Signing.wintrust.dll.manifest", + "bin/10.0.22621.0/x64/PackageEditor.exe", + "bin/10.0.22621.0/x64/ServicingCommon.dll", + "bin/10.0.22621.0/x64/SirepClient.assembly.manifest", + "bin/10.0.22621.0/x64/SirepClient.dll", + "bin/10.0.22621.0/x64/SirepInterop.dll", + "bin/10.0.22621.0/x64/SshClient.dll", + "bin/10.0.22621.0/x64/WinAppDeployCmd.exe", + "bin/10.0.22621.0/x64/WinAppDeployCommon.dll", + "bin/10.0.22621.0/x64/appxpackaging.dll", + "bin/10.0.22621.0/x64/appxsip.dll", + "bin/10.0.22621.0/x64/en-US/AppxPackaging.dll.mui", + "bin/10.0.22621.0/x64/en/Microsoft.Tools.Deploy.resources.dll", + "bin/10.0.22621.0/x64/en/WinAppDeployCmd.resources.dll", + "bin/10.0.22621.0/x64/ipoverusb.discoverpartners.dll", + "bin/10.0.22621.0/x64/makeappx.exe", + "bin/10.0.22621.0/x64/makecat.exe", + "bin/10.0.22621.0/x64/makecat.exe.manifest", + "bin/10.0.22621.0/x64/makepri.exe", + "bin/10.0.22621.0/x64/mc.exe", + "bin/10.0.22621.0/x64/mdmerge.exe", + "bin/10.0.22621.0/x64/midl.exe", + "bin/10.0.22621.0/x64/midlc.exe", + "bin/10.0.22621.0/x64/midlrt.exe", + "bin/10.0.22621.0/x64/midlrtmd.dll", + "bin/10.0.22621.0/x64/mrmsupport.dll", + "bin/10.0.22621.0/x64/msisip.dll", + "bin/10.0.22621.0/x64/mssign32.dll", + "bin/10.0.22621.0/x64/mt.exe", + "bin/10.0.22621.0/x64/mt.exe.config", + "bin/10.0.22621.0/x64/opcservices.dll", + "bin/10.0.22621.0/x64/rc.exe", + "bin/10.0.22621.0/x64/rcdll.dll", + "bin/10.0.22621.0/x64/signtool.exe", + "bin/10.0.22621.0/x64/signtool.exe.manifest", + "bin/10.0.22621.0/x64/tracewpp.exe", + "bin/10.0.22621.0/x64/uuidgen.exe", + "bin/10.0.22621.0/x64/winmdidl.exe", + "bin/10.0.22621.0/x64/wintrust.dll", + "bin/10.0.22621.0/x64/wintrust.dll.ini", + "bin/10.0.22621.0/x86/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/x86/ComparePackage.exe", + "bin/10.0.22621.0/x86/DeployUtil.exe", + "bin/10.0.22621.0/x86/MakeCert.exe", + "bin/10.0.22621.0/x86/Microsoft.ComparePackage.Lib.dll", + "bin/10.0.22621.0/x86/Microsoft.Diagnostics.Tracing.EventSource.dll", + "bin/10.0.22621.0/x86/Microsoft.PackageEditor.Lib.dll", + "bin/10.0.22621.0/x86/Microsoft.Tools.Connectivity.dll", + "bin/10.0.22621.0/x86/Microsoft.Tools.Deploy.dll", + "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest", + "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest", + "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest", + "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Signing.mssign32.dll.manifest", + "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Signing.wintrust.dll.manifest", + "bin/10.0.22621.0/x86/PackageEditor.exe", + "bin/10.0.22621.0/x86/ServicingCommon.dll", + "bin/10.0.22621.0/x86/SirepClient.assembly.manifest", + "bin/10.0.22621.0/x86/SirepClient.dll", + "bin/10.0.22621.0/x86/SirepInterop.dll", + "bin/10.0.22621.0/x86/SshClient.dll", + "bin/10.0.22621.0/x86/WinAppDeployCmd.exe", + "bin/10.0.22621.0/x86/WinAppDeployCommon.dll", + "bin/10.0.22621.0/x86/appxpackaging.dll", + "bin/10.0.22621.0/x86/appxsip.dll", + "bin/10.0.22621.0/x86/en-US/AppxPackaging.dll.mui", + "bin/10.0.22621.0/x86/en/Microsoft.Tools.Deploy.resources.dll", + "bin/10.0.22621.0/x86/en/WinAppDeployCmd.resources.dll", + "bin/10.0.22621.0/x86/ipoverusb.discoverpartners.dll", + "bin/10.0.22621.0/x86/makeappx.exe", + "bin/10.0.22621.0/x86/makecat.exe", + "bin/10.0.22621.0/x86/makecat.exe.manifest", + "bin/10.0.22621.0/x86/makepri.exe", + "bin/10.0.22621.0/x86/mc.exe", + "bin/10.0.22621.0/x86/mdmerge.exe", + "bin/10.0.22621.0/x86/midl.exe", + "bin/10.0.22621.0/x86/midlc.exe", + "bin/10.0.22621.0/x86/midlrt.exe", + "bin/10.0.22621.0/x86/midlrtmd.dll", + "bin/10.0.22621.0/x86/mrmsupport.dll", + "bin/10.0.22621.0/x86/msisip.dll", + "bin/10.0.22621.0/x86/mssign32.dll", + "bin/10.0.22621.0/x86/mt.exe", + "bin/10.0.22621.0/x86/mt.exe.config", + "bin/10.0.22621.0/x86/opcservices.dll", + "bin/10.0.22621.0/x86/rc.exe", + "bin/10.0.22621.0/x86/rcdll.dll", + "bin/10.0.22621.0/x86/signtool.exe", + "bin/10.0.22621.0/x86/signtool.exe.manifest", + "bin/10.0.22621.0/x86/tracewpp.exe", + "bin/10.0.22621.0/x86/uuidgen.exe", + "bin/10.0.22621.0/x86/winmdidl.exe", + "bin/10.0.22621.0/x86/wintrust.dll", + "bin/10.0.22621.0/x86/wintrust.dll.ini", + "build/Microsoft.Windows.SDK.BuildTools.props", + "build/Microsoft.Windows.SDK.BuildTools.targets", + "buildTransitive/Microsoft.Windows.SDK.BuildTools.props", + "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets", + "microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512", + "microsoft.windows.sdk.buildtools.nuspec", + "schemas/10.0.22621.0/winrt/AppxManifestSchema.xsd", + "schemas/10.0.22621.0/winrt/AppxManifestSchema2010_v2.xsd", + "schemas/10.0.22621.0/winrt/AppxManifestSchema2013.xsd", + "schemas/10.0.22621.0/winrt/FoundationManifestSchema.xsd", + "schemas/10.0.22621.0/winrt/FoundationManifestSchema_v2.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v10.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v11.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v12.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v13.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v2.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v3.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v4.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v5.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v6.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v7.xsd", + "schemas/10.0.22621.0/winrt/UapManifestSchema_v8.xsd" + ] + }, + "Microsoft.WindowsAppSDK/1.5.240627000": { + "sha512": "qzzWG8rxZyzKzBuUdwr4ApezMINf+NT2b8EiEE5fchczNJJmDwlHImMWxX1pHK1W8Yby99alqLyC8DB0fIrhuA==", + "type": "package", + "path": "microsoft.windowsappsdk/1.5.240627000", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "WindowsAppSDK-VersionInfo.json", + "WindowsAppSDK-VersionInfo.xml", + "build/AppDevPackageScripts/Add-AppDevPackage.ps1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1", + "build/AppDevPackageScripts/Install.ps1", + "build/AppDevPackageScripts/LogSideloadingTelemetry.ps1", + "build/Landing/extras/br.png", + "build/Landing/extras/br_snippet.png", + "build/Landing/image.png", + "build/Landing/index.template.html", + "build/Landing/logo.png", + "build/Landing/style.css", + "build/Microsoft.Build.Msix.Common.props", + "build/Microsoft.Build.Msix.Cpp.props", + "build/Microsoft.Build.Msix.Cpp.targets", + "build/Microsoft.Build.Msix.Cs.targets", + "build/Microsoft.Build.Msix.DesignTime.targets", + "build/Microsoft.Build.Msix.Packaging.targets", + "build/Microsoft.Build.Msix.Pri.targets", + "build/Microsoft.Build.Msix.props", + "build/Microsoft.Build.Msix.targets", + "build/Microsoft.InteractiveExperiences.Capabilities.props", + "build/Microsoft.InteractiveExperiences.Capabilities.targets", + "build/Microsoft.InteractiveExperiences.Common.props", + "build/Microsoft.InteractiveExperiences.Common.targets", + "build/Microsoft.InteractiveExperiences.props", + "build/Microsoft.InteractiveExperiences.targets", + "build/Microsoft.UI.Xaml.Markup.Compiler.interop.targets", + "build/Microsoft.UI.Xaml.Markup.Compiler.props", + "build/Microsoft.UI.Xaml.Markup.Compiler.targets", + "build/Microsoft.WinUI.AppX.targets", + "build/Microsoft.WinUI.NET.Markup.Compiler.targets", + "build/Microsoft.WinUI.ProjectCapabilities.props", + "build/Microsoft.WinUI.References.targets", + "build/Microsoft.WinUI.props", + "build/Microsoft.WinUI.targets", + "build/Microsoft.WindowsAppSDK.AppXReference.props", + "build/Microsoft.WindowsAppSDK.Bootstrap.CS.targets", + "build/Microsoft.WindowsAppSDK.BootstrapCommon.targets", + "build/Microsoft.WindowsAppSDK.Common.props", + "build/Microsoft.WindowsAppSDK.DWrite.ProjectCapabilities.props", + "build/Microsoft.WindowsAppSDK.DWrite.props", + "build/Microsoft.WindowsAppSDK.DWrite.targets", + "build/Microsoft.WindowsAppSDK.DeploymentManager.CS.targets", + "build/Microsoft.WindowsAppSDK.DeploymentManagerCommon.targets", + "build/Microsoft.WindowsAppSDK.Foundation.props", + "build/Microsoft.WindowsAppSDK.Foundation.targets", + "build/Microsoft.WindowsAppSDK.InteractiveExperiences.props", + "build/Microsoft.WindowsAppSDK.InteractiveExperiences.targets", + "build/Microsoft.WindowsAppSDK.Metapackage.props", + "build/Microsoft.WindowsAppSDK.SelfContained.targets", + "build/Microsoft.WindowsAppSDK.SingleFile.targets", + "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets", + "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets", + "build/Microsoft.WindowsAppSDK.Widgets.targets", + "build/Microsoft.WindowsAppSDK.WinUI.props", + "build/Microsoft.WindowsAppSDK.WinUI.targets", + "build/Microsoft.WindowsAppSDK.props", + "build/Microsoft.WindowsAppSDK.targets", + "build/Microsoft.Xaml.Tooling.targets", + "build/MicrosoftWindowsAppSDKFoundationAppXVersion.props", + "build/MrtCore.PriGen.targets", + "build/MrtCore.References.targets", + "build/MrtCore.props", + "build/MrtCore.targets", + "build/ProjectItemsSchema.xaml", + "build/README.md", + "build/Rules/MsixPackageDebugPropertyPage.xaml", + "build/Rules/WindowsPackageTypePropertyPage.xaml", + "build/Rules/af-ZA/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ar-SA/MsixPackageDebugPropertyPage.xaml", + "build/Rules/az-Latn-AZ/MsixPackageDebugPropertyPage.xaml", + "build/Rules/bg-BG/MsixPackageDebugPropertyPage.xaml", + "build/Rules/bs-Latn-BA/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ca-ES/MsixPackageDebugPropertyPage.xaml", + "build/Rules/cs-CZ/MsixPackageDebugPropertyPage.xaml", + "build/Rules/cy-GB/MsixPackageDebugPropertyPage.xaml", + "build/Rules/da-DK/MsixPackageDebugPropertyPage.xaml", + "build/Rules/de-DE/MsixPackageDebugPropertyPage.xaml", + "build/Rules/el-GR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/en-GB/MsixPackageDebugPropertyPage.xaml", + "build/Rules/es-ES/MsixPackageDebugPropertyPage.xaml", + "build/Rules/es-MX/MsixPackageDebugPropertyPage.xaml", + "build/Rules/et-EE/MsixPackageDebugPropertyPage.xaml", + "build/Rules/eu-ES/MsixPackageDebugPropertyPage.xaml", + "build/Rules/fa-IR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/fi-FI/MsixPackageDebugPropertyPage.xaml", + "build/Rules/fr-CA/MsixPackageDebugPropertyPage.xaml", + "build/Rules/fr-FR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/gl-ES/MsixPackageDebugPropertyPage.xaml", + "build/Rules/he-IL/MsixPackageDebugPropertyPage.xaml", + "build/Rules/hi-IN/MsixPackageDebugPropertyPage.xaml", + "build/Rules/hr-HR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/hu-HU/MsixPackageDebugPropertyPage.xaml", + "build/Rules/id-ID/MsixPackageDebugPropertyPage.xaml", + "build/Rules/is-IS/MsixPackageDebugPropertyPage.xaml", + "build/Rules/it-IT/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ja-JP/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ka-GE/MsixPackageDebugPropertyPage.xaml", + "build/Rules/kk-KZ/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ko-KR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/lt-LT/MsixPackageDebugPropertyPage.xaml", + "build/Rules/lv-LV/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ms-MY/MsixPackageDebugPropertyPage.xaml", + "build/Rules/nb-NO/MsixPackageDebugPropertyPage.xaml", + "build/Rules/nl-NL/MsixPackageDebugPropertyPage.xaml", + "build/Rules/nn-NO/MsixPackageDebugPropertyPage.xaml", + "build/Rules/pl-PL/MsixPackageDebugPropertyPage.xaml", + "build/Rules/pt-BR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/pt-PT/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ro-RO/MsixPackageDebugPropertyPage.xaml", + "build/Rules/ru-RU/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sk-SK/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sl-SI/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sq-AL/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sr-Cyrl-RS/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sr-Latn-RS/MsixPackageDebugPropertyPage.xaml", + "build/Rules/sv-SE/MsixPackageDebugPropertyPage.xaml", + "build/Rules/th-TH/MsixPackageDebugPropertyPage.xaml", + "build/Rules/tr-TR/MsixPackageDebugPropertyPage.xaml", + "build/Rules/uk-UA/MsixPackageDebugPropertyPage.xaml", + "build/Rules/vi-VN/MsixPackageDebugPropertyPage.xaml", + "build/Rules/zh-CN/MsixPackageDebugPropertyPage.xaml", + "build/Rules/zh-TW/MsixPackageDebugPropertyPage.xaml", + "build/Templates/Package.appinstaller", + "build/native/LiftedWinRTClassRegistrations.xml", + "build/native/Microsoft.InteractiveExperiences.props", + "build/native/Microsoft.InteractiveExperiences.targets", + "build/native/Microsoft.WinUI.References.targets", + "build/native/Microsoft.WinUI.props", + "build/native/Microsoft.WinUI.targets", + "build/native/Microsoft.WindowsAppSDK.Foundation.props", + "build/native/Microsoft.WindowsAppSDK.Foundation.targets", + "build/native/Microsoft.WindowsAppSDK.InteractiveExperiences.props", + "build/native/Microsoft.WindowsAppSDK.InteractiveExperiences.targets", + "build/native/Microsoft.WindowsAppSDK.Widgets.targets", + "build/native/Microsoft.WindowsAppSDK.WinUI.props", + "build/native/Microsoft.WindowsAppSDK.WinUI.targets", + "build/native/Microsoft.WindowsAppSDK.props", + "build/native/Microsoft.WindowsAppSDK.targets", + "build/native/MrtCore.C.props", + "build/native/MrtCore.props", + "build/native/MrtCore.targets", + "build/native/WindowsAppSDK-Nuget-Native.Bootstrap.targets", + "build/native/WindowsAppSDK-Nuget-Native.C.props", + "build/native/WindowsAppSDK-Nuget-Native.DeploymentManager.targets", + "build/native/WindowsAppSDK-Nuget-Native.UndockedRegFreeWinRT.targets", + "build/native/WindowsAppSDK-Nuget-Native.WinRt.props", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.ps1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1", + "buildTransitive/AppDevPackageScripts/Install.ps1", + "buildTransitive/AppDevPackageScripts/LogSideloadingTelemetry.ps1", + "buildTransitive/Landing/extras/br.png", + "buildTransitive/Landing/extras/br_snippet.png", + "buildTransitive/Landing/image.png", + "buildTransitive/Landing/index.template.html", + "buildTransitive/Landing/logo.png", + "buildTransitive/Landing/style.css", + "buildTransitive/Microsoft.Build.Msix.Common.props", + "buildTransitive/Microsoft.Build.Msix.Cpp.props", + "buildTransitive/Microsoft.Build.Msix.Cpp.targets", + "buildTransitive/Microsoft.Build.Msix.Cs.targets", + "buildTransitive/Microsoft.Build.Msix.DesignTime.targets", + "buildTransitive/Microsoft.Build.Msix.Packaging.targets", + "buildTransitive/Microsoft.Build.Msix.Pri.targets", + "buildTransitive/Microsoft.Build.Msix.props", + "buildTransitive/Microsoft.Build.Msix.targets", + "buildTransitive/Microsoft.InteractiveExperiences.Capabilities.props", + "buildTransitive/Microsoft.InteractiveExperiences.Capabilities.targets", + "buildTransitive/Microsoft.InteractiveExperiences.Common.props", + "buildTransitive/Microsoft.InteractiveExperiences.Common.targets", + "buildTransitive/Microsoft.InteractiveExperiences.props", + "buildTransitive/Microsoft.InteractiveExperiences.targets", + "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.interop.targets", + "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.props", + "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.targets", + "buildTransitive/Microsoft.WinUI.AppX.targets", + "buildTransitive/Microsoft.WinUI.NET.Markup.Compiler.targets", + "buildTransitive/Microsoft.WinUI.ProjectCapabilities.props", + "buildTransitive/Microsoft.WinUI.References.targets", + "buildTransitive/Microsoft.WinUI.props", + "buildTransitive/Microsoft.WinUI.targets", + "buildTransitive/Microsoft.WindowsAppSDK.AppXReference.props", + "buildTransitive/Microsoft.WindowsAppSDK.Bootstrap.CS.targets", + "buildTransitive/Microsoft.WindowsAppSDK.BootstrapCommon.targets", + "buildTransitive/Microsoft.WindowsAppSDK.Common.props", + "buildTransitive/Microsoft.WindowsAppSDK.DWrite.ProjectCapabilities.props", + "buildTransitive/Microsoft.WindowsAppSDK.DWrite.props", + "buildTransitive/Microsoft.WindowsAppSDK.DWrite.targets", + "buildTransitive/Microsoft.WindowsAppSDK.DeploymentManager.CS.targets", + "buildTransitive/Microsoft.WindowsAppSDK.DeploymentManagerCommon.targets", + "buildTransitive/Microsoft.WindowsAppSDK.Foundation.props", + "buildTransitive/Microsoft.WindowsAppSDK.Foundation.targets", + "buildTransitive/Microsoft.WindowsAppSDK.InteractiveExperiences.props", + "buildTransitive/Microsoft.WindowsAppSDK.InteractiveExperiences.targets", + "buildTransitive/Microsoft.WindowsAppSDK.Metapackage.props", + "buildTransitive/Microsoft.WindowsAppSDK.SelfContained.targets", + "buildTransitive/Microsoft.WindowsAppSDK.SingleFile.targets", + "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets", + "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets", + "buildTransitive/Microsoft.WindowsAppSDK.Widgets.targets", + "buildTransitive/Microsoft.WindowsAppSDK.WinUI.props", + "buildTransitive/Microsoft.WindowsAppSDK.WinUI.targets", + "buildTransitive/Microsoft.WindowsAppSDK.props", + "buildTransitive/Microsoft.WindowsAppSDK.targets", + "buildTransitive/Microsoft.Xaml.Tooling.targets", + "buildTransitive/MicrosoftWindowsAppSDKFoundationAppXVersion.props", + "buildTransitive/MrtCore.PriGen.targets", + "buildTransitive/MrtCore.References.targets", + "buildTransitive/MrtCore.props", + "buildTransitive/MrtCore.targets", + "buildTransitive/ProjectItemsSchema.xaml", + "buildTransitive/README.md", + "buildTransitive/Rules/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/WindowsPackageTypePropertyPage.xaml", + "buildTransitive/Rules/af-ZA/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ar-SA/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/az-Latn-AZ/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/bg-BG/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/bs-Latn-BA/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ca-ES/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/cs-CZ/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/cy-GB/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/da-DK/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/de-DE/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/el-GR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/en-GB/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/es-ES/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/es-MX/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/et-EE/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/eu-ES/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/fa-IR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/fi-FI/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/fr-CA/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/fr-FR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/gl-ES/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/he-IL/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/hi-IN/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/hr-HR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/hu-HU/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/id-ID/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/is-IS/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/it-IT/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ja-JP/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ka-GE/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/kk-KZ/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ko-KR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/lt-LT/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/lv-LV/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ms-MY/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/nb-NO/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/nl-NL/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/nn-NO/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/pl-PL/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/pt-BR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/pt-PT/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ro-RO/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/ru-RU/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sk-SK/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sl-SI/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sq-AL/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sr-Cyrl-RS/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sr-Latn-RS/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/sv-SE/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/th-TH/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/tr-TR/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/uk-UA/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/vi-VN/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/zh-CN/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Rules/zh-TW/MsixPackageDebugPropertyPage.xaml", + "buildTransitive/Templates/Package.appinstaller", + "buildTransitive/native/LiftedWinRTClassRegistrations.xml", + "buildTransitive/native/Microsoft.InteractiveExperiences.props", + "buildTransitive/native/Microsoft.InteractiveExperiences.targets", + "buildTransitive/native/Microsoft.WinUI.References.targets", + "buildTransitive/native/Microsoft.WinUI.props", + "buildTransitive/native/Microsoft.WinUI.targets", + "buildTransitive/native/Microsoft.WindowsAppSDK.Foundation.props", + "buildTransitive/native/Microsoft.WindowsAppSDK.Foundation.targets", + "buildTransitive/native/Microsoft.WindowsAppSDK.InteractiveExperiences.props", + "buildTransitive/native/Microsoft.WindowsAppSDK.InteractiveExperiences.targets", + "buildTransitive/native/Microsoft.WindowsAppSDK.Widgets.targets", + "buildTransitive/native/Microsoft.WindowsAppSDK.WinUI.props", + "buildTransitive/native/Microsoft.WindowsAppSDK.WinUI.targets", + "buildTransitive/native/Microsoft.WindowsAppSDK.props", + "buildTransitive/native/Microsoft.WindowsAppSDK.targets", + "buildTransitive/native/MrtCore.C.props", + "buildTransitive/native/MrtCore.props", + "buildTransitive/native/MrtCore.targets", + "buildTransitive/native/WindowsAppSDK-Nuget-Native.Bootstrap.targets", + "buildTransitive/native/WindowsAppSDK-Nuget-Native.C.props", + "buildTransitive/native/WindowsAppSDK-Nuget-Native.DeploymentManager.targets", + "buildTransitive/native/WindowsAppSDK-Nuget-Native.UndockedRegFreeWinRT.targets", + "buildTransitive/native/WindowsAppSDK-Nuget-Native.WinRt.props", + "include/DeploymentManagerAutoInitializer.cpp", + "include/DeploymentManagerAutoInitializer.cs", + "include/MRM.h", + "include/MddBootstrap.h", + "include/MddBootstrapAutoInitializer.cpp", + "include/MddBootstrapAutoInitializer.cs", + "include/Microsoft.UI.Composition.Interop.h", + "include/Microsoft.UI.Dispatching.Interop.h", + "include/Microsoft.UI.Input.InputCursor.Interop.h", + "include/Microsoft.UI.Input.InputPreTranslateSource.Interop.h", + "include/Microsoft.UI.Interop.h", + "include/Microsoft.Windows.ApplicationModel.Resources.idl", + "include/MsixDynamicDependency.h", + "include/Security.AccessControl.h", + "include/UndockedRegFreeWinRT-AutoInitializer.cpp", + "include/UndockedRegFreeWinRT-AutoInitializer.cs", + "include/WebView2.h", + "include/WebView2.idl", + "include/WindowsAppRuntimeInsights.h", + "include/WindowsAppSDK-VersionInfo.cs", + "include/WindowsAppSDK-VersionInfo.h", + "include/dwrite.h", + "include/dwrite_1.h", + "include/dwrite_2.h", + "include/dwrite_3.h", + "include/dwrite_core.h", + "include/microsoft.ui.xaml.hosting.referencetracker.h", + "include/microsoft.ui.xaml.hosting.referencetracker.idl", + "include/microsoft.ui.xaml.media.dxinterop.h", + "include/microsoft.ui.xaml.media.dxinterop.idl", + "include/microsoft.ui.xaml.window.h", + "include/microsoft.ui.xaml.window.idl", + "include/wil_msixdynamicdependency.h", + "include/winrt/Microsoft.UI.Composition.Interop.h", + "include/winrt/Microsoft.UI.Input.InputCursor.Interop.h", + "include/winrt/Microsoft.UI.Input.InputPreTranslateSource.Interop.h", + "include/winrt/Microsoft.UI.Interop.h", + "include/winrtdirect3d11.h", + "include/winrtdirectxcommon.h", + "include/xamlom.winui.h", + "include/xamlom.winui.idl", + "lib/native/win10-arm64/Microsoft.UI.Dispatching.lib", + "lib/native/win10-x64/Microsoft.UI.Dispatching.lib", + "lib/native/win10-x86/Microsoft.UI.Dispatching.lib", + "lib/net6.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI/Themes/generic.xaml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Management.Deployment.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.PushNotifications.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Security.AccessControl.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.xml", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Widgets.Projection.dll", + "lib/net6.0-windows10.0.17763.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI/Themes/generic.xaml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.xml", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll", + "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll", + "lib/uap10.0.17763/Microsoft.Foundation.winmd", + "lib/uap10.0.17763/Microsoft.Foundation.xml", + "lib/uap10.0.17763/Microsoft.Graphics.winmd", + "lib/uap10.0.17763/Microsoft.Graphics.xml", + "lib/uap10.0.17763/Microsoft.UI.winmd", + "lib/uap10.0.17763/Microsoft.UI.xml", + "lib/uap10.0.18362/Microsoft.Foundation.winmd", + "lib/uap10.0.18362/Microsoft.Foundation.xml", + "lib/uap10.0.18362/Microsoft.Graphics.winmd", + "lib/uap10.0.18362/Microsoft.Graphics.xml", + "lib/uap10.0.18362/Microsoft.UI.winmd", + "lib/uap10.0.18362/Microsoft.UI.xml", + "lib/uap10.0/Microsoft.Foundation.xml", + "lib/uap10.0/Microsoft.Graphics.xml", + "lib/uap10.0/Microsoft.UI.Text.winmd", + "lib/uap10.0/Microsoft.UI.Text.xml", + "lib/uap10.0/Microsoft.UI.Xaml.winmd", + "lib/uap10.0/Microsoft.UI.Xaml.xml", + "lib/uap10.0/Microsoft.UI/Themes/generic.xaml", + "lib/uap10.0/Microsoft.Web.WebView2.Core.winmd", + "lib/uap10.0/Microsoft.Windows.AppLifecycle.winmd", + "lib/uap10.0/Microsoft.Windows.AppLifecycle.xml", + "lib/uap10.0/Microsoft.Windows.AppNotifications.Builder.winmd", + "lib/uap10.0/Microsoft.Windows.AppNotifications.winmd", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.DynamicDependency.winmd", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.DynamicDependency.xml", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.Resources.winmd", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.Resources.xml", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.winmd", + "lib/uap10.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.xml", + "lib/uap10.0/Microsoft.Windows.Management.Deployment.winmd", + "lib/uap10.0/Microsoft.Windows.PushNotifications.winmd", + "lib/uap10.0/Microsoft.Windows.PushNotifications.xml", + "lib/uap10.0/Microsoft.Windows.Security.AccessControl.winmd", + "lib/uap10.0/Microsoft.Windows.System.Power.winmd", + "lib/uap10.0/Microsoft.Windows.System.Power.xml", + "lib/uap10.0/Microsoft.Windows.System.winmd", + "lib/uap10.0/Microsoft.Windows.System.xml", + "lib/uap10.0/Microsoft.Windows.Widgets.winmd", + "lib/win10-arm64/DWriteCore.lib", + "lib/win10-arm64/MRM.lib", + "lib/win10-arm64/Microsoft.WindowsAppRuntime.Bootstrap.lib", + "lib/win10-arm64/Microsoft.WindowsAppRuntime.lib", + "lib/win10-x64/DWriteCore.lib", + "lib/win10-x64/MRM.lib", + "lib/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.lib", + "lib/win10-x64/Microsoft.WindowsAppRuntime.lib", + "lib/win10-x86/DWriteCore.lib", + "lib/win10-x86/MRM.lib", + "lib/win10-x86/Microsoft.WindowsAppRuntime.Bootstrap.lib", + "lib/win10-x86/Microsoft.WindowsAppRuntime.lib", + "license.txt", + "manifests/Microsoft.InteractiveExperiences.manifest", + "manifests/Microsoft.WindowsAppSdk.Foundation.manifest", + "manifests/manifests/Microsoft.WindowsAppSdk.WinUI.manifest", + "microsoft.windowsappsdk.1.5.240627000.nupkg.sha512", + "microsoft.windowsappsdk.nuspec", + "runtimes/win-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "runtimes/win-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "runtimes/win-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "runtimes/win10-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "runtimes/win10-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll", + "tools/MSIX/win10-arm64/MSIX.inventory", + "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.1.5.msix", + "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.DDLM.1.5.msix", + "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Main.1.5.msix", + "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Singleton.1.5.msix", + "tools/MSIX/win10-x64/MSIX.inventory", + "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.1.5.msix", + "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.DDLM.1.5.msix", + "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Main.1.5.msix", + "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Singleton.1.5.msix", + "tools/MSIX/win10-x86/MSIX.inventory", + "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.1.5.msix", + "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.DDLM.1.5.msix", + "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Main.1.5.msix", + "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Singleton.1.5.msix", + "tools/NOTICE.txt", + "tools/arm64/GenXbf.dll", + "tools/net472/Microsoft.Bcl.AsyncInterfaces.dll", + "tools/net472/Microsoft.Build.Framework.dll", + "tools/net472/Microsoft.Build.Msix.dll", + "tools/net472/Microsoft.Build.Utilities.Core.dll", + "tools/net472/Microsoft.Build.dll", + "tools/net472/Microsoft.Cci.dll", + "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.IO.dll", + "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.MSBuildInterop.dll", + "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.dll", + "tools/net472/Microsoft.VisualStudio.RemoteControl.dll", + "tools/net472/Microsoft.VisualStudio.Setup.Configuration.Interop.dll", + "tools/net472/Microsoft.VisualStudio.Telemetry.dll", + "tools/net472/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/net472/Newtonsoft.Json.dll", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net472/System.Text.Encodings.Web.dll", + "tools/net472/System.Text.Json.dll", + "tools/net472/System.Threading.Tasks.Dataflow.dll", + "tools/net472/System.Threading.Tasks.Extensions.dll", + "tools/net472/XamlCompiler.exe", + "tools/net472/XamlCompiler.exe.config", + "tools/net472/af-ZA/Microsoft.Build.Msix.resources.dll", + "tools/net472/ar-SA/Microsoft.Build.Msix.resources.dll", + "tools/net472/az-Latn-AZ/Microsoft.Build.Msix.resources.dll", + "tools/net472/bg-BG/Microsoft.Build.Msix.resources.dll", + "tools/net472/bs-Latn-BA/Microsoft.Build.Msix.resources.dll", + "tools/net472/ca-ES/Microsoft.Build.Msix.resources.dll", + "tools/net472/cs-CZ/Microsoft.Build.Msix.resources.dll", + "tools/net472/cy-GB/Microsoft.Build.Msix.resources.dll", + "tools/net472/da-DK/Microsoft.Build.Msix.resources.dll", + "tools/net472/de-DE/Microsoft.Build.Msix.resources.dll", + "tools/net472/el-GR/Microsoft.Build.Msix.resources.dll", + "tools/net472/en-GB/Microsoft.Build.Msix.resources.dll", + "tools/net472/es-ES/Microsoft.Build.Msix.resources.dll", + "tools/net472/es-MX/Microsoft.Build.Msix.resources.dll", + "tools/net472/et-EE/Microsoft.Build.Msix.resources.dll", + "tools/net472/eu-ES/Microsoft.Build.Msix.resources.dll", + "tools/net472/fa-IR/Microsoft.Build.Msix.resources.dll", + "tools/net472/fi-FI/Microsoft.Build.Msix.resources.dll", + "tools/net472/fr-CA/Microsoft.Build.Msix.resources.dll", + "tools/net472/fr-FR/Microsoft.Build.Msix.resources.dll", + "tools/net472/gl-ES/Microsoft.Build.Msix.resources.dll", + "tools/net472/he-IL/Microsoft.Build.Msix.resources.dll", + "tools/net472/hi-IN/Microsoft.Build.Msix.resources.dll", + "tools/net472/hr-HR/Microsoft.Build.Msix.resources.dll", + "tools/net472/hu-HU/Microsoft.Build.Msix.resources.dll", + "tools/net472/id-ID/Microsoft.Build.Msix.resources.dll", + "tools/net472/is-IS/Microsoft.Build.Msix.resources.dll", + "tools/net472/it-IT/Microsoft.Build.Msix.resources.dll", + "tools/net472/ja-JP/Microsoft.Build.Msix.resources.dll", + "tools/net472/ka-GE/Microsoft.Build.Msix.resources.dll", + "tools/net472/kk-KZ/Microsoft.Build.Msix.resources.dll", + "tools/net472/ko-KR/Microsoft.Build.Msix.resources.dll", + "tools/net472/lt-LT/Microsoft.Build.Msix.resources.dll", + "tools/net472/lv-LV/Microsoft.Build.Msix.resources.dll", + "tools/net472/ms-MY/Microsoft.Build.Msix.resources.dll", + "tools/net472/nb-NO/Microsoft.Build.Msix.resources.dll", + "tools/net472/nl-NL/Microsoft.Build.Msix.resources.dll", + "tools/net472/nn-NO/Microsoft.Build.Msix.resources.dll", + "tools/net472/pl-PL/Microsoft.Build.Msix.resources.dll", + "tools/net472/pt-BR/Microsoft.Build.Msix.resources.dll", + "tools/net472/pt-PT/Microsoft.Build.Msix.resources.dll", + "tools/net472/ro-RO/Microsoft.Build.Msix.resources.dll", + "tools/net472/ru-RU/Microsoft.Build.Msix.resources.dll", + "tools/net472/sk-SK/Microsoft.Build.Msix.resources.dll", + "tools/net472/sl-SI/Microsoft.Build.Msix.resources.dll", + "tools/net472/sq-AL/Microsoft.Build.Msix.resources.dll", + "tools/net472/sr-Cyrl-RS/Microsoft.Build.Msix.resources.dll", + "tools/net472/sr-Latn-RS/Microsoft.Build.Msix.resources.dll", + "tools/net472/sv-SE/Microsoft.Build.Msix.resources.dll", + "tools/net472/th-TH/Microsoft.Build.Msix.resources.dll", + "tools/net472/tr-TR/Microsoft.Build.Msix.resources.dll", + "tools/net472/uk-UA/Microsoft.Build.Msix.resources.dll", + "tools/net472/vi-VN/Microsoft.Build.Msix.resources.dll", + "tools/net472/zh-CN/Microsoft.Build.Msix.resources.dll", + "tools/net472/zh-TW/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/Microsoft.Build.Msix.dll", + "tools/net5.0/Microsoft.Cci.dll", + "tools/net5.0/Microsoft.VisualStudio.RemoteControl.dll", + "tools/net5.0/Microsoft.VisualStudio.Setup.Configuration.Interop.dll", + "tools/net5.0/Microsoft.VisualStudio.Telemetry.dll", + "tools/net5.0/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/net5.0/Newtonsoft.Json.dll", + "tools/net5.0/af-ZA/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ar-SA/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/az-Latn-AZ/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/bg-BG/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/bs-Latn-BA/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ca-ES/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/cs-CZ/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/cy-GB/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/da-DK/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/de-DE/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/el-GR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/en-GB/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/es-ES/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/es-MX/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/et-EE/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/eu-ES/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/fa-IR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/fi-FI/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/fr-CA/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/fr-FR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/gl-ES/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/he-IL/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/hi-IN/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/hr-HR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/hu-HU/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/id-ID/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/is-IS/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/it-IT/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ja-JP/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ka-GE/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/kk-KZ/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ko-KR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/lt-LT/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/lv-LV/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ms-MY/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/nb-NO/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/nl-NL/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/nn-NO/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/pl-PL/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/pt-BR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/pt-PT/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ro-RO/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/ru-RU/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sk-SK/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sl-SI/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sq-AL/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sr-Cyrl-RS/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sr-Latn-RS/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/sv-SE/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/th-TH/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/tr-TR/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/uk-UA/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/vi-VN/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/zh-CN/Microsoft.Build.Msix.resources.dll", + "tools/net5.0/zh-TW/Microsoft.Build.Msix.resources.dll", + "tools/net6.0/Microsoft.Bcl.AsyncInterfaces.dll", + "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.IO.dll", + "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.MSBuildInterop.dll", + "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.dll", + "tools/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net6.0/System.Text.Encodings.Web.dll", + "tools/net6.0/System.Text.Json.dll", + "tools/x64/GenXbf.dll", + "tools/x86/GenXbf.dll" + ] + }, + "Xamarin.Android.Glide/4.15.1.2": { + "sha512": "DcekP+BXm4jFMV7zjHEltj01uiXcItq1kjGa79pj/Vx1rk3Ac2VXdmwGw06HXDP8n2XZsDh8dAoSI48G4KODRA==", + "type": "package", + "path": "xamarin.android.glide/4.15.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/glide.aar", + "build/monoandroid12.0/Xamarin.Android.Glide.targets", + "build/net6.0-android31.0/Xamarin.Android.Glide.targets", + "buildTransitive/monoandroid12.0/Xamarin.Android.Glide.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.targets", + "lib/monoandroid12.0/Xamarin.Android.Glide.dll", + "lib/monoandroid12.0/Xamarin.Android.Glide.xml", + "lib/net6.0-android31.0/Xamarin.Android.Glide.dll", + "lib/net6.0-android31.0/Xamarin.Android.Glide.xml", + "xamarin.android.glide.4.15.1.2.nupkg.sha512", + "xamarin.android.glide.nuspec" + ] + }, + "Xamarin.Android.Glide.Annotations/4.15.1.2": { + "sha512": "R0hG5P/zn1J0L8Z9BD03vLgiPlUzUW4tymcSzwr/5t7CybfzNYcYauFRF8P7DGryLAnvX9EkWH/kR7YFIFoZfQ==", + "type": "package", + "path": "xamarin.android.glide.annotations/4.15.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Android.Glide.Annotations.targets", + "build/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets", + "buildTransitive/monoandroid12.0/Xamarin.Android.Glide.Annotations.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.Annotations.targets", + "jar/annotations.jar", + "lib/monoandroid12.0/Xamarin.Android.Glide.Annotations.dll", + "lib/monoandroid12.0/Xamarin.Android.Glide.Annotations.xml", + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.dll", + "lib/net6.0-android31.0/Xamarin.Android.Glide.Annotations.xml", + "xamarin.android.glide.annotations.4.15.1.2.nupkg.sha512", + "xamarin.android.glide.annotations.nuspec" + ] + }, + "Xamarin.Android.Glide.DiskLruCache/4.15.1.2": { + "sha512": "2wJ49i/iYgJwlZztKY7evRgK06hGEk/tD6ki77Lg5mO1xrZbECnpCrluB6zSGJ/Z+0m84MNWKh7M43MLFYRlRA==", + "type": "package", + "path": "xamarin.android.glide.disklrucache/4.15.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Android.Glide.DiskLruCache.targets", + "build/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets", + "buildTransitive/monoandroid12.0/Xamarin.Android.Glide.DiskLruCache.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.targets", + "jar/disklrucache.jar", + "lib/monoandroid12.0/Xamarin.Android.Glide.DiskLruCache.dll", + "lib/monoandroid12.0/Xamarin.Android.Glide.DiskLruCache.xml", + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.dll", + "lib/net6.0-android31.0/Xamarin.Android.Glide.DiskLruCache.xml", + "xamarin.android.glide.disklrucache.4.15.1.2.nupkg.sha512", + "xamarin.android.glide.disklrucache.nuspec" + ] + }, + "Xamarin.Android.Glide.GifDecoder/4.15.1.2": { + "sha512": "XPN8qI3Y2LeupnibqLJyjOJBXxekFsiHUlUYuxi3Gz7IihbibEcVfBUWbgMJbGkf/O8oeYviWOnLoNdSgkSVmQ==", + "type": "package", + "path": "xamarin.android.glide.gifdecoder/4.15.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/gifdecoder.aar", + "build/monoandroid12.0/Xamarin.Android.Glide.GifDecoder.targets", + "build/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets", + "buildTransitive/monoandroid12.0/Xamarin.Android.Glide.GifDecoder.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.targets", + "lib/monoandroid12.0/Xamarin.Android.Glide.GifDecoder.dll", + "lib/monoandroid12.0/Xamarin.Android.Glide.GifDecoder.xml", + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.dll", + "lib/net6.0-android31.0/Xamarin.Android.Glide.GifDecoder.xml", + "xamarin.android.glide.gifdecoder.4.15.1.2.nupkg.sha512", + "xamarin.android.glide.gifdecoder.nuspec" + ] + }, + "Xamarin.AndroidX.Activity/1.7.2.1": { + "sha512": "l6Y0RnG1/6oh/v6QbdZLIv3HkG1DZkJCEGInCVttxZ2dZeHJXotBNDPlY62S9eksn9PppTe+pV6y36B2PaQcLw==", + "type": "package", + "path": "xamarin.androidx.activity/1.7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.activity.activity.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Activity.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Activity.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Activity.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.xml", + "xamarin.androidx.activity.1.7.2.1.nupkg.sha512", + "xamarin.androidx.activity.nuspec" + ] + }, + "Xamarin.AndroidX.Activity.Ktx/1.7.2.1": { + "sha512": "F33m+w8IN4ByAM1/8UqPNJ0yFOUjbaSTucn71g4D7D9skF8C/UDNeuh6wPPBJdYTq2DLmQ0n2jpa2n/gwHkURQ==", + "type": "package", + "path": "xamarin.androidx.activity.ktx/1.7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.activity.activity-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Activity.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Activity.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Activity.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Activity.Ktx.xml", + "xamarin.androidx.activity.ktx.1.7.2.1.nupkg.sha512", + "xamarin.androidx.activity.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Annotation/1.6.0.4": { + "sha512": "/HNE/+ijmVgi6BDf2YHp5Rd4QCYEFMIuFGZogOjJXVn5E10/peUSfrKcbeMpd3R0VfXN2Zw77W5PAHisiUBfFQ==", + "type": "package", + "path": "xamarin.androidx.annotation/1.6.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Annotation.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Annotation.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.targets", + "icon.png", + "jar/androidx.annotation.annotation.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.xml", + "xamarin.androidx.annotation.1.6.0.4.nupkg.sha512", + "xamarin.androidx.annotation.nuspec" + ] + }, + "Xamarin.AndroidX.Annotation.Experimental/1.3.1.1": { + "sha512": "OyHsy8Unzc339Tk0+ww/Yv16WJsxgSF3cBGpISPXawjMH1/711n3dh0tV/ViHIy59KKUuM5DAGuePolYcolrYQ==", + "type": "package", + "path": "xamarin.androidx.annotation.experimental/1.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.annotation.annotation-experimental.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Annotation.Experimental.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Annotation.Experimental.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Experimental.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Experimental.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Experimental.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Experimental.xml", + "xamarin.androidx.annotation.experimental.1.3.1.1.nupkg.sha512", + "xamarin.androidx.annotation.experimental.nuspec" + ] + }, + "Xamarin.AndroidX.Annotation.Jvm/1.6.0.2": { + "sha512": "YJY4CHf7/Vc0cgvLLKs6yWiK8NMrpQaSZpbbWytqyuHDL9AZk2qoDGvSSy5ronGdWyeBusDoZU0aCIqw6VP83A==", + "type": "package", + "path": "xamarin.androidx.annotation.jvm/1.6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Annotation.Jvm.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Annotation.Jvm.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.targets", + "icon.png", + "jar/androidx.annotation.annotation-jvm.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Jvm.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Jvm.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Annotation.Jvm.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Annotation.Jvm.xml", + "xamarin.androidx.annotation.jvm.1.6.0.2.nupkg.sha512", + "xamarin.androidx.annotation.jvm.nuspec" + ] + }, + "Xamarin.AndroidX.AppCompat/1.6.1.3": { + "sha512": "yyCNIJlZF5n2EOjrq13qZTJ0XLy3kSu0Ky0NMgjUElNDybAmB3yUlSwBl6qlt8MO4EemDLkUQLbIG7yW3UlO4Q==", + "type": "package", + "path": "xamarin.androidx.appcompat/1.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.appcompat.appcompat.aar", + "build/monoandroid12.0/Xamarin.AndroidX.AppCompat.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.AppCompat.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.xml", + "proguard/proguard.txt", + "xamarin.androidx.appcompat.1.6.1.3.nupkg.sha512", + "xamarin.androidx.appcompat.nuspec" + ] + }, + "Xamarin.AndroidX.AppCompat.AppCompatResources/1.6.1.3": { + "sha512": "ZoV7i7nduohXieh6Hq3/Jv1qCbqkbMBxxnG0NvH5taAOoP1ggLjhxARk4eib792n+2LjH+IlZzUsIS6zzU3pxg==", + "type": "package", + "path": "xamarin.androidx.appcompat.appcompatresources/1.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.appcompat.appcompat-resources.aar", + "build/monoandroid12.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.AppCompat.AppCompatResources.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.AppCompat.AppCompatResources.xml", + "xamarin.androidx.appcompat.appcompatresources.1.6.1.3.nupkg.sha512", + "xamarin.androidx.appcompat.appcompatresources.nuspec" + ] + }, + "Xamarin.AndroidX.Arch.Core.Common/2.2.0.3": { + "sha512": "dZav6gOHUZxgHZjScoVTxr6niSDIoNUc2HKNq3i8JA3nQCYH8fcmctquKR9Gs7V5cUErQKleB/BsIw6L4QrpLw==", + "type": "package", + "path": "xamarin.androidx.arch.core.common/2.2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Common.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Common.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.targets", + "icon.png", + "jar/androidx.arch.core.core-common.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Common.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Common.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Common.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Common.xml", + "xamarin.androidx.arch.core.common.2.2.0.3.nupkg.sha512", + "xamarin.androidx.arch.core.common.nuspec" + ] + }, + "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.3": { + "sha512": "jD/ai/amgaa4ZMPb+MlojNujJhrXstOndktD5pw8Z/71B28RjQ3iuKMFB/TbRadSleDqA5Yw0MYz2972gY+Low==", + "type": "package", + "path": "xamarin.androidx.arch.core.runtime/2.2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.arch.core.core-runtime.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Runtime.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Runtime.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Runtime.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Runtime.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Arch.Core.Runtime.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Arch.Core.Runtime.xml", + "xamarin.androidx.arch.core.runtime.2.2.0.3.nupkg.sha512", + "xamarin.androidx.arch.core.runtime.nuspec" + ] + }, + "Xamarin.AndroidX.Browser/1.5.0.3": { + "sha512": "ldwfIilT30WNt3nHokm9VYw9Hpunhb64d8szasTWfXSdB89F6DzSoNt7Nczb1xZ4coL98f7WqGNYzSj/IYnrJw==", + "type": "package", + "path": "xamarin.androidx.browser/1.5.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.browser.browser.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Browser.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Browser.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Browser.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Browser.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Browser.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Browser.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Browser.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Browser.xml", + "xamarin.androidx.browser.1.5.0.3.nupkg.sha512", + "xamarin.androidx.browser.nuspec" + ] + }, + "Xamarin.AndroidX.CardView/1.0.0.21": { + "sha512": "YpAM8m43GDAYId89SGd1C3WTAn+XavDJsb7hf3zvQU4CFwIOIOpSWsygL2h7AIcR4VDm8Sc1494wwGZcfs/mLA==", + "type": "package", + "path": "xamarin.androidx.cardview/1.0.0.21", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.cardview.cardview.aar", + "build/monoandroid12.0/Xamarin.AndroidX.CardView.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.CardView.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.CardView.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CardView.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.CardView.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.CardView.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.CardView.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.CardView.xml", + "xamarin.androidx.cardview.1.0.0.21.nupkg.sha512", + "xamarin.androidx.cardview.nuspec" + ] + }, + "Xamarin.AndroidX.Collection/1.2.0.9": { + "sha512": "EMUMOX4Tm7kvPl18A6PjPj/Q36TFjG+Xnd1m6klOBeIbFpFktW8+8SgVCkfHPY8Fjf+QdG72iPrF6sraGMhFKQ==", + "type": "package", + "path": "xamarin.androidx.collection/1.2.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Collection.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Collection.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Collection.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.targets", + "icon.png", + "jar/androidx.collection.collection.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.xml", + "xamarin.androidx.collection.1.2.0.9.nupkg.sha512", + "xamarin.androidx.collection.nuspec" + ] + }, + "Xamarin.AndroidX.Collection.Ktx/1.2.0.9": { + "sha512": "IWiTUj8r+GSLW/wqvk9vlHA8vIUEtxp6NcGJwDPuy0rVsAKHtBIFjmAXxxHSgVUf1/NXVSD0WMoK46qiTMNe3Q==", + "type": "package", + "path": "xamarin.androidx.collection.ktx/1.2.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Collection.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Collection.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.targets", + "icon.png", + "jar/androidx.collection.collection-ktx.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Collection.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Collection.Ktx.xml", + "xamarin.androidx.collection.ktx.1.2.0.9.nupkg.sha512", + "xamarin.androidx.collection.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Concurrent.Futures/1.1.0.14": { + "sha512": "wWantuArIhr4PwPZDoSRYjWLIlEhOWCLS/HlTdvI5V/cxmySTNGbKiRrKF2mkPqkxnXERHI0pEm//pIBP5pMVg==", + "type": "package", + "path": "xamarin.androidx.concurrent.futures/1.1.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Concurrent.Futures.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Concurrent.Futures.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.targets", + "icon.png", + "jar/androidx.concurrent.concurrent-futures.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Concurrent.Futures.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Concurrent.Futures.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Concurrent.Futures.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Concurrent.Futures.xml", + "xamarin.androidx.concurrent.futures.1.1.0.14.nupkg.sha512", + "xamarin.androidx.concurrent.futures.nuspec" + ] + }, + "Xamarin.AndroidX.ConstraintLayout/2.1.4.6": { + "sha512": "KNVeaBcZT1srqsYqbFtCEzYa+qqIHlD8GGmUU1F/0Ywbbu50b+eEGWR+6yGIlmVpqYhJz4ipkeFRNvUnrezxwA==", + "type": "package", + "path": "xamarin.androidx.constraintlayout/2.1.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.constraintlayout.constraintlayout.aar", + "build/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.xml", + "xamarin.androidx.constraintlayout.2.1.4.6.nupkg.sha512", + "xamarin.androidx.constraintlayout.nuspec" + ] + }, + "Xamarin.AndroidX.ConstraintLayout.Core/1.0.4.6": { + "sha512": "4uo39NRU2I1273kI5V38dNrEhkUbYoCAuh+btjZFppqeKmeC5HaA0eYtIy7X5C+bQw4kUcXrjAufzaAYpGxEnw==", + "type": "package", + "path": "xamarin.androidx.constraintlayout.core/1.0.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.Core.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.Core.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.targets", + "icon.png", + "jar/androidx.constraintlayout.constraintlayout-core.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.Core.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.Core.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ConstraintLayout.Core.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ConstraintLayout.Core.xml", + "xamarin.androidx.constraintlayout.core.1.0.4.6.nupkg.sha512", + "xamarin.androidx.constraintlayout.core.nuspec" + ] + }, + "Xamarin.AndroidX.CoordinatorLayout/1.2.0.7": { + "sha512": "WOyEZC6PN6K/fhHgyrZUfbWaUqUsO51Gspx5G4HIKU6COuWMuHRdEBtAVpXeeX5lGRF99c4veZsnrZ5aIadLLw==", + "type": "package", + "path": "xamarin.androidx.coordinatorlayout/1.2.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.coordinatorlayout.coordinatorlayout.aar", + "build/monoandroid12.0/Xamarin.AndroidX.CoordinatorLayout.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.CoordinatorLayout.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.CoordinatorLayout.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.CoordinatorLayout.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.CoordinatorLayout.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.CoordinatorLayout.xml", + "proguard/proguard.txt", + "xamarin.androidx.coordinatorlayout.1.2.0.7.nupkg.sha512", + "xamarin.androidx.coordinatorlayout.nuspec" + ] + }, + "Xamarin.AndroidX.Core/1.10.1.2": { + "sha512": "x2iziX875qVhFrn0gX6TXbVUqvlSkxQhvsrf8DZvh9+5woOreOBzYohLE3D9GeUgsqDLrWKME7rTT8gsFP6WMA==", + "type": "package", + "path": "xamarin.androidx.core/1.10.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.core.core.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Core.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Core.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Core.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.xml", + "proguard/proguard.txt", + "xamarin.androidx.core.1.10.1.2.nupkg.sha512", + "xamarin.androidx.core.nuspec" + ] + }, + "Xamarin.AndroidX.Core.Core.Ktx/1.10.1.2": { + "sha512": "sDSfqh1M3Qn025slH3s0sRFpf80msaGvizyZ98doj0sUDTjwzn6g+2aQXIg89WHYofmWisTokF4KQXZEPSaJbg==", + "type": "package", + "path": "xamarin.androidx.core.core.ktx/1.10.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.core.core-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Core.Core.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Core.Core.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.Core.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.Core.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Core.Core.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Core.Core.Ktx.xml", + "xamarin.androidx.core.core.ktx.1.10.1.2.nupkg.sha512", + "xamarin.androidx.core.core.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.CursorAdapter/1.0.0.19": { + "sha512": "9PywMx+fR4F3bmAZ/rF+3r82n+PqcWqPxiD2Sab5B6ZtznfOoC6idFK8fTBIV7KM6rKhunZ+6NVQctGhjOB10A==", + "type": "package", + "path": "xamarin.androidx.cursoradapter/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.cursoradapter.cursoradapter.aar", + "build/monoandroid12.0/Xamarin.AndroidX.CursorAdapter.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.CursorAdapter.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.CursorAdapter.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.CursorAdapter.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.CursorAdapter.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.CursorAdapter.xml", + "xamarin.androidx.cursoradapter.1.0.0.19.nupkg.sha512", + "xamarin.androidx.cursoradapter.nuspec" + ] + }, + "Xamarin.AndroidX.CustomView/1.1.0.18": { + "sha512": "0IF00QmgmD1f1k+57mx1nXJfD5SbYgt3RKSgnEDXCkcwgD3xYeesyWD/m0ws1l3JgcUAEX6RJ5I121GxHmfQ0g==", + "type": "package", + "path": "xamarin.androidx.customview/1.1.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.customview.customview.aar", + "build/monoandroid12.0/Xamarin.AndroidX.CustomView.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.CustomView.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.xml", + "xamarin.androidx.customview.1.1.0.18.nupkg.sha512", + "xamarin.androidx.customview.nuspec" + ] + }, + "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.5": { + "sha512": "gCorm5Akd4AC/X0DViVjHL5ttd+s9E+MVVCJmeLjPEGhMkGXq0hTv49AWQNYXLUC5nSbjhqzJlsrxB2O8Rp9Cg==", + "type": "package", + "path": "xamarin.androidx.customview.poolingcontainer/1.0.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.customview.customview-poolingcontainer.aar", + "build/monoandroid12.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.PoolingContainer.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.CustomView.PoolingContainer.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.CustomView.PoolingContainer.xml", + "xamarin.androidx.customview.poolingcontainer.1.0.0.5.nupkg.sha512", + "xamarin.androidx.customview.poolingcontainer.nuspec" + ] + }, + "Xamarin.AndroidX.DocumentFile/1.0.1.19": { + "sha512": "jTJnYBQa1A/m+aasHDznne5f2c3c2T7MzEfnqhmfnPvQfJspzwjJ/xhoaRoueCplZl+mF+HfvaqundBrPgVmWQ==", + "type": "package", + "path": "xamarin.androidx.documentfile/1.0.1.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.documentfile.documentfile.aar", + "build/monoandroid12.0/Xamarin.AndroidX.DocumentFile.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.DocumentFile.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.DocumentFile.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.DocumentFile.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.DocumentFile.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.DocumentFile.xml", + "xamarin.androidx.documentfile.1.0.1.19.nupkg.sha512", + "xamarin.androidx.documentfile.nuspec" + ] + }, + "Xamarin.AndroidX.DrawerLayout/1.2.0.3": { + "sha512": "DdShC1ZJc8SAZXdYpubdcdYGpiYnEpMhl/SE/wXGhFyCdAvCYdAbxtMTJTVd50nqQd3paezDWplDQ+qG0iJJKA==", + "type": "package", + "path": "xamarin.androidx.drawerlayout/1.2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.drawerlayout.drawerlayout.aar", + "build/monoandroid12.0/Xamarin.AndroidX.DrawerLayout.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.DrawerLayout.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.DrawerLayout.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.DrawerLayout.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.DrawerLayout.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.DrawerLayout.xml", + "xamarin.androidx.drawerlayout.1.2.0.3.nupkg.sha512", + "xamarin.androidx.drawerlayout.nuspec" + ] + }, + "Xamarin.AndroidX.DynamicAnimation/1.0.0.19": { + "sha512": "4MGtRa1UcG4PBF8L9XG+nwydiRgbJsHWfvRp9C+5qzxsyWXGC2kUSfhGQf2KRMRWOZwhNEIvAS3t5p25uWJ6HQ==", + "type": "package", + "path": "xamarin.androidx.dynamicanimation/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.dynamicanimation.dynamicanimation.aar", + "build/monoandroid12.0/Xamarin.AndroidX.DynamicAnimation.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.DynamicAnimation.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.DynamicAnimation.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.DynamicAnimation.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.DynamicAnimation.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.DynamicAnimation.xml", + "xamarin.androidx.dynamicanimation.1.0.0.19.nupkg.sha512", + "xamarin.androidx.dynamicanimation.nuspec" + ] + }, + "Xamarin.AndroidX.Emoji2/1.3.0.3": { + "sha512": "OJahpdPbmTonWZISNfhjmTCUYE2ejRAjhjtmRpLbpkKaGvOw4mu8d2xIxh/QWsAUVzZF8GAr82RcpQcSLpBPvg==", + "type": "package", + "path": "xamarin.androidx.emoji2/1.3.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.emoji2.emoji2.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Emoji2.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Emoji2.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.xml", + "xamarin.androidx.emoji2.1.3.0.3.nupkg.sha512", + "xamarin.androidx.emoji2.nuspec" + ] + }, + "Xamarin.AndroidX.Emoji2.ViewsHelper/1.3.0.3": { + "sha512": "Kf6HfCzhm0yxRDi6f335aVEU3CcX0Dc8axTIUNoCjSkayBeIdwp/32+810h4sgCVd8B8W8xkgf1s4AWAG6GX3Q==", + "type": "package", + "path": "xamarin.androidx.emoji2.viewshelper/1.3.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.emoji2.emoji2-views-helper.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Emoji2.ViewsHelper.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Emoji2.ViewsHelper.xml", + "xamarin.androidx.emoji2.viewshelper.1.3.0.3.nupkg.sha512", + "xamarin.androidx.emoji2.viewshelper.nuspec" + ] + }, + "Xamarin.AndroidX.ExifInterface/1.3.6.2": { + "sha512": "z3DcwLnHsCAie25dq+z0RizeM78TGVaH6uarLn+o1MFI2kuRImtaumX94fZlHpSmnrIlFtr15tDFfgPPbp1P5Q==", + "type": "package", + "path": "xamarin.androidx.exifinterface/1.3.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.exifinterface.exifinterface.aar", + "build/monoandroid12.0/Xamarin.AndroidX.ExifInterface.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ExifInterface.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.ExifInterface.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ExifInterface.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ExifInterface.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ExifInterface.xml", + "xamarin.androidx.exifinterface.1.3.6.2.nupkg.sha512", + "xamarin.androidx.exifinterface.nuspec" + ] + }, + "Xamarin.AndroidX.Fragment/1.6.0.1": { + "sha512": "jTmPdnB19srxmSkupfY/v4l4ibGwIUsxJvOfh0Hc4XGeZmXDlFwjKoTLCtWBD6bEzUsKM3vPE4k3ovWXUc1vDg==", + "type": "package", + "path": "xamarin.androidx.fragment/1.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.fragment.fragment.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Fragment.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Fragment.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.xml", + "proguard/proguard.txt", + "xamarin.androidx.fragment.1.6.0.1.nupkg.sha512", + "xamarin.androidx.fragment.nuspec" + ] + }, + "Xamarin.AndroidX.Fragment.Ktx/1.6.0.1": { + "sha512": "zPoZ3X/RhkWsYwD5ygm+N5LE+0w2r73H8VioJrd0XGLQjO0fPLf/trXT3ZTj/5nQ9grHO1C97ppa75rThzttSA==", + "type": "package", + "path": "xamarin.androidx.fragment.ktx/1.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.fragment.fragment-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Fragment.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Fragment.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Fragment.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Fragment.Ktx.xml", + "xamarin.androidx.fragment.ktx.1.6.0.1.nupkg.sha512", + "xamarin.androidx.fragment.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Interpolator/1.0.0.19": { + "sha512": "Da422r8HYMQToGsrFee6VF000mWpFRAjoiMVnmav/QKiHN9ZWYUXB7BaF3lMFh4iptz4l+cq8LD7b2DmleB3zg==", + "type": "package", + "path": "xamarin.androidx.interpolator/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.interpolator.interpolator.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Interpolator.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Interpolator.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Interpolator.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Interpolator.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Interpolator.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Interpolator.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Interpolator.xml", + "xamarin.androidx.interpolator.1.0.0.19.nupkg.sha512", + "xamarin.androidx.interpolator.nuspec" + ] + }, + "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.19": { + "sha512": "DsemAF1M7ARY9uO7xgGmuA3p8E5t1/fjC6D5S9XCMooOu40EHC3rbj7ltWWNp7RXXaXx7nLuB7viMKM0QZirVA==", + "type": "package", + "path": "xamarin.androidx.legacy.support.core.utils/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.legacy.legacy-support-core-utils.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.xml", + "xamarin.androidx.legacy.support.core.utils.1.0.0.19.nupkg.sha512", + "xamarin.androidx.legacy.support.core.utils.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.Common/2.6.1.3": { + "sha512": "rYJTunkPnKQYL9XZPhTNc3B1MlvaA9mFljm+r4uxD6pb5b7ku8CBLwzi/0u4Mc+hjDtKLsKLdvcDiM6NOJO56A==", + "type": "package", + "path": "xamarin.androidx.lifecycle.common/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Common.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Common.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.targets", + "icon.png", + "jar/androidx.lifecycle.lifecycle-common.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Common.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Common.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Common.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Common.xml", + "xamarin.androidx.lifecycle.common.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.common.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.LiveData/2.6.1.3": { + "sha512": "5qPYSV1wqtg71jEfkdcDbBSB2nP9An5vwvfhhvj3Nquz01HTuQ2NgSAAvRiizS7Ju8eMIBbwUxAB7muJ7zCjnA==", + "type": "package", + "path": "xamarin.androidx.lifecycle.livedata/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-livedata.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.xml", + "xamarin.androidx.lifecycle.livedata.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.livedata.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.6.1.3": { + "sha512": "6L3q9b/Ow6DN20Gbeyr4g+fh1bnAdSEqbXSWB0Dx7z1/1Df6/7EMeSgXVlrXR8JTxBpKL+1okV6SbgrC9zTs2Q==", + "type": "package", + "path": "xamarin.androidx.lifecycle.livedata.core/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-livedata-core.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.xml", + "xamarin.androidx.lifecycle.livedata.core.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.livedata.core.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.6.1.3": { + "sha512": "+MUKIHNS7K9I5j4wYqejTX7gexLKB2yMa8NNdDuutTqAEPs5A0S1fjhLgSo+hvgEk0OSXlSvgP/izvIkYRpu3g==", + "type": "package", + "path": "xamarin.androidx.lifecycle.livedata.core.ktx/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-livedata-core-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.xml", + "xamarin.androidx.lifecycle.livedata.core.ktx.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.livedata.core.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.Process/2.6.1.3": { + "sha512": "InReptHU8nL8MLtTX5fi9f33qkmoJ64sBNe6olEqkM30fyFccYDrYxgIq1rU6RA/vRWR4ki9X2T4Rqif0E2anA==", + "type": "package", + "path": "xamarin.androidx.lifecycle.process/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-process.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Process.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Process.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Process.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Process.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Process.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Process.xml", + "proguard/proguard.txt", + "xamarin.androidx.lifecycle.process.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.process.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.Runtime/2.6.1.3": { + "sha512": "0PvF3iWY2BcPKoz1I2HKfCFDGYn9qWFo3YPbx8Mmd9vFprpa3e1ZJmy22g5QhZg4+S2YchcvVQQUUI6BqO3pfw==", + "type": "package", + "path": "xamarin.androidx.lifecycle.runtime/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-runtime.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.xml", + "proguard/proguard.txt", + "xamarin.androidx.lifecycle.runtime.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.runtime.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.6.1.3": { + "sha512": "tbd9GPmJgMk7J5WE2qjwU7jIvfYh9Obg4fv4DFKcRKoOx+OJVueqGBwQRReO7fNSJD/hXR2w8/4ZIQj38Ia3zA==", + "type": "package", + "path": "xamarin.androidx.lifecycle.runtime.ktx/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-runtime-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.xml", + "xamarin.androidx.lifecycle.runtime.ktx.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.runtime.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.ViewModel/2.6.1.3": { + "sha512": "tHfChA/CAjoamDIZeZogIQCKbuxLwYGRty9cju4eTo2Cb4GCgRA+AuZb1vDTwjVeTIhUXLHuXdXZgv2Ll3I/dw==", + "type": "package", + "path": "xamarin.androidx.lifecycle.viewmodel/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-viewmodel.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.xml", + "proguard/proguard.txt", + "xamarin.androidx.lifecycle.viewmodel.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.viewmodel.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.6.1.3": { + "sha512": "Gxu3eXf5oRNUE7uf3dprt8e68rA5LMPJlWGwW2vvhlgmlKXHFxTRQS4qm6Lf1g8QBut8ABsjC13iP7UkIb2xNA==", + "type": "package", + "path": "xamarin.androidx.lifecycle.viewmodel.ktx/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-viewmodel-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.xml", + "xamarin.androidx.lifecycle.viewmodel.ktx.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.viewmodel.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.6.1.3": { + "sha512": "A1DxjoIV8E58F90uXjn1IyNvt6vcLYOTJ04uYkzWfAqNbWlnxwtXSJALMCZVE0rEdzvXdY+lAd4U7AuuYATtaA==", + "type": "package", + "path": "xamarin.androidx.lifecycle.viewmodelsavedstate/2.6.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.lifecycle.lifecycle-viewmodel-savedstate.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.xml", + "proguard/proguard.txt", + "xamarin.androidx.lifecycle.viewmodelsavedstate.2.6.1.3.nupkg.sha512", + "xamarin.androidx.lifecycle.viewmodelsavedstate.nuspec" + ] + }, + "Xamarin.AndroidX.Loader/1.1.0.19": { + "sha512": "7Hf0YUYfjPXw0z2tYQGzmw1lQcIO249ccgcf2JEkWn3nYxGCl/NpRoJZk7PwYhOcqJ6M0omrtggw1kuNzhw6hg==", + "type": "package", + "path": "xamarin.androidx.loader/1.1.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.loader.loader.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Loader.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Loader.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Loader.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Loader.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Loader.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Loader.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Loader.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Loader.xml", + "xamarin.androidx.loader.1.1.0.19.nupkg.sha512", + "xamarin.androidx.loader.nuspec" + ] + }, + "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.7": { + "sha512": "N/FAwnOrLEv8Yj7O/cEdsCxLY8xP4fN3b5oqmOLBhXS69EYPNRoeWGsblaN5aKWg2kNeZLQDGEb3uiT8pspFuA==", + "type": "package", + "path": "xamarin.androidx.localbroadcastmanager/1.1.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.localbroadcastmanager.localbroadcastmanager.aar", + "build/monoandroid12.0/Xamarin.AndroidX.LocalBroadcastManager.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.LocalBroadcastManager.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.LocalBroadcastManager.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.LocalBroadcastManager.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.LocalBroadcastManager.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.LocalBroadcastManager.xml", + "xamarin.androidx.localbroadcastmanager.1.1.0.7.nupkg.sha512", + "xamarin.androidx.localbroadcastmanager.nuspec" + ] + }, + "Xamarin.AndroidX.Navigation.Common/2.6.0.1": { + "sha512": "yvexhmcdzNRnA31jBk6N+nD5i972v7Bg1PL3+SWG2z7xRbMfEm0yySfFvQw9A7Xq4d/A4ri6rbjAt4G+DvdxIw==", + "type": "package", + "path": "xamarin.androidx.navigation.common/2.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.navigation.navigation-common.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Navigation.Common.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Navigation.Common.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Common.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Common.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Common.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Common.xml", + "proguard/proguard.txt", + "xamarin.androidx.navigation.common.2.6.0.1.nupkg.sha512", + "xamarin.androidx.navigation.common.nuspec" + ] + }, + "Xamarin.AndroidX.Navigation.Fragment/2.6.0.1": { + "sha512": "mOwYwgM7uUwjkLlybiWZEeQ7qOIS5gGMTIoNaNg1nIHBIgFE/WiqNkpaVkiIcAYB1vJSrUiW10E9gFspXV+h9Q==", + "type": "package", + "path": "xamarin.androidx.navigation.fragment/2.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.navigation.navigation-fragment.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Navigation.Fragment.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Navigation.Fragment.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Fragment.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Fragment.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Fragment.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Fragment.xml", + "xamarin.androidx.navigation.fragment.2.6.0.1.nupkg.sha512", + "xamarin.androidx.navigation.fragment.nuspec" + ] + }, + "Xamarin.AndroidX.Navigation.Runtime/2.6.0.1": { + "sha512": "VqMublXuUU6makKBTguZn5qj8kReq+oUCfoReqH5PCeV2P//mzYz0siGWxySI6CLADlqrxaXIxXRD7mUlqd4AA==", + "type": "package", + "path": "xamarin.androidx.navigation.runtime/2.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.navigation.navigation-runtime.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Navigation.Runtime.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Navigation.Runtime.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Runtime.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Runtime.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.Runtime.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.Runtime.xml", + "xamarin.androidx.navigation.runtime.2.6.0.1.nupkg.sha512", + "xamarin.androidx.navigation.runtime.nuspec" + ] + }, + "Xamarin.AndroidX.Navigation.UI/2.6.0.1": { + "sha512": "M7peV9+x6nMtaavBSJIjfZcKcjYnhAoNkmBFxNlC1lhREtGnG4MCFcVFuw3fpzGxFTkV4R0XS5+SYkshQznAjQ==", + "type": "package", + "path": "xamarin.androidx.navigation.ui/2.6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.navigation.navigation-ui.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Navigation.UI.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Navigation.UI.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.UI.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.UI.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Navigation.UI.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Navigation.UI.xml", + "proguard/proguard.txt", + "xamarin.androidx.navigation.ui.2.6.0.1.nupkg.sha512", + "xamarin.androidx.navigation.ui.nuspec" + ] + }, + "Xamarin.AndroidX.Print/1.0.0.19": { + "sha512": "KNTAAIImUMRm/NGrJu/TY1lfFud9pUSlB1iYWVqSnkpks51oeqhFKi6Q0o8MGMl4b71heCmlQqSTe0oG0KC9xA==", + "type": "package", + "path": "xamarin.androidx.print/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.print.print.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Print.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Print.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Print.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Print.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Print.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Print.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Print.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Print.xml", + "xamarin.androidx.print.1.0.0.19.nupkg.sha512", + "xamarin.androidx.print.nuspec" + ] + }, + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.3.1.2": { + "sha512": "FrbcermsOp4IjhhiTw44yRs/GuS1IFFhKw/8DTAgPfqG83ioChdTN2qnkaXqkCTOrmPnnOPbUUaklkhwC8RAqQ==", + "type": "package", + "path": "xamarin.androidx.profileinstaller.profileinstaller/1.3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.profileinstaller.profileinstaller.aar", + "build/monoandroid12.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.xml", + "xamarin.androidx.profileinstaller.profileinstaller.1.3.1.2.nupkg.sha512", + "xamarin.androidx.profileinstaller.profileinstaller.nuspec" + ] + }, + "Xamarin.AndroidX.RecyclerView/1.3.0.3": { + "sha512": "1L5DNMMKJi/ui5pd9EWchSFJwcGKKqs1XyvERPKq/VAKOcA5Pi4psevGU2T2OdX4+56TXj4xEMVzoB//IVLoUw==", + "type": "package", + "path": "xamarin.androidx.recyclerview/1.3.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.recyclerview.recyclerview.aar", + "build/monoandroid12.0/Xamarin.AndroidX.RecyclerView.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.RecyclerView.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.RecyclerView.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.RecyclerView.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.RecyclerView.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.RecyclerView.xml", + "proguard/proguard.txt", + "xamarin.androidx.recyclerview.1.3.0.3.nupkg.sha512", + "xamarin.androidx.recyclerview.nuspec" + ] + }, + "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.7": { + "sha512": "SgQmcJm3sn96jwMyQvj0Dohqlk/PXGqw19IRgsZ1s8Roexp3Q0RbfY0pCDyVjeQhM2vd48fpQ7nCq+dhELdy4A==", + "type": "package", + "path": "xamarin.androidx.resourceinspection.annotation/1.0.1.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets", + "icon.png", + "jar/androidx.resourceinspection.resourceinspection-annotation.jar", + "lib/monoandroid12.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ResourceInspection.Annotation.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ResourceInspection.Annotation.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ResourceInspection.Annotation.xml", + "xamarin.androidx.resourceinspection.annotation.1.0.1.7.nupkg.sha512", + "xamarin.androidx.resourceinspection.annotation.nuspec" + ] + }, + "Xamarin.AndroidX.SavedState/1.2.1.3": { + "sha512": "dn4anhMO24VVIW80Vb/0b9z4vCz21RV13NwS6mTnl428gN1EbnSaGDew60z2d9/gtAKfqHhrtC/WRLpiKMa1ag==", + "type": "package", + "path": "xamarin.androidx.savedstate/1.2.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.savedstate.savedstate.aar", + "build/monoandroid12.0/Xamarin.AndroidX.SavedState.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.SavedState.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.xml", + "proguard/proguard.txt", + "xamarin.androidx.savedstate.1.2.1.3.nupkg.sha512", + "xamarin.androidx.savedstate.nuspec" + ] + }, + "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.3": { + "sha512": "0hd/irkAeOYQz8i9EmYNelfFQBxUips094zvsFX+x10LddxjWgZWV1yR9dGyyXTePm9R3m/QuElZeP7vCsi75w==", + "type": "package", + "path": "xamarin.androidx.savedstate.savedstate.ktx/1.2.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.savedstate.savedstate-ktx.aar", + "build/monoandroid12.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.xml", + "xamarin.androidx.savedstate.savedstate.ktx.1.2.1.3.nupkg.sha512", + "xamarin.androidx.savedstate.savedstate.ktx.nuspec" + ] + }, + "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.1-alpha06": { + "sha512": "SWJBpXe/ubvc2AqD+4Kw26dh8m3QphOdikjBjPC+0McWy9NxuEcrRy75suWVdmvsyrvbAMibHlATKR57oHtKLA==", + "type": "package", + "path": "xamarin.androidx.security.securitycrypto/1.1.0.1-alpha06", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.security.security-crypto.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Security.SecurityCrypto.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Security.SecurityCrypto.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Security.SecurityCrypto.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Security.SecurityCrypto.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Security.SecurityCrypto.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Security.SecurityCrypto.xml", + "xamarin.androidx.security.securitycrypto.1.1.0.1-alpha06.nupkg.sha512", + "xamarin.androidx.security.securitycrypto.nuspec" + ] + }, + "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.7": { + "sha512": "c3uhOYZBWj4WA32HkVYYr6wkLUoZEIcSRtmes+ErpVvVuWj8My9PwUhvBpBuub3/aahXslrRMKPZBAFfbGFq+A==", + "type": "package", + "path": "xamarin.androidx.slidingpanelayout/1.2.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.slidingpanelayout.slidingpanelayout.aar", + "build/monoandroid12.0/Xamarin.AndroidX.SlidingPaneLayout.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.SlidingPaneLayout.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.SlidingPaneLayout.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.SlidingPaneLayout.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.SlidingPaneLayout.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.SlidingPaneLayout.xml", + "xamarin.androidx.slidingpanelayout.1.2.0.7.nupkg.sha512", + "xamarin.androidx.slidingpanelayout.nuspec" + ] + }, + "Xamarin.AndroidX.Startup.StartupRuntime/1.1.1.7": { + "sha512": "pHsJixFO788r1uuxoHW+XdeL+YwpzoojOTJQNL2u/EsrOU18T7MnOkvLdA1DRScj5EM7rbXhJ/kGMpTPRTmvpA==", + "type": "package", + "path": "xamarin.androidx.startup.startupruntime/1.1.1.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.startup.startup-runtime.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Startup.StartupRuntime.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Startup.StartupRuntime.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Startup.StartupRuntime.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Startup.StartupRuntime.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Startup.StartupRuntime.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Startup.StartupRuntime.xml", + "proguard/proguard.txt", + "xamarin.androidx.startup.startupruntime.1.1.1.7.nupkg.sha512", + "xamarin.androidx.startup.startupruntime.nuspec" + ] + }, + "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.14": { + "sha512": "8ldVC9+hZb8onj0C1tZ4adaqIw0tT91m0wkfgDC2NFZdlEVQCFatnl83oB3HCCfUvQ/RdqyZwwGkwkCKMG6jFQ==", + "type": "package", + "path": "xamarin.androidx.swiperefreshlayout/1.1.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.swiperefreshlayout.swiperefreshlayout.aar", + "build/monoandroid12.0/Xamarin.AndroidX.SwipeRefreshLayout.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.SwipeRefreshLayout.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.SwipeRefreshLayout.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.SwipeRefreshLayout.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.SwipeRefreshLayout.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.SwipeRefreshLayout.xml", + "xamarin.androidx.swiperefreshlayout.1.1.0.14.nupkg.sha512", + "xamarin.androidx.swiperefreshlayout.nuspec" + ] + }, + "Xamarin.AndroidX.Tracing.Tracing/1.1.0.6": { + "sha512": "zoDJWC4XtgQTm62hGxXSdbVvK4N8E1R2rFkqRwC9C9x0BDb9Geetei6oelta4p3/qtT8NQnl2qFRH6kLjv12cA==", + "type": "package", + "path": "xamarin.androidx.tracing.tracing/1.1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.tracing.tracing.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Tracing.Tracing.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Tracing.Tracing.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Tracing.Tracing.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Tracing.Tracing.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Tracing.Tracing.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Tracing.Tracing.xml", + "xamarin.androidx.tracing.tracing.1.1.0.6.nupkg.sha512", + "xamarin.androidx.tracing.tracing.nuspec" + ] + }, + "Xamarin.AndroidX.Transition/1.4.1.12": { + "sha512": "G+dGc1tfO+w7wulQfYngWA0RF3WFMZ62ojhkvzeLR/msG0l+E+Sv/nN7LDiPhTm1/WavVnLHdLZa83jiXLQBkg==", + "type": "package", + "path": "xamarin.androidx.transition/1.4.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.transition.transition.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Transition.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Transition.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Transition.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Transition.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Transition.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Transition.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Transition.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Transition.xml", + "proguard/proguard.txt", + "xamarin.androidx.transition.1.4.1.12.nupkg.sha512", + "xamarin.androidx.transition.nuspec" + ] + }, + "Xamarin.AndroidX.VectorDrawable/1.1.0.19": { + "sha512": "UaSM/DJY4KET/QW3a64LwCX43iaPZvBy2ZV7M+QgOydYPsDPvErOIhfrVRlkbwt+K2vnpodG1qUPoltZhEtCHQ==", + "type": "package", + "path": "xamarin.androidx.vectordrawable/1.1.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.vectordrawable.vectordrawable.aar", + "build/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.xml", + "xamarin.androidx.vectordrawable.1.1.0.19.nupkg.sha512", + "xamarin.androidx.vectordrawable.nuspec" + ] + }, + "Xamarin.AndroidX.VectorDrawable.Animated/1.1.0.19": { + "sha512": "Wdzu3oGzwuLYZZTBhmUnXjbX4esbvohTPyQeJfu9GBA6Pw4OdhPHO7Kt+lsCvQqkqivMDl03+ZhReZ0i6uh//A==", + "type": "package", + "path": "xamarin.androidx.vectordrawable.animated/1.1.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.vectordrawable.vectordrawable-animated.aar", + "build/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.Animated.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.Animated.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.Animated.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.Animated.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.VectorDrawable.Animated.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.VectorDrawable.Animated.xml", + "proguard/proguard.txt", + "xamarin.androidx.vectordrawable.animated.1.1.0.19.nupkg.sha512", + "xamarin.androidx.vectordrawable.animated.nuspec" + ] + }, + "Xamarin.AndroidX.VersionedParcelable/1.1.1.19": { + "sha512": "3alRNY7OrspVMyHpBu0OBVgPCIXTA/0pNdLBdxGmhvOJysauk+nHRvOLBfpOunFLouDdb3exE4l1IOMAp/XbSg==", + "type": "package", + "path": "xamarin.androidx.versionedparcelable/1.1.1.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.versionedparcelable.versionedparcelable.aar", + "build/monoandroid12.0/Xamarin.AndroidX.VersionedParcelable.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.VersionedParcelable.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.VersionedParcelable.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.VersionedParcelable.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.VersionedParcelable.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.VersionedParcelable.xml", + "proguard/proguard.txt", + "xamarin.androidx.versionedparcelable.1.1.1.19.nupkg.sha512", + "xamarin.androidx.versionedparcelable.nuspec" + ] + }, + "Xamarin.AndroidX.ViewPager/1.0.0.19": { + "sha512": "430vL2ULM6T7p/5Y80/S6SzgzpwlclFc82KIaYvlDNJTP7fSM7HCriYEO7Mb31+5G8iyDdHG/8NEUH3kAW5JXg==", + "type": "package", + "path": "xamarin.androidx.viewpager/1.0.0.19", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.viewpager.viewpager.aar", + "build/monoandroid12.0/Xamarin.AndroidX.ViewPager.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ViewPager.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager.xml", + "xamarin.androidx.viewpager.1.0.0.19.nupkg.sha512", + "xamarin.androidx.viewpager.nuspec" + ] + }, + "Xamarin.AndroidX.ViewPager2/1.0.0.21": { + "sha512": "WU1stTsqA/kYMZWF6vYUxbiblpadDg7XGQv8eXcClj8RNV8Kv/Lf17JHGdE0LWhuuwRultXYiAhIpFqcrZ8/JQ==", + "type": "package", + "path": "xamarin.androidx.viewpager2/1.0.0.21", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.viewpager2.viewpager2.aar", + "build/monoandroid12.0/Xamarin.AndroidX.ViewPager2.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.ViewPager2.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager2.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager2.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.ViewPager2.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.ViewPager2.xml", + "xamarin.androidx.viewpager2.1.0.0.21.nupkg.sha512", + "xamarin.androidx.viewpager2.nuspec" + ] + }, + "Xamarin.AndroidX.Window/1.1.0.1": { + "sha512": "KCw4B0HXOjgx71C5zcEYZFODG0OQiDk3E0T8B5AfU/+8/sfLPQ6QnDqVS9RSnQEu/vUtDlw9OShx+45eBUE75w==", + "type": "package", + "path": "xamarin.androidx.window/1.1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.window.window.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Window.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Window.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Window.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.xml", + "proguard/proguard.txt", + "xamarin.androidx.window.1.1.0.1.nupkg.sha512", + "xamarin.androidx.window.nuspec" + ] + }, + "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.1": { + "sha512": "m3aFCnHLVpGH2aohubPZHV6c6WBio1ktOA+bfdETVYr+rzkioCbqHQFxLoQlMER01fGHw9GSFOoPvTcq5n1H/g==", + "type": "package", + "path": "xamarin.androidx.window.extensions.core.core/1.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/androidx.window.extensions.core.core.aar", + "build/monoandroid12.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets", + "build/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets", + "buildTransitive/monoandroid12.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets", + "buildTransitive/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb", + "lib/monoandroid12.0/Xamarin.AndroidX.Window.Extensions.Core.Core.xml", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb", + "lib/net6.0-android31.0/Xamarin.AndroidX.Window.Extensions.Core.Core.xml", + "proguard/proguard.txt", + "xamarin.androidx.window.extensions.core.core.1.0.0.1.nupkg.sha512", + "xamarin.androidx.window.extensions.core.core.nuspec" + ] + }, + "Xamarin.Google.Android.Material/1.9.0.2": { + "sha512": "sLmA5Kff8m4CjjUqYc8SZKjXpOF9xIAFJc2eNNfd8T0NY9bb6tbl6YL2rjUxCNI1qfs4qHaDHm/cDrEwI5DGfQ==", + "type": "package", + "path": "xamarin.google.android.material/1.9.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "aar/com.google.android.material.material.aar", + "build/monoandroid12.0/Xamarin.Google.Android.Material.targets", + "build/net6.0-android31.0/Xamarin.Google.Android.Material.targets", + "buildTransitive/monoandroid12.0/Xamarin.Google.Android.Material.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Google.Android.Material.targets", + "icon.png", + "lib/monoandroid12.0/Xamarin.Google.Android.Material.dll", + "lib/monoandroid12.0/Xamarin.Google.Android.Material.pdb", + "lib/monoandroid12.0/Xamarin.Google.Android.Material.xml", + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.dll", + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.pdb", + "lib/net6.0-android31.0/Xamarin.Google.Android.Material.xml", + "proguard/proguard.txt", + "xamarin.google.android.material.1.9.0.2.nupkg.sha512", + "xamarin.google.android.material.nuspec" + ] + }, + "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.9": { + "sha512": "gb1XRhBx/okc1dbUucHZ+nC0nrH/6kUEXyjoyOJfWM9TejovH70dgk4YnV7xPx2z1QvFmEh787mMwKdeFVcISQ==", + "type": "package", + "path": "xamarin.google.code.findbugs.jsr305/3.0.2.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "lib/monoandroid12.0/Jsr305Binding.dll", + "lib/monoandroid12.0/Jsr305Binding.xml", + "lib/net6.0-android31.0/Jsr305Binding.aar", + "lib/net6.0-android31.0/Jsr305Binding.dll", + "lib/net6.0-android31.0/Jsr305Binding.xml", + "xamarin.google.code.findbugs.jsr305.3.0.2.9.nupkg.sha512", + "xamarin.google.code.findbugs.jsr305.nuspec" + ] + }, + "Xamarin.Google.Crypto.Tink.Android/1.10.0": { + "sha512": "EyBbt3dWQv20mTnvx2cTCVIj021G4HbhwsWAHg/bofQrE6IX2o9DJA12F3BrQ4wihBrsOrgyKw5bsBCaUq+cfA==", + "type": "package", + "path": "xamarin.google.crypto.tink.android/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "lib/monoandroid12.0/Xamarin.Google.Crypto.Tink.Android.dll", + "lib/monoandroid12.0/Xamarin.Google.Crypto.Tink.Android.xml", + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.aar", + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.dll", + "lib/net6.0-android31.0/Xamarin.Google.Crypto.Tink.Android.xml", + "xamarin.google.crypto.tink.android.1.10.0.nupkg.sha512", + "xamarin.google.crypto.tink.android.nuspec" + ] + }, + "Xamarin.Google.ErrorProne.Annotations/2.20.0.1": { + "sha512": "B4R+PS80jJrfHu41fWgtzwZSWPdBrivIZdgDDHXebB4U934pyn/veXhzgLeY/jaYmnZhGfUEWmkiYKlPd+DBXg==", + "type": "package", + "path": "xamarin.google.errorprone.annotations/2.20.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "lib/monoandroid12.0/Xamarin.Google.ErrorProne.Annotations.dll", + "lib/monoandroid12.0/Xamarin.Google.ErrorProne.Annotations.xml", + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.aar", + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.dll", + "lib/net6.0-android31.0/Xamarin.Google.ErrorProne.Annotations.xml", + "xamarin.google.errorprone.annotations.2.20.0.1.nupkg.sha512", + "xamarin.google.errorprone.annotations.nuspec" + ] + }, + "Xamarin.Google.Guava.ListenableFuture/1.0.0.14": { + "sha512": "0W+lRs9VxDl212cXzo5vMgtwwH+IDnv6uYFYTxiIWbu/JmVmKcyTgJXmW1tD7lRbazXmwIllUvs1CUMLWE8D3A==", + "type": "package", + "path": "xamarin.google.guava.listenablefuture/1.0.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Google.Guava.ListenableFuture.targets", + "build/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets", + "buildTransitive/monoandroid12.0/Xamarin.Google.Guava.ListenableFuture.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.targets", + "jar/guava-listenablefuture.jar", + "lib/monoandroid12.0/Xamarin.Google.Guava.ListenableFuture.dll", + "lib/monoandroid12.0/Xamarin.Google.Guava.ListenableFuture.xml", + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.dll", + "lib/net6.0-android31.0/Xamarin.Google.Guava.ListenableFuture.xml", + "xamarin.google.guava.listenablefuture.1.0.0.14.nupkg.sha512", + "xamarin.google.guava.listenablefuture.nuspec" + ] + }, + "Xamarin.Jetbrains.Annotations/24.0.1.3": { + "sha512": "OdnUv38LEPm0cDGtjrmxESzW6JK0qqUag+/BA6E+nsWUFkQmPsoP7bObK7yoX66aR0qz0PY4TFlFDvWl7tUrUg==", + "type": "package", + "path": "xamarin.jetbrains.annotations/24.0.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Jetbrains.Annotations.targets", + "build/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets", + "buildTransitive/monoandroid12.0/Xamarin.Jetbrains.Annotations.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Jetbrains.Annotations.targets", + "jar/org.jetbrains.annotations-24.0.1.jar", + "lib/monoandroid12.0/Xamarin.Jetbrains.Annotations.dll", + "lib/monoandroid12.0/Xamarin.Jetbrains.Annotations.xml", + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.dll", + "lib/net6.0-android31.0/Xamarin.Jetbrains.Annotations.xml", + "xamarin.jetbrains.annotations.24.0.1.3.nupkg.sha512", + "xamarin.jetbrains.annotations.nuspec" + ] + }, + "Xamarin.Kotlin.StdLib/1.9.0.1": { + "sha512": "HdmBF6aN0AEeD8XBx47CitGjzO7QAVl5vFFnifxfzE5SaNXd0O/Rd23kcyYpLBnUPLClx/ZlMguuvoNVlpwqDw==", + "type": "package", + "path": "xamarin.kotlin.stdlib/1.9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Kotlin.StdLib.targets", + "build/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets", + "buildTransitive/monoandroid12.0/Xamarin.Kotlin.StdLib.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.targets", + "jar/org.jetbrains.kotlin.kotlin-stdlib-1.9.0.jar", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.dll", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.xml", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.dll", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.xml", + "xamarin.kotlin.stdlib.1.9.0.1.nupkg.sha512", + "xamarin.kotlin.stdlib.nuspec" + ] + }, + "Xamarin.Kotlin.StdLib.Common/1.9.0.1": { + "sha512": "+xhwrZbZ0xJnYOOLZ1TJwTpJlcJhrRxXPzHfQT8bA2qr3fn8YeMDxW1n1vcTU4Rxn3b6/jXp9gocxUhT9/fWqA==", + "type": "package", + "path": "xamarin.kotlin.stdlib.common/1.9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Kotlin.StdLib.Common.targets", + "build/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets", + "buildTransitive/monoandroid12.0/Xamarin.Kotlin.StdLib.Common.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.targets", + "jar/org.jetbrains.kotlin.kotlin-stdlib-common-1.9.0.jar", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Common.dll", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Common.xml", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.dll", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Common.xml", + "xamarin.kotlin.stdlib.common.1.9.0.1.nupkg.sha512", + "xamarin.kotlin.stdlib.common.nuspec" + ] + }, + "Xamarin.Kotlin.StdLib.Jdk7/1.9.0.1": { + "sha512": "Gg6NcBloxgqnzVH9UbaGeYlYqwFKLNjbvnMfp+t8I8UDWjZGwxtxBLyGY9lQABbGlSzpWqx1Z9Gspa5G+zD/RA==", + "type": "package", + "path": "xamarin.kotlin.stdlib.jdk7/1.9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk7.targets", + "build/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets", + "buildTransitive/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk7.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.targets", + "jar/org.jetbrains.kotlin.kotlin-stdlib-jdk7-1.9.0.jar", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk7.dll", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk7.xml", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.dll", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk7.xml", + "xamarin.kotlin.stdlib.jdk7.1.9.0.1.nupkg.sha512", + "xamarin.kotlin.stdlib.jdk7.nuspec" + ] + }, + "Xamarin.Kotlin.StdLib.Jdk8/1.9.0.1": { + "sha512": "c+7TcDXsA6uIOLyakIvmRwDnbhsEw/tUFIsL38GSUNGfZ9bq5iGpIm9cy7HZdnArhM+5uKmyF/qqv5LaD6Ss9A==", + "type": "package", + "path": "xamarin.kotlin.stdlib.jdk8/1.9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk8.targets", + "build/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets", + "buildTransitive/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk8.targets", + "buildTransitive/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.targets", + "jar/org.jetbrains.kotlin.kotlin-stdlib-jdk8-1.9.0.jar", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk8.dll", + "lib/monoandroid12.0/Xamarin.Kotlin.StdLib.Jdk8.xml", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.dll", + "lib/net6.0-android31.0/Xamarin.Kotlin.StdLib.Jdk8.xml", + "xamarin.kotlin.stdlib.jdk8.1.9.0.1.nupkg.sha512", + "xamarin.kotlin.stdlib.jdk8.nuspec" + ] + }, + "Xamarin.KotlinX.Coroutines.Android/1.7.2.1": { + "sha512": "KypTf0q2bV6fS8joXxaDLizDIH87huVN4n2c97OHgOAkZLCiYZmnZA45/fZrBSdos2IChHqv1wb53WKkSPCUDA==", + "type": "package", + "path": "xamarin.kotlinx.coroutines.android/1.7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.KotlinX.Coroutines.Android.targets", + "build/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets", + "buildTransitive/monoandroid12.0/Xamarin.KotlinX.Coroutines.Android.targets", + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.targets", + "jar/org.jetbrains.kotlinx.kotlinx-coroutines-android-1.7.2.jar", + "lib/monoandroid12.0/Xamarin.KotlinX.Coroutines.Android.dll", + "lib/monoandroid12.0/Xamarin.KotlinX.Coroutines.Android.xml", + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.dll", + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Android.xml", + "xamarin.kotlinx.coroutines.android.1.7.2.1.nupkg.sha512", + "xamarin.kotlinx.coroutines.android.nuspec" + ] + }, + "Xamarin.KotlinX.Coroutines.Core.Jvm/1.7.2.1": { + "sha512": "kBILI2LXI43pBEVvoNmHkr4NbDpXmUCZPrL3o8kOlpS3lbVpQx797wgd2l2XAos113XfN1ySbbn7gqZBT7TIAg==", + "type": "package", + "path": "xamarin.kotlinx.coroutines.core.jvm/1.7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES.txt", + "build/monoandroid12.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets", + "build/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets", + "buildTransitive/monoandroid12.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets", + "buildTransitive/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.targets", + "jar/org.jetbrains.kotlinx.kotlinx-coroutines-core-jvm-1.7.2.jar", + "lib/monoandroid12.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll", + "lib/monoandroid12.0/Xamarin.KotlinX.Coroutines.Core.Jvm.xml", + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll", + "lib/net6.0-android31.0/Xamarin.KotlinX.Coroutines.Core.Jvm.xml", + "xamarin.kotlinx.coroutines.core.jvm.1.7.2.1.nupkg.sha512", + "xamarin.kotlinx.coroutines.core.jvm.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0-android34.0": [ + "Microsoft.Extensions.Logging.Debug >= 8.0.0", + "Microsoft.Maui.Controls >= 8.0.82", + "Microsoft.Maui.Controls.Compatibility >= 8.0.82", + "Microsoft.NET.ILLink.Tasks >= 8.0.10" + ], + "net8.0-ios18.0": [ + "Microsoft.Extensions.Logging.Debug >= 8.0.0", + "Microsoft.Maui.Controls >= 8.0.82", + "Microsoft.Maui.Controls.Compatibility >= 8.0.82", + "Microsoft.NET.ILLink.Tasks >= 8.0.10" + ], + "net8.0-maccatalyst18.0": [ + "Microsoft.Extensions.Logging.Debug >= 8.0.0", + "Microsoft.Maui.Controls >= 8.0.82", + "Microsoft.Maui.Controls.Compatibility >= 8.0.82", + "Microsoft.NET.ILLink.Tasks >= 8.0.10" + ], + "net8.0-windows10.0.19041": [ + "Microsoft.Extensions.Logging.Debug >= 8.0.0", + "Microsoft.Maui.Controls >= 8.0.82", + "Microsoft.Maui.Controls.Compatibility >= 8.0.82" + ] + }, + "packageFolders": { + "C:\\Users\\paulw\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj", + "projectName": "MauiApp1", + "projectPath": "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj", + "packagesPath": "C:\\Users\\paulw\\.nuget\\packages\\", + "outputPath": "D:\\Github\\robobin\\App\\MauiApp1\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\paulw\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-android", + "net8.0-ios", + "net8.0-maccatalyst", + "net8.0-windows10.0.19041.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-android34.0": { + "targetAlias": "net8.0-android", + "projectReferences": {} + }, + "net8.0-ios18.0": { + "targetAlias": "net8.0-ios", + "projectReferences": {} + }, + "net8.0-maccatalyst18.0": { + "targetAlias": "net8.0-maccatalyst", + "projectReferences": {} + }, + "net8.0-windows10.0.19041": { + "targetAlias": "net8.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-android34.0": { + "targetAlias": "net8.0-android", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.Android": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-ios18.0": { + "targetAlias": "net8.0-ios", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.iOS": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-maccatalyst18.0": { + "targetAlias": "net8.0-maccatalyst", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + } + }, + "imports": [ + "xamarinios10", + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.MacCatalyst": { + "privateAssets": "all" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + }, + "net8.0-windows10.0.19041": { + "targetAlias": "net8.0-windows10.0.19041.0", + "dependencies": { + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Microsoft.Maui.Controls": { + "target": "Package", + "version": "[8.0.82, )" + }, + "Microsoft.Maui.Controls.Compatibility": { + "target": "Package", + "version": "[8.0.82, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.44, 10.0.19041.44]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "android-arm": { + "#import": [] + }, + "android-arm64": { + "#import": [] + }, + "android-x64": { + "#import": [] + }, + "android-x86": { + "#import": [] + }, + "iossimulator-x64": { + "#import": [] + }, + "maccatalyst-x64": { + "#import": [] + }, + "win10-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/App/MauiApp1/obj/project.nuget.cache b/App/MauiApp1/obj/project.nuget.cache new file mode 100644 index 0000000000000000000000000000000000000000..bc6de8363b6abaf69af7191531a15eafae75cc68 --- /dev/null +++ b/App/MauiApp1/obj/project.nuget.cache @@ -0,0 +1,118 @@ +{ + "version": 2, + "dgSpecHash": "ktwI6CfAPvg=", + "success": true, + "projectFilePath": "D:\\Github\\robobin\\App\\MauiApp1\\MauiApp1.csproj", + "expectedPackageFiles": [ + "C:\\Users\\paulw\\.nuget\\packages\\googlegson\\2.10.1.4\\googlegson.2.10.1.4.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.logging.debug\\8.0.0\\microsoft.extensions.logging.debug.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.graphics.win2d\\1.2.0\\microsoft.graphics.win2d.1.2.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.io.recyclablememorystream\\3.0.1\\microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.controls\\8.0.82\\microsoft.maui.controls.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.controls.build.tasks\\8.0.82\\microsoft.maui.controls.build.tasks.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.controls.compatibility\\8.0.82\\microsoft.maui.controls.compatibility.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.controls.core\\8.0.82\\microsoft.maui.controls.core.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.controls.xaml\\8.0.82\\microsoft.maui.controls.xaml.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.core\\8.0.82\\microsoft.maui.core.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.essentials\\8.0.82\\microsoft.maui.essentials.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.graphics\\8.0.82\\microsoft.maui.graphics.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.graphics.win2d.winui.desktop\\8.0.82\\microsoft.maui.graphics.win2d.winui.desktop.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.maui.resizetizer\\8.0.82\\microsoft.maui.resizetizer.8.0.82.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.10\\microsoft.net.illink.tasks.8.0.10.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22621.756\\microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.windowsappsdk\\1.5.240627000\\microsoft.windowsappsdk.1.5.240627000.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.android.glide\\4.15.1.2\\xamarin.android.glide.4.15.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.android.glide.annotations\\4.15.1.2\\xamarin.android.glide.annotations.4.15.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.android.glide.disklrucache\\4.15.1.2\\xamarin.android.glide.disklrucache.4.15.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.android.glide.gifdecoder\\4.15.1.2\\xamarin.android.glide.gifdecoder.4.15.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.activity\\1.7.2.1\\xamarin.androidx.activity.1.7.2.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.activity.ktx\\1.7.2.1\\xamarin.androidx.activity.ktx.1.7.2.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.annotation\\1.6.0.4\\xamarin.androidx.annotation.1.6.0.4.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.annotation.experimental\\1.3.1.1\\xamarin.androidx.annotation.experimental.1.3.1.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.annotation.jvm\\1.6.0.2\\xamarin.androidx.annotation.jvm.1.6.0.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.appcompat\\1.6.1.3\\xamarin.androidx.appcompat.1.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.appcompat.appcompatresources\\1.6.1.3\\xamarin.androidx.appcompat.appcompatresources.1.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.arch.core.common\\2.2.0.3\\xamarin.androidx.arch.core.common.2.2.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.arch.core.runtime\\2.2.0.3\\xamarin.androidx.arch.core.runtime.2.2.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.browser\\1.5.0.3\\xamarin.androidx.browser.1.5.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.cardview\\1.0.0.21\\xamarin.androidx.cardview.1.0.0.21.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.collection\\1.2.0.9\\xamarin.androidx.collection.1.2.0.9.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.collection.ktx\\1.2.0.9\\xamarin.androidx.collection.ktx.1.2.0.9.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.concurrent.futures\\1.1.0.14\\xamarin.androidx.concurrent.futures.1.1.0.14.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.constraintlayout\\2.1.4.6\\xamarin.androidx.constraintlayout.2.1.4.6.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.constraintlayout.core\\1.0.4.6\\xamarin.androidx.constraintlayout.core.1.0.4.6.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.coordinatorlayout\\1.2.0.7\\xamarin.androidx.coordinatorlayout.1.2.0.7.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.core\\1.10.1.2\\xamarin.androidx.core.1.10.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.core.core.ktx\\1.10.1.2\\xamarin.androidx.core.core.ktx.1.10.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.cursoradapter\\1.0.0.19\\xamarin.androidx.cursoradapter.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.customview\\1.1.0.18\\xamarin.androidx.customview.1.1.0.18.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.customview.poolingcontainer\\1.0.0.5\\xamarin.androidx.customview.poolingcontainer.1.0.0.5.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.documentfile\\1.0.1.19\\xamarin.androidx.documentfile.1.0.1.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.drawerlayout\\1.2.0.3\\xamarin.androidx.drawerlayout.1.2.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.dynamicanimation\\1.0.0.19\\xamarin.androidx.dynamicanimation.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.emoji2\\1.3.0.3\\xamarin.androidx.emoji2.1.3.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.emoji2.viewshelper\\1.3.0.3\\xamarin.androidx.emoji2.viewshelper.1.3.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.exifinterface\\1.3.6.2\\xamarin.androidx.exifinterface.1.3.6.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.fragment\\1.6.0.1\\xamarin.androidx.fragment.1.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.fragment.ktx\\1.6.0.1\\xamarin.androidx.fragment.ktx.1.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.interpolator\\1.0.0.19\\xamarin.androidx.interpolator.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.legacy.support.core.utils\\1.0.0.19\\xamarin.androidx.legacy.support.core.utils.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.common\\2.6.1.3\\xamarin.androidx.lifecycle.common.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata\\2.6.1.3\\xamarin.androidx.lifecycle.livedata.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata.core\\2.6.1.3\\xamarin.androidx.lifecycle.livedata.core.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata.core.ktx\\2.6.1.3\\xamarin.androidx.lifecycle.livedata.core.ktx.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.process\\2.6.1.3\\xamarin.androidx.lifecycle.process.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime\\2.6.1.3\\xamarin.androidx.lifecycle.runtime.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime.ktx\\2.6.1.3\\xamarin.androidx.lifecycle.runtime.ktx.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodel\\2.6.1.3\\xamarin.androidx.lifecycle.viewmodel.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodel.ktx\\2.6.1.3\\xamarin.androidx.lifecycle.viewmodel.ktx.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodelsavedstate\\2.6.1.3\\xamarin.androidx.lifecycle.viewmodelsavedstate.2.6.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.loader\\1.1.0.19\\xamarin.androidx.loader.1.1.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.localbroadcastmanager\\1.1.0.7\\xamarin.androidx.localbroadcastmanager.1.1.0.7.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.navigation.common\\2.6.0.1\\xamarin.androidx.navigation.common.2.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.navigation.fragment\\2.6.0.1\\xamarin.androidx.navigation.fragment.2.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.navigation.runtime\\2.6.0.1\\xamarin.androidx.navigation.runtime.2.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.navigation.ui\\2.6.0.1\\xamarin.androidx.navigation.ui.2.6.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.print\\1.0.0.19\\xamarin.androidx.print.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.profileinstaller.profileinstaller\\1.3.1.2\\xamarin.androidx.profileinstaller.profileinstaller.1.3.1.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.recyclerview\\1.3.0.3\\xamarin.androidx.recyclerview.1.3.0.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.resourceinspection.annotation\\1.0.1.7\\xamarin.androidx.resourceinspection.annotation.1.0.1.7.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.savedstate\\1.2.1.3\\xamarin.androidx.savedstate.1.2.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.savedstate.savedstate.ktx\\1.2.1.3\\xamarin.androidx.savedstate.savedstate.ktx.1.2.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.security.securitycrypto\\1.1.0.1-alpha06\\xamarin.androidx.security.securitycrypto.1.1.0.1-alpha06.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.slidingpanelayout\\1.2.0.7\\xamarin.androidx.slidingpanelayout.1.2.0.7.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.startup.startupruntime\\1.1.1.7\\xamarin.androidx.startup.startupruntime.1.1.1.7.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.swiperefreshlayout\\1.1.0.14\\xamarin.androidx.swiperefreshlayout.1.1.0.14.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.tracing.tracing\\1.1.0.6\\xamarin.androidx.tracing.tracing.1.1.0.6.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.transition\\1.4.1.12\\xamarin.androidx.transition.1.4.1.12.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.vectordrawable\\1.1.0.19\\xamarin.androidx.vectordrawable.1.1.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.vectordrawable.animated\\1.1.0.19\\xamarin.androidx.vectordrawable.animated.1.1.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.versionedparcelable\\1.1.1.19\\xamarin.androidx.versionedparcelable.1.1.1.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.viewpager\\1.0.0.19\\xamarin.androidx.viewpager.1.0.0.19.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.viewpager2\\1.0.0.21\\xamarin.androidx.viewpager2.1.0.0.21.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.window\\1.1.0.1\\xamarin.androidx.window.1.1.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.androidx.window.extensions.core.core\\1.0.0.1\\xamarin.androidx.window.extensions.core.core.1.0.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.google.android.material\\1.9.0.2\\xamarin.google.android.material.1.9.0.2.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.google.code.findbugs.jsr305\\3.0.2.9\\xamarin.google.code.findbugs.jsr305.3.0.2.9.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.google.crypto.tink.android\\1.10.0\\xamarin.google.crypto.tink.android.1.10.0.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.google.errorprone.annotations\\2.20.0.1\\xamarin.google.errorprone.annotations.2.20.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.google.guava.listenablefuture\\1.0.0.14\\xamarin.google.guava.listenablefuture.1.0.0.14.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.jetbrains.annotations\\24.0.1.3\\xamarin.jetbrains.annotations.24.0.1.3.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlin.stdlib\\1.9.0.1\\xamarin.kotlin.stdlib.1.9.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlin.stdlib.common\\1.9.0.1\\xamarin.kotlin.stdlib.common.1.9.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlin.stdlib.jdk7\\1.9.0.1\\xamarin.kotlin.stdlib.jdk7.1.9.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlin.stdlib.jdk8\\1.9.0.1\\xamarin.kotlin.stdlib.jdk8.1.9.0.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlinx.coroutines.android\\1.7.2.1\\xamarin.kotlinx.coroutines.android.1.7.2.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\xamarin.kotlinx.coroutines.core.jvm\\1.7.2.1\\xamarin.kotlinx.coroutines.core.jvm.1.7.2.1.nupkg.sha512", + "C:\\Users\\paulw\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.44\\microsoft.windows.sdk.net.ref.10.0.19041.44.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/example.txt b/example.txt deleted file mode 100644 index a73cb82c26ccb582f1cea33903b3a87c4d01d637..0000000000000000000000000000000000000000 --- a/example.txt +++ /dev/null @@ -1,4 +0,0 @@ -hello world -goodbye world - -